You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
Print a warning if vp6 is muxed into flv: The output is flipped.
Fixes ticket #4132.
This commit is contained in:
@@ -355,6 +355,9 @@ static int flv_write_header(AVFormatContext *s)
|
|||||||
"use vstrict=-1 / -strict -1 to use it anyway.\n");
|
"use vstrict=-1 / -strict -1 to use it anyway.\n");
|
||||||
return AVERROR(EINVAL);
|
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;
|
break;
|
||||||
case AVMEDIA_TYPE_AUDIO:
|
case AVMEDIA_TYPE_AUDIO:
|
||||||
|
Reference in New Issue
Block a user