mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-13 21:28:01 +02:00
cook: remove unneeded COOKContext variable, bit_rate
This commit is contained in:
parent
3509eee19c
commit
8aa5b8c5c8
@ -126,7 +126,6 @@ typedef struct cook {
|
||||
AVFrame frame;
|
||||
GetBitContext gb;
|
||||
/* stream data */
|
||||
int bit_rate;
|
||||
int sample_rate;
|
||||
int num_vectors;
|
||||
int samples_per_channel;
|
||||
@ -1024,7 +1023,7 @@ static void dump_cook_context(COOKContext *q)
|
||||
}
|
||||
av_log(q->avctx, AV_LOG_ERROR, "COOKContext\n");
|
||||
PRINT("nb_channels", q->avctx->channels);
|
||||
PRINT("bit_rate", q->bit_rate);
|
||||
PRINT("bit_rate", q->avctx->bit_rate);
|
||||
PRINT("sample_rate", q->sample_rate);
|
||||
PRINT("samples_per_channel", q->subpacket[0].samples_per_channel);
|
||||
PRINT("samples_per_frame", q->subpacket[0].samples_per_frame);
|
||||
@ -1071,7 +1070,6 @@ static av_cold int cook_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) {
|
||||
av_log(avctx, AV_LOG_ERROR, "Invalid number of channels\n");
|
||||
return AVERROR_INVALIDDATA;
|
||||
|
Loading…
Reference in New Issue
Block a user