summaryrefslogtreecommitdiff
path: root/ffplay.c
diff options
context:
space:
mode:
authorCarl Eugen Hoyos <cehoyos@ag.or.at>2011-04-13 09:55:47 +0200
committerCarl Eugen Hoyos <cehoyos@ag.or.at>2011-04-13 09:58:31 +0200
commit05d33d8655d4fb11cd47444583ef130048bddd5e (patch)
tree4c3248cdbe1ce5925d29a285fe87876e2cb98f48 /ffplay.c
parentd6f79edb6e5a5477ab4ea36d93aace5b508e6fd3 (diff)
Fix compilation with --disable-avfilter.
Diffstat (limited to 'ffplay.c')
-rw-r--r--ffplay.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ffplay.c b/ffplay.c
index bf4587ed4b..fde321aef9 100644
--- a/ffplay.c
+++ b/ffplay.c
@@ -1445,7 +1445,7 @@ static int queue_picture(VideoState *is, AVFrame *src_frame, double pts, int64_t
sws_flags = av_get_int(sws_opts, "sws_flags", NULL);
is->img_convert_ctx = sws_getCachedContext(is->img_convert_ctx,
vp->width, vp->height, vp->pix_fmt, vp->width, vp->height,
- PIX_FMT_YUV_420P, sws_flags, NULL, NULL, NULL);
+ PIX_FMT_YUV420P, sws_flags, NULL, NULL, NULL);
if (is->img_convert_ctx == NULL) {
fprintf(stderr, "Cannot initialize the conversion context\n");
exit(1);