ext/ffmpeg/gstffmpegcodecmap.c (gst_ffmpeg_pixfmt_to_caps): Add YUV444P format as...
authorLuca Ognibene <luogni@tin.it>
Tue, 17 May 2005 18:29:17 +0000 (18:29 +0000)
committerLuca Ognibene <luogni@tin.it>
Tue, 17 May 2005 18:29:17 +0000 (18:29 +0000)
Original commit message from CVS:
* ext/ffmpeg/gstffmpegcodecmap.c (gst_ffmpeg_pixfmt_to_caps):
Add YUV444P format as Y444

ChangeLog
common
ext/ffmpeg/gstffmpegcodecmap.c

index 486fb5c..7f6c589 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2005-05-17  Luca Ognibene  <luogni@tin.it>
+
+       * ext/ffmpeg/gstffmpegcodecmap.c (gst_ffmpeg_pixfmt_to_caps): 
+         Add YUV444P format as Y444
+
 2005-05-15  Luca Ognibene  <luogni@tin.it>
 
        * ext/ffmpeg/Makefile.am: 
diff --git a/common b/common
index 131c263..67b7e6c 160000 (submodule)
--- a/common
+++ b/common
@@ -1 +1 @@
-Subproject commit 131c2632127e6f061b5270d8f80651782a4fdd13
+Subproject commit 67b7e6c0db99415e0440d0c576495641b53e976a
index 501d55b..3fadc93 100644 (file)
@@ -837,7 +837,7 @@ gst_ffmpeg_pixfmt_to_caps (enum PixelFormat pix_fmt, AVCodecContext * context)
       break;
     case PIX_FMT_YUVJ444P:
     case PIX_FMT_YUV444P:
-      /* .. */
+      fmt = GST_MAKE_FOURCC ('Y', '4', '4', '4');
       break;
     case PIX_FMT_RGBA32:
       bpp = 32;