git.videolan.org
/
ffmpeg.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
600e38f
)
Print a warning if vp6 is muxed into flv: The output is flipped.
author
Carl Eugen Hoyos
<cehoyos@ag.or.at>
Sun, 23 Nov 2014 12:22:27 +0000
(13:22 +0100)
committer
Carl Eugen Hoyos
<cehoyos@ag.or.at>
Sun, 23 Nov 2014 12:22:27 +0000
(13:22 +0100)
Fixes ticket #4132.
libavformat/flvenc.c
patch
|
blob
|
history
diff --git
a/libavformat/flvenc.c
b/libavformat/flvenc.c
index
a8cd994
..
5468c4d
100644
(file)
--- a/
libavformat/flvenc.c
+++ b/
libavformat/flvenc.c
@@
-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: