diff options
author | Diego Biurrun | 2009-07-30 07:33:16 +0000 |
---|---|---|
committer | Diego Biurrun | 2009-07-30 07:33:16 +0000 |
commit | 07fd17823f302aeb0bf8b2455c11f09023b995d9 (patch) | |
tree | 772430d86eb44ec3931392a00b2df3403d7f9d92 /libavcodec/msmpeg4.c | |
parent | b6ec1f47c70fb08ba60917fdd41f5541d18ffb2e (diff) |
Remove unused variable intra_count.
Originally committed as revision 19537 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/msmpeg4.c')
-rw-r--r-- | libavcodec/msmpeg4.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libavcodec/msmpeg4.c b/libavcodec/msmpeg4.c index 2c9fcee02b..44fd7fd89b 100644 --- a/libavcodec/msmpeg4.c +++ b/libavcodec/msmpeg4.c @@ -73,7 +73,6 @@ static int msmpeg4v34_decode_mb(MpegEncContext *s, DCTELEM block[6][64]); extern const uint8_t wmv3_dc_scale_table[32]; #ifdef DEBUG -int intra_count = 0; int frame_count = 0; #endif @@ -365,7 +364,6 @@ void msmpeg4_encode_picture_header(MpegEncContext * s, int picture_number) s->esc3_run_length= 0; #ifdef DEBUG - intra_count = 0; av_log(s->avctx, AV_LOG_DEBUG, "*****frame %d:\n", frame_count++); #endif } |