diff options
author | Peter Ross <pross@xvid.org> | 2011-03-20 00:25:18 +1100 |
---|---|---|
committer | Peter Ross <pross@xvid.org> | 2011-03-26 13:24:45 +1100 |
commit | f55dd6c60d13f331ca8956427004825ef0bbb7af (patch) | |
tree | f9c69bb344367b1097c44dd6f9b5772b39060aa7 | |
parent | 7181627686ae107aecfdf6eee09d3cd066be6d5b (diff) | |
download | ffmpeg-f55dd6c60d13f331ca8956427004825ef0bbb7af.tar.gz |
nut format: support PIX_FMT_BGR48LE and PIX_FMT_BGR48BE
-rw-r--r-- | libavformat/nut.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavformat/nut.c b/libavformat/nut.c index 1c5a13994b..c31f53a189 100644 --- a/libavformat/nut.c +++ b/libavformat/nut.c @@ -65,7 +65,9 @@ const AVCodecTag ff_nut_video_tags[] = { { CODEC_ID_RAWVIDEO, MKTAG('R', 'G', 'B', 4 ) }, { CODEC_ID_RAWVIDEO, MKTAG('B', '4', 'B', 'Y') }, { CODEC_ID_RAWVIDEO, MKTAG('R', '4', 'B', 'Y') }, + { CODEC_ID_RAWVIDEO, MKTAG('B', 'G', 'R', 48 ) }, { CODEC_ID_RAWVIDEO, MKTAG('R', 'G', 'B', 48 ) }, + { CODEC_ID_RAWVIDEO, MKTAG(48 , 'B', 'G', 'R') }, { CODEC_ID_RAWVIDEO, MKTAG(48 , 'R', 'G', 'B') }, { CODEC_ID_RAWVIDEO, MKTAG('Y', '1', 0 , 16 ) }, { CODEC_ID_RAWVIDEO, MKTAG(16 , 0 , '1', 'Y') }, |