diff options
author | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2010-06-15 09:14:00 +0000 |
---|---|---|
committer | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2010-06-15 09:14:00 +0000 |
commit | 9a191b3a21489aacf5031615482bb333e72139fb (patch) | |
tree | 7f0c68e3256d45fe342fa09b044d98bae281da19 /libavcodec/raw.c | |
parent | 54a13282bd1bbcde0d84543374697e698f4b1ac5 (diff) | |
download | ffmpeg-9a191b3a21489aacf5031615482bb333e72139fb.tar.gz |
Support gray16be and rgb48be in mov
Originally committed as revision 23608 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/raw.c')
-rw-r--r-- | libavcodec/raw.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/raw.c b/libavcodec/raw.c index 41f5c9091a..1fbf4d2528 100644 --- a/libavcodec/raw.c +++ b/libavcodec/raw.c @@ -127,6 +127,8 @@ const PixelFormatTag ff_raw_pix_fmt_tags[] = { { PIX_FMT_BGRA, MKTAG('B', 'G', 'R', 'A') }, { PIX_FMT_RGBA, MKTAG('R', 'G', 'B', 'A') }, { PIX_FMT_ABGR, MKTAG('A', 'B', 'G', 'R') }, + { PIX_FMT_GRAY16BE,MKTAG('b', '1', '6', 'g') }, + { PIX_FMT_RGB48BE, MKTAG('b', '4', '8', 'r') }, /* special */ { PIX_FMT_RGB565LE,MKTAG( 3 , 0 , 0 , 0 ) }, /* flipped RGB565LE */ |