Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions RELEASENOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@
placeholder seek points), and fall back to binary search seeking if the
duration of the file is known
([#2327]()https://github.com/androidx/media/issues/2327).
* Fix parsing of H.265 SEI units to fully skip unrecognized SEI types
([#2456]()https://github.com/androidx/media/issues/2456).
* DataSource:
* Audio:
* Add support for all linear PCM sample formats in
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1868,6 +1868,8 @@ public static H265Sei3dRefDisplayInfoData parseH265Sei3dRefDisplayInfo(
mantissaRefDisplayWidth,
exponentRefViewingDist,
mantissaRefViewingDist);
} else {
data.skipBits(payloadSize * 8);
}
}
return null;
Expand Down