Browse Source

atrac3: remove unused ATRAC3Context field, bit_rate

tags/n1.1
Justin Ruggles 13 years ago
parent
commit
7e76f27081
1 changed files with 0 additions and 2 deletions
  1. +0
    -2
      libavcodec/atrac3.c

+ 0
- 2
libavcodec/atrac3.c View File

@@ -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");


Loading…
Cancel
Save