diff options
author | Paul B Mahol <onemda@gmail.com> | 2023-01-30 19:35:36 +0100 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2023-01-31 18:45:22 +0100 |
commit | fc9a3b584da3cf3fc1f00036be2eaf5dff903ccf (patch) | |
tree | 01bb8684f561dc1af1ac21caff7859c056f0ceff /libavcodec/mlp_parse.h | |
parent | 00994e8be185d259fbb8346f45f09bcea4e7f750 (diff) | |
download | ffmpeg-fc9a3b584da3cf3fc1f00036be2eaf5dff903ccf.tar.gz |
avcodec/mlpdec: parse and use substream info bits
Diffstat (limited to 'libavcodec/mlp_parse.h')
-rw-r--r-- | libavcodec/mlp_parse.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libavcodec/mlp_parse.h b/libavcodec/mlp_parse.h index f0d7b41c11..fa6e3d52dc 100644 --- a/libavcodec/mlp_parse.h +++ b/libavcodec/mlp_parse.h @@ -58,6 +58,9 @@ typedef struct MLPHeaderInfo int peak_bitrate; ///< Peak bitrate for VBR, actual bitrate (==peak) for CBR int num_substreams; ///< Number of substreams within stream + + int extended_substream_info; ///< Which substream of substreams carry 16-channel presentation + int substream_info; ///< Which substream of substreams carry 2/6/8-channel presentation } MLPHeaderInfo; static const uint8_t thd_chancount[13] = { |