mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-18 13:25:56 +00:00
ext/libpostproc/gstpostproc.c: Support for non-I420 colorspaces in postproc
Original commit message from CVS: Patch by: Gabriel Bouvigne <bouvigne at mp3-tech dot org> * ext/libpostproc/gstpostproc.c: Support for non-I420 colorspaces in postproc Fixes #496127
This commit is contained in:
parent
08cfdc5074
commit
d6934dcd7c
3 changed files with 10 additions and 3 deletions
|
@ -1,3 +1,10 @@
|
|||
2008-05-06 Edward Hervey <edward.hervey@collabora.co.uk>
|
||||
|
||||
Patch by: Gabriel Bouvigne <bouvigne at mp3-tech dot org>
|
||||
* ext/libpostproc/gstpostproc.c:
|
||||
Support for non-I420 colorspaces in postproc
|
||||
Fixes #496127
|
||||
|
||||
2008-04-21 Edward Hervey <edward@collabora.co.uk>
|
||||
|
||||
Patch by: Dejan Sakelšak <sakdean at gmail dot com>
|
||||
|
|
2
common
2
common
|
@ -1 +1 @@
|
|||
Subproject commit 3bb6edfe927d6d3020d2f2a4604f54caa61cd104
|
||||
Subproject commit 9b28214399156457fd6b43d0604a47e4bdf19c28
|
|
@ -176,14 +176,14 @@ static GstStaticPadTemplate gst_post_proc_src_template =
|
|||
GST_STATIC_PAD_TEMPLATE ("src",
|
||||
GST_PAD_SRC,
|
||||
GST_PAD_ALWAYS,
|
||||
GST_STATIC_CAPS (GST_VIDEO_CAPS_YUV ("{ IYUV, I420, YV12 }"))
|
||||
GST_STATIC_CAPS (GST_VIDEO_CAPS_YUV ("{ IYUV, I420, YV12, Y42B, Y41B }"))
|
||||
);
|
||||
|
||||
static GstStaticPadTemplate gst_post_proc_sink_template =
|
||||
GST_STATIC_PAD_TEMPLATE ("sink",
|
||||
GST_PAD_SINK,
|
||||
GST_PAD_ALWAYS,
|
||||
GST_STATIC_CAPS (GST_VIDEO_CAPS_YUV ("{ IYUV, I420, YV12 }"))
|
||||
GST_STATIC_CAPS (GST_VIDEO_CAPS_YUV ("{ IYUV, I420, YV12, Y42B, Y41B }"))
|
||||
);
|
||||
|
||||
GST_DEBUG_CATEGORY (postproc_debug);
|
||||
|
|
Loading…
Reference in a new issue