Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2018-09-30 22:50:30 +0300
committerMichael Niedermayer <michael@niedermayer.cc>2018-09-30 23:23:02 +0300
commit2076e11839b35c62e28642dcf71c95304af9222f (patch)
tree38a3f92b0587e9c892ad35ad5d0831f13b13a1f4 /libavcodec/gdv.c
parente78016b04a719e7f7554fab6318ee93351f2f27d (diff)
avcodec/gdv: Remove unused variable
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavcodec/gdv.c')
-rw-r--r--libavcodec/gdv.c2
1 files changed, 1 insertions, 1 deletions
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;