[FFmpeg-cvslog] mpegaudio: remove frame_count variable and its only usage, it is always 0.

Reimar Döffinger git at videolan.org
Tue May 10 20:26:03 CEST 2011


ffmpeg | branch: master | Reimar Döffinger <Reimar.Doeffinger at gmx.de> | Tue May 10 18:46:54 2011 +0200| [3d929a607a49e65d66cc8101425b114a5dd5fd84] | committer: Reimar Döffinger

mpegaudio: remove frame_count variable and its only usage, it is always 0.

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=3d929a607a49e65d66cc8101425b114a5dd5fd84
---

 libavcodec/mpegaudio.h    |    3 ---
 libavcodec/mpegaudiodec.c |    1 -
 2 files changed, 0 insertions(+), 4 deletions(-)

diff --git a/libavcodec/mpegaudio.h b/libavcodec/mpegaudio.h
index f84e2d4..30ef349 100644
--- a/libavcodec/mpegaudio.h
+++ b/libavcodec/mpegaudio.h
@@ -147,9 +147,6 @@ typedef struct MPADecodeContext {
     DECLARE_ALIGNED(16, INTFLOAT, sb_samples)[MPA_MAX_CHANNELS][36][SBLIMIT];
     INTFLOAT mdct_buf[MPA_MAX_CHANNELS][SBLIMIT * 18]; /* previous samples, for layer 3 MDCT */
     GranuleDef granules[2][2]; /* Used in Layer 3 */
-#ifdef DEBUG
-    int frame_count;
-#endif
     int adu_mode; ///< 0 for standard mp3, 1 for adu formatted mp3
     int dither_state;
     int error_recognition;
diff --git a/libavcodec/mpegaudiodec.c b/libavcodec/mpegaudiodec.c
index d7bc89f..b1c9ef9 100644
--- a/libavcodec/mpegaudiodec.c
+++ b/libavcodec/mpegaudiodec.c
@@ -1872,7 +1872,6 @@ static int mp_decode_frame(MPADecodeContext *s,
     if (s->error_protection)
         skip_bits(&s->gb, 16);
 
-    av_dlog(s->avctx, "frame %d:\n", s->frame_count);
     switch(s->layer) {
     case 1:
         s->avctx->frame_size = 384;



More information about the ffmpeg-cvslog mailing list