]> rtime.felk.cvut.cz Git - frescor/ffmpeg.git/blobdiff - libavformat/movenc.c
correct pixfmt for argb
[frescor/ffmpeg.git] / libavformat / movenc.c
index 8db5c4e4c6dbc7c7b44352f0db8ae89e688f53ee..951f5fb91815269dc3930e87d8a4eba255456ae6 100644 (file)
@@ -26,7 +26,7 @@
 #include "avio.h"
 #include "isom.h"
 #include "avc.h"
-#include "libavcodec/bitstream.h"
+#include "libavcodec/get_bits.h"
 #include "libavcodec/put_bits.h"
 
 #undef NDEBUG
@@ -615,7 +615,8 @@ static const struct {
     { PIX_FMT_UYVY422, MKTAG('2','v','u','y'),  0 },
     { PIX_FMT_BGR555,  MKTAG('r','a','w',' '), 16 },
     { PIX_FMT_RGB24,   MKTAG('r','a','w',' '), 24 },
-    { PIX_FMT_BGR32_1, MKTAG('r','a','w',' '), 32 },
+    { PIX_FMT_ARGB,    MKTAG('r','a','w',' '), 32 },
+    { PIX_FMT_RGBA,    MKTAG('R','G','B','A'), 32 },
 };
 
 static int mov_get_rawvideo_codec_tag(AVFormatContext *s, MOVTrack *track)