avcodec/h2645_sei: fix parsing AOM grain provider_oriented_code

The value is 16 bits big endian, not a single byte.

Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
James Almer 2024-11-11 16:10:10 -03:00
parent 91b6ba653e
commit 24141a7140

View File

@ -243,7 +243,7 @@ static int decode_registered_user_data(H2645SEI *h, GetByteContext *gb,
if (bytestream2_get_bytes_left(gb) < 2)
return AVERROR_INVALIDDATA;
provider_oriented_code = bytestream2_get_byteu(gb);
provider_oriented_code = bytestream2_get_be16u(gb);
if (provider_oriented_code == aom_grain_provider_oriented_code) {
return ff_aom_parse_film_grain_sets(&h->aom_film_grain,
gb->buffer,