mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-19 14:56:36 +00:00
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:
parent
a4cf1e11fc
commit
84894a02a9
3 changed files with 7 additions and 2 deletions
|
@ -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
2
common
|
@ -1 +1 @@
|
|||
Subproject commit 131c2632127e6f061b5270d8f80651782a4fdd13
|
||||
Subproject commit 67b7e6c0db99415e0440d0c576495641b53e976a
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue