ext/ffmpeg/gstffmpegcodecmap.c (gst_ffmpeg_pixfmt_to_caps): Add YUV444P format as Y444

Original commit message from CVS:
* ext/ffmpeg/gstffmpegcodecmap.c (gst_ffmpeg_pixfmt_to_caps):
Add YUV444P format as Y444
This commit is contained in:
Luca Ognibene 2005-05-17 18:29:17 +00:00
parent a4cf1e11fc
commit 84894a02a9
3 changed files with 7 additions and 2 deletions

View file

@ -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:

2
common

@ -1 +1 @@
Subproject commit 131c2632127e6f061b5270d8f80651782a4fdd13
Subproject commit 67b7e6c0db99415e0440d0c576495641b53e976a

View 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;