From 67a8251690a17f05630eb6f45a73db0f0e806c72 Mon Sep 17 00:00:00 2001 From: Carl Eugen Hoyos Date: Tue, 16 Aug 2011 23:31:09 +0200 Subject: [PATCH] Fix compilation with --disable-avfilter. --- ffplay.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ffplay.c b/ffplay.c index d35983d333..f116db98c6 100644 --- a/ffplay.c +++ b/ffplay.c @@ -1782,8 +1782,10 @@ static int video_thread(void *arg) if (ret < 0) goto the_end; +#if CONFIG_AVFILTER if (!picref) continue; +#endif pts = pts_int*av_q2d(is->video_st->time_base);