diff options
author | Anton Khirnov <anton@khirnov.net> | 2012-01-22 10:56:42 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2012-01-27 10:38:34 +0100 |
commit | f326501a65ad1b949f9e623e1665c81e8ce628f8 (patch) | |
tree | ff3fc8b18694166e400f6e6ad11c06459ed10408 /libavcodec/ac3dec.c | |
parent | d2d931500b24900dcff2527b94ce0dfc36f9d6f2 (diff) | |
download | ffmpeg-f326501a65ad1b949f9e623e1665c81e8ce628f8.tar.gz |
lavc: remove disabled FF_API_DRC_SCALE cruft.
Diffstat (limited to 'libavcodec/ac3dec.c')
-rw-r--r-- | libavcodec/ac3dec.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/libavcodec/ac3dec.c b/libavcodec/ac3dec.c index 662ea91d1f..b50ec2abe6 100644 --- a/libavcodec/ac3dec.c +++ b/libavcodec/ac3dec.c @@ -174,11 +174,6 @@ static av_cold int ac3_decode_init(AVCodecContext *avctx) AC3DecodeContext *s = avctx->priv_data; s->avctx = avctx; -#if FF_API_DRC_SCALE - if (avctx->drc_scale) - s->drc_scale = avctx->drc_scale; -#endif - ff_ac3_common_init(); ac3_tables_init(); ff_mdct_init(&s->imdct_256, 8, 1, 1.0); |