From 88f71f3daa1b9810aa15262b3eaea600dd98fc5f Mon Sep 17 00:00:00 2001 From: Carl Eugen Hoyos Date: Tue, 23 Aug 2011 11:25:40 +0200 Subject: [PATCH] Fix compilation with --disable-avfilter. Fixes ticket #414. --- avconv.c | 1 + 1 file changed, 1 insertion(+) diff --git a/avconv.c b/avconv.c index 1e3cd0e6f0..8a55af97c1 100644 --- a/avconv.c +++ b/avconv.c @@ -1074,6 +1074,7 @@ static void do_video_resample(OutputStream *ost, { int resample_changed = 0; AVCodecContext *dec = ist->st->codec; + AVCodecContext *enc = ost->st->codec; *out_picture = in_picture; resample_changed = ost->resample_width != dec->width ||