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:48 +0200 |
commit | a5e3fe37690a85ec46621e73048e55d4b8c0e1e7 (patch) | |
tree | 2900eec896ca56082b2fdd9f0e153fb0824d9f38 | |
parent | 6605d4377725641082962381c25befd4c6fb0bde (diff) | |
download | ffmpeg-a5e3fe37690a85ec46621e73048e55d4b8c0e1e7.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
@@ -1776,8 +1776,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); |