[FFmpeg-cvslog] Use PIX_FMT_BGR24 for the AviSynth demuxer, instead of RGB24.
Stephen Hutchinson
git at videolan.org
Sun Mar 31 01:23:40 CET 2013
ffmpeg | branch: master | Stephen Hutchinson <qyot27 at gmail.com> | Sat Mar 30 17:34:45 2013 -0400| [8cd7aab1bb29ac28c13a44a37546d93d91ac7814] | committer: Michael Niedermayer
Use PIX_FMT_BGR24 for the AviSynth demuxer, instead of RGB24.
Partial fix for ticket #2412 in that using PIX_FMT_BGR24 fixes the
swapped channels issue when using scripts serving RGB24.
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=8cd7aab1bb29ac28c13a44a37546d93d91ac7814
---
libavformat/avisynth.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavformat/avisynth.c b/libavformat/avisynth.c
index 3119a45..2d36f65 100644
--- a/libavformat/avisynth.c
+++ b/libavformat/avisynth.c
@@ -256,7 +256,7 @@ static int avisynth_create_stream_video(AVFormatContext *s, AVStream *st) {
break;
#endif
case AVS_CS_BGR24:
- st->codec->pix_fmt = PIX_FMT_RGB24;
+ st->codec->pix_fmt = PIX_FMT_BGR24;
break;
case AVS_CS_BGR32:
st->codec->pix_fmt = PIX_FMT_RGB32;
More information about the ffmpeg-cvslog
mailing list