[FFmpeg-cvslog] cook: remove unneeded COOKContext variable, bit_rate
Justin Ruggles
git at videolan.org
Fri Nov 2 13:49:12 CET 2012
ffmpeg | branch: master | Justin Ruggles <justin.ruggles at gmail.com> | Sun Oct 21 14:25:18 2012 -0400| [8aa5b8c5c825a86449774f6023400b4775c25027] | committer: Justin Ruggles
cook: remove unneeded COOKContext variable, bit_rate
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=8aa5b8c5c825a86449774f6023400b4775c25027
---
libavcodec/cook.c | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/libavcodec/cook.c b/libavcodec/cook.c
index 8323bbe..7467749 100644
--- a/libavcodec/cook.c
+++ b/libavcodec/cook.c
@@ -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;
More information about the ffmpeg-cvslog
mailing list