diff options
author | Fabrice Bellard <fabrice@bellard.org> | 2002-10-11 13:49:16 +0000 |
---|---|---|
committer | Fabrice Bellard <fabrice@bellard.org> | 2002-10-11 13:49:16 +0000 |
commit | 18f4e34ff665119b1cf4e09b2454f91af8668fed (patch) | |
tree | ca6fece3f7ceaefc81bd977021baff74f3411bd5 | |
parent | 1629626f5d9350cb0f3df1dbeeea3a6a302d4f0d (diff) | |
download | ffmpeg-18f4e34ff665119b1cf4e09b2454f91af8668fed.tar.gz |
removed unused variables
Originally committed as revision 1027 to svn://svn.ffmpeg.org/ffmpeg/trunk
-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 845375f6d5..e532825391 100644 --- a/libavcodec/msmpeg4.c +++ b/libavcodec/msmpeg4.c @@ -166,7 +166,6 @@ static void common_init(MpegEncContext * s) if(s->msmpeg4_version==4){ - int i; ff_init_scantable(s, &s->intra_scantable , wmv1_scantable[1]); ff_init_scantable(s, &s->intra_h_scantable, wmv1_scantable[2]); ff_init_scantable(s, &s->intra_v_scantable, wmv1_scantable[3]); @@ -175,7 +174,6 @@ static void common_init(MpegEncContext * s) //Note the default tables are set in common_init in mpegvideo.c if(!inited){ - int i; inited=1; init_h263_dc_for_msmpeg4(); |