diff options
author | Justin Ruggles <justin.ruggles@gmail.com> | 2012-10-18 22:51:41 -0400 |
---|---|---|
committer | Justin Ruggles <justin.ruggles@gmail.com> | 2012-10-22 10:10:07 -0400 |
commit | 7e76f270819e5c5a11372bc0e6368b542586506c (patch) | |
tree | 34496d7592d866bfe37d5b68ac707bea1b5cebaf /libavcodec/atrac3.c | |
parent | a2664c91fba15a1307f676ffad511f8f86fb3a27 (diff) | |
download | ffmpeg-7e76f270819e5c5a11372bc0e6368b542586506c.tar.gz |
atrac3: remove unused ATRAC3Context field, bit_rate
Diffstat (limited to 'libavcodec/atrac3.c')
-rw-r--r-- | libavcodec/atrac3.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libavcodec/atrac3.c b/libavcodec/atrac3.c index 3a6d4e84d6..474fa76a8f 100644 --- a/libavcodec/atrac3.c +++ b/libavcodec/atrac3.c @@ -90,7 +90,6 @@ typedef struct ATRAC3Context { //@{ /** stream data */ int coding_mode; - int bit_rate; int sample_rate; ChannelUnit *units; @@ -856,7 +855,6 @@ static av_cold int atrac3_decode_init(AVCodecContext *avctx) /* Take data from the AVCodecContext (RM container). */ q->sample_rate = avctx->sample_rate; - q->bit_rate = avctx->bit_rate; if (avctx->channels <= 0 || avctx->channels > 2) { av_log(avctx, AV_LOG_ERROR, "Channel configuration error!\n"); |