Browse Source

atrac3: remove unused ATRAC3Context field, sample_rate

tags/n1.1
Justin Ruggles 12 years ago
parent
commit
808686fc1e
1 changed files with 0 additions and 4 deletions
  1. +0
    -4
      libavcodec/atrac3.c

+ 0
- 4
libavcodec/atrac3.c View File

@@ -90,7 +90,6 @@ typedef struct ATRAC3Context {
//@{ //@{
/** stream data */ /** stream data */
int coding_mode; int coding_mode;
int sample_rate;


ChannelUnit *units; ChannelUnit *units;
//@} //@}
@@ -869,9 +868,6 @@ static av_cold int atrac3_decode_init(AVCodecContext *avctx)
const uint8_t *edata_ptr = avctx->extradata; const uint8_t *edata_ptr = avctx->extradata;
ATRAC3Context *q = avctx->priv_data; ATRAC3Context *q = avctx->priv_data;


/* Take data from the AVCodecContext (RM container). */
q->sample_rate = avctx->sample_rate;

if (avctx->channels <= 0 || avctx->channels > 2) { if (avctx->channels <= 0 || avctx->channels > 2) {
av_log(avctx, AV_LOG_ERROR, "Channel configuration error!\n"); av_log(avctx, AV_LOG_ERROR, "Channel configuration error!\n");
return AVERROR(EINVAL); return AVERROR(EINVAL);


Loading…
Cancel
Save