diff options
author | Fabrice Bellard <fabrice@bellard.org> | 2003-09-09 22:50:44 +0000 |
---|---|---|
committer | Fabrice Bellard <fabrice@bellard.org> | 2003-09-09 22:50:44 +0000 |
commit | 1df1df0b44a3017574a0639aa6dfe5bd77d9abdc (patch) | |
tree | 9657a88a8b83e76dfa8dddba314ad6f8dea5aae7 /libavcodec/h263dec.c | |
parent | 83586795a2a8e1fe3fcbecc63eb432835ce3bd73 (diff) | |
download | ffmpeg-1df1df0b44a3017574a0639aa6dfe5bd77d9abdc.tar.gz |
removed warnings
Originally committed as revision 2246 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/h263dec.c')
-rw-r--r-- | libavcodec/h263dec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/h263dec.c b/libavcodec/h263dec.c index 35bb0d6211..aa1db85b38 100644 --- a/libavcodec/h263dec.c +++ b/libavcodec/h263dec.c @@ -390,7 +390,7 @@ int ff_h263_decode_frame(AVCodecContext *avctx, uint8_t *buf, int buf_size) { MpegEncContext *s = avctx->priv_data; - int ret,i; + int ret; AVFrame *pict = data; float new_aspect; |