From 5b50b8f57ffefbc73e536ae1ea3308e3dae04373 Mon Sep 17 00:00:00 2001 From: Baptiste Coudurier Date: Sun, 10 May 2009 20:14:42 +0000 Subject: [PATCH] bgra in .mov muxing Originally committed as revision 18789 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/movenc.c | 1 + 1 file changed, 1 insertion(+) diff --git a/libavformat/movenc.c b/libavformat/movenc.c index 951f5fb918..422c372037 100644 --- a/libavformat/movenc.c +++ b/libavformat/movenc.c @@ -616,6 +616,7 @@ static const struct { { PIX_FMT_BGR555, MKTAG('r','a','w',' '), 16 }, { PIX_FMT_RGB24, MKTAG('r','a','w',' '), 24 }, { PIX_FMT_ARGB, MKTAG('r','a','w',' '), 32 }, + { PIX_FMT_BGRA, MKTAG('B','G','R','A'), 32 }, { PIX_FMT_RGBA, MKTAG('R','G','B','A'), 32 }, };