mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-04 14:58:37 +09:00
Remove aom_codec_stream_info_t sz field references
Upstream has removed the requirement to set this when initializing the stream_info struct.
This commit is contained in:
parent
b3aa26975c
commit
dc0970c312
1 changed files with 0 additions and 2 deletions
|
|
@ -215,7 +215,6 @@ bool
|
|||
AOMDecoder::IsKeyframe(Span<const uint8_t> aBuffer) {
|
||||
aom_codec_stream_info_t info;
|
||||
PodZero(&info);
|
||||
info.sz = sizeof(info);
|
||||
|
||||
aom_codec_peek_stream_info(aom_codec_av1_dx(),
|
||||
aBuffer.Elements(),
|
||||
|
|
@ -230,7 +229,6 @@ nsIntSize
|
|||
AOMDecoder::GetFrameSize(Span<const uint8_t> aBuffer) {
|
||||
aom_codec_stream_info_t info;
|
||||
PodZero(&info);
|
||||
info.sz = sizeof(info);
|
||||
|
||||
aom_codec_peek_stream_info(aom_codec_av1_dx(),
|
||||
aBuffer.Elements(),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue