diff options
author | Nicolas Gaullier <nicolas.gaullier@cji.paris> | 2023-02-21 11:12:32 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2023-03-02 21:32:00 +0100 |
commit | 3153c441e1d980ff9931ed26a0e01b4e366ac521 (patch) | |
tree | 9bacfb7275a10651c8932fec8d50d868848d48d9 /libavcodec | |
parent | 432adca5fedcb277b9a715a723cfd40735ec58f8 (diff) | |
download | ffmpeg-3153c441e1d980ff9931ed26a0e01b4e366ac521.tar.gz |
avcodec/ac3: Remove unused fields
Signed-off-by: Nicolas Gaullier <nicolas.gaullier@cji.paris>
Signed-off-by: Anton Khirnov <anton@khirnov.net>
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/ac3dec.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libavcodec/ac3dec.h b/libavcodec/ac3dec.h index 0829f4b40d..98de7b5abf 100644 --- a/libavcodec/ac3dec.h +++ b/libavcodec/ac3dec.h @@ -90,7 +90,6 @@ typedef struct AC3DecodeContext { int lfe_on; ///< lfe channel in use int dialog_normalization[2]; ///< dialog level in dBFS (dialnorm) int compression_exists[2]; ///< compression field is valid for frame (compre) - int compression_gain[2]; ///< gain to apply for heavy compression (compr) int channel_map; ///< custom channel map (chanmap) int preferred_downmix; ///< Preferred 2-channel downmix mode (dmixmod) int center_mix_level; ///< Center mix level index @@ -100,7 +99,6 @@ typedef struct AC3DecodeContext { int lfe_mix_level_exists; ///< indicates if lfemixlevcod is specified (lfemixlevcode) int lfe_mix_level; ///< LFE mix level index (lfemixlevcod) int eac3; ///< indicates if current frame is E-AC-3 - int eac3_frame_dependent_found; ///< bitstream has E-AC-3 dependent frame(s) int eac3_subsbtreamid_found; ///< bitstream has E-AC-3 additional substream(s) int eac3_extension_type_a; ///< bitstream has E-AC-3 extension type A enabled frame(s) int dolby_surround_mode; ///< dolby surround mode (dsurmod) |