1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2026-06-03 16:24:53 +02:00

avcodec/gdv: Remove unused variable

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
Michael Niedermayer
2018-09-30 21:50:30 +02:00
parent e78016b04a
commit 2076e11839
+1 -1
View File
@@ -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;