[FFmpeg-cvslog] avcodec/gdv: Remove unused variable
Michael Niedermayer
git at videolan.org
Sun Sep 30 23:25:33 EEST 2018
ffmpeg | branch: master | Michael Niedermayer <michael at niedermayer.cc> | Sun Sep 30 21:50:30 2018 +0200| [2076e11839b35c62e28642dcf71c95304af9222f] | committer: Michael Niedermayer
avcodec/gdv: Remove unused variable
Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=2076e11839b35c62e28642dcf71c95304af9222f
---
libavcodec/gdv.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavcodec/gdv.c b/libavcodec/gdv.c
index b54f7373d1..538bc38e3e 100644
--- a/libavcodec/gdv.c
+++ b/libavcodec/gdv.c
@@ -74,7 +74,7 @@ static av_cold int gdv_decode_init(AVCodecContext *avctx)
static void rescale(GDVContext *gdv, uint8_t *dst, int w, int h, int scale_v, int scale_h)
{
- int i, j, y, x;
+ int j, y, x;
if ((gdv->scale_v == scale_v) && (gdv->scale_h == scale_h)) {
return;
More information about the ffmpeg-cvslog
mailing list