[FFmpeg-cvslog] Support yuva444p rawvideo in nut.

Carl Eugen Hoyos git at videolan.org
Fri Apr 6 00:55:37 CEST 2012


ffmpeg | branch: master | Carl Eugen Hoyos <cehoyos at ag.or.at> | Fri Apr  6 00:53:09 2012 +0200| [76c79aa28fc8cf0bfe52915317a3cfc72383d0ef] | committer: Carl Eugen Hoyos

Support yuva444p rawvideo in nut.

Fixes ticket #1058.

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=76c79aa28fc8cf0bfe52915317a3cfc72383d0ef
---

 libavcodec/raw.c  |    1 +
 libavformat/nut.c |    1 +
 2 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/libavcodec/raw.c b/libavcodec/raw.c
index ec532a3..c10b52f 100644
--- a/libavcodec/raw.c
+++ b/libavcodec/raw.c
@@ -130,6 +130,7 @@ const PixelFormatTag ff_raw_pix_fmt_tags[] = {
     { PIX_FMT_YUV444P16LE, MKTAG('Y', '3',  0 , 16 ) },
     { PIX_FMT_YUV444P16BE, MKTAG(16 ,  0 , '3', 'Y') },
     { PIX_FMT_YUVA420P,    MKTAG('Y', '4', 11 ,  8 ) },
+    { PIX_FMT_YUVA444P,    MKTAG('Y', '4',  0 ,  8 ) },
     { PIX_FMT_GRAY8A,      MKTAG('Y', '2',  0 ,  8 ) },
 
     /* quicktime */
diff --git a/libavformat/nut.c b/libavformat/nut.c
index 953ec36..1cfcadc 100644
--- a/libavformat/nut.c
+++ b/libavformat/nut.c
@@ -93,6 +93,7 @@ const AVCodecTag ff_nut_video_tags[] = {
     { CODEC_ID_RAWVIDEO, MKTAG('Y', '3',  0 , 16 ) },
     { CODEC_ID_RAWVIDEO, MKTAG(16 ,  0 , '3', 'Y') },
     { CODEC_ID_RAWVIDEO, MKTAG('Y', '4', 11 ,  8 ) },
+    { CODEC_ID_RAWVIDEO, MKTAG('Y', '4',  0 ,  8 ) },
     { CODEC_ID_RAWVIDEO, MKTAG('Y', '2',  0 ,  8 ) },
     { CODEC_ID_NONE    , 0                         }
 };



More information about the ffmpeg-cvslog mailing list