Commit 78093cf8 authored by Carl Eugen Hoyos's avatar Carl Eugen Hoyos

Print a warning if vp6 is muxed into flv: The output is flipped.

Fixes ticket #4132.
parent 600e38f5
......@@ -355,6 +355,9 @@ static int flv_write_header(AVFormatContext *s)
"use vstrict=-1 / -strict -1 to use it anyway.\n");
return AVERROR(EINVAL);
}
} else if (enc->codec_id == AV_CODEC_ID_VP6) {
av_log(s, AV_LOG_WARNING,
"Muxing VP6 in flv will produce flipped video on playback.\n");
}
break;
case AVMEDIA_TYPE_AUDIO:
......
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