diff options
author | Paul B Mahol <onemda@gmail.com> | 2023-10-06 11:26:53 +0200 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2023-10-06 11:31:03 +0200 |
commit | d58e0af55c1dfb7fdfe6a757ccb81a0f40bf2488 (patch) | |
tree | ea8df785fcf4435974fb96f0931fd4c8fbae1fc5 /libavcodec/mlpdec.c | |
parent | 00eb4966aa8a71a70c4758254027fdc6925f8f86 (diff) | |
download | ffmpeg-d58e0af55c1dfb7fdfe6a757ccb81a0f40bf2488.tar.gz |
avcodec/mlpdec: set extended_substream_info from header
To be used later.
Diffstat (limited to 'libavcodec/mlpdec.c')
-rw-r--r-- | libavcodec/mlpdec.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/mlpdec.c b/libavcodec/mlpdec.c index a24ae0be8f..572509e1be 100644 --- a/libavcodec/mlpdec.c +++ b/libavcodec/mlpdec.c @@ -391,6 +391,7 @@ static int read_major_sync(MLPDecodeContext *m, GetBitContext *gb) m->access_unit_size_pow2 = mh.access_unit_size_pow2; m->num_substreams = mh.num_substreams; + m->extended_substream_info = mh.extended_substream_info; m->substream_info = mh.substream_info; /* If there is a 4th substream and the MSB of substream_info is set, |