diff options
author | Jan Ekström <jan.ekstrom@24i.com> | 2022-06-03 12:34:47 +0300 |
---|---|---|
committer | Jan Ekström <jeebjp@gmail.com> | 2022-06-30 16:14:05 +0300 |
commit | 92dc9c9d682a3f7f552d61cdbfca7ae6607de0ee (patch) | |
tree | 3dbd92d440218970d37aec58571ca71b0f214e5e /libavcodec/ac3_parser_internal.h | |
parent | 3f72155fc664b6abccd194d71cbec44183ab64d9 (diff) | |
download | ffmpeg-92dc9c9d682a3f7f552d61cdbfca7ae6607de0ee.tar.gz |
avcodec/ac3_parser{,_internal}: expose AC-3 bit_rate_code
Required by MP4's AC3SpecificBox and MPEG-TS AC-3 audio_descriptor,
of which the former is implemented in our MP4 writer.
Signed-off-by: Jan Ekström <jan.ekstrom@24i.com>
Diffstat (limited to 'libavcodec/ac3_parser_internal.h')
-rw-r--r-- | libavcodec/ac3_parser_internal.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/ac3_parser_internal.h b/libavcodec/ac3_parser_internal.h index dd57dc95a6..bd4e1bbffb 100644 --- a/libavcodec/ac3_parser_internal.h +++ b/libavcodec/ac3_parser_internal.h @@ -60,6 +60,7 @@ typedef struct AC3HeaderInfo { uint8_t channels; uint16_t frame_size; uint64_t channel_layout; + int8_t ac3_bit_rate_code; /** @} */ } AC3HeaderInfo; |