diff options
author | Gabriel Bouvigne <bouvigne@mp3-tech.org> | 2008-05-06 14:31:22 +0000 |
---|---|---|
committer | Edward Hervey <bilboed@bilboed.com> | 2008-05-06 14:31:22 +0000 |
commit | d6934dcd7c47e32768b19f8a8475590896b0e98f (patch) | |
tree | fe2faca4a5a4f93754de1360fd3a03695f9835da /ext | |
parent | 08cfdc5074eb72605ef4aa144b904fe0f0d856ee (diff) |
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
Diffstat (limited to 'ext')
-rw-r--r-- | ext/libpostproc/gstpostproc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/libpostproc/gstpostproc.c b/ext/libpostproc/gstpostproc.c index 89f008f..a56e785 100644 --- a/ext/libpostproc/gstpostproc.c +++ b/ext/libpostproc/gstpostproc.c @@ -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); |