diff options
author | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2011-08-16 23:31:09 +0200 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2011-08-16 23:32:06 +0200 |
commit | 6a57021cf96dc548b6cc2c97dedb8958225d58e3 (patch) | |
tree | ccd80ccd89e23643887fd54d220fc9765659577c | |
parent | f20f79307b837407ea2bdfe08515d45ce96898c8 (diff) | |
download | ffmpeg-6a57021cf96dc548b6cc2c97dedb8958225d58e3.tar.gz |
Fix compilation with --disable-avfilter.
(cherry picked from commit 67a8251690a17f05630eb6f45a73db0f0e806c72)
-rw-r--r-- | ffplay.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -1779,8 +1779,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); |