Commit 05d33d86 authored by Carl Eugen Hoyos's avatar Carl Eugen Hoyos

Fix compilation with --disable-avfilter.

parent d6f79edb
......@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment