diff options
author | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2009-05-10 20:11:11 +0000 |
---|---|---|
committer | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2009-05-10 20:11:11 +0000 |
commit | ed88074a32fffbc1edba2787caf04e321835bc30 (patch) | |
tree | e2f1e1528f25355c4f39301d2180f66281ccf1ca | |
parent | 30853173b83ee167d7cc3a7a9b4ed7b6a49bbb11 (diff) | |
download | ffmpeg-ed88074a32fffbc1edba2787caf04e321835bc30.tar.gz |
rgba in .mov muxing
Originally committed as revision 18787 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavformat/movenc.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/movenc.c b/libavformat/movenc.c index 7253db7a21..4d16f8b2f9 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_BGR32_1, 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) |