From 77fe86dc4e66235260006c234a5328e48ad843aa Mon Sep 17 00:00:00 2001 From: Ville Syrjala Date: Thu, 16 Nov 2006 07:26:17 +0000 Subject: gst/rtp/: Specify H.263 variant and version in the caps (fixes #361637) Original commit message from CVS: Patch by: Ville Syrjala * gst/rtp/gstrtph263pay.c: * gst/rtp/gstrtph263pdepay.c: * gst/rtp/gstrtph263ppay.c: Specify H.263 variant and version in the caps (fixes #361637) --- gst/rtp/gstrtph263pay.c | 3 ++- gst/rtp/gstrtph263pdepay.c | 3 ++- gst/rtp/gstrtph263ppay.c | 3 ++- 3 files changed, 6 insertions(+), 3 deletions(-) (limited to 'gst') diff --git a/gst/rtp/gstrtph263pay.c b/gst/rtp/gstrtph263pay.c index 5f86fee2..273f4e50 100644 --- a/gst/rtp/gstrtph263pay.c +++ b/gst/rtp/gstrtph263pay.c @@ -154,7 +154,8 @@ static GstStaticPadTemplate gst_rtp_h263_pay_sink_template = GST_STATIC_PAD_TEMPLATE ("sink", GST_PAD_SINK, GST_PAD_ALWAYS, - GST_STATIC_CAPS ("video/x-h263") + GST_STATIC_CAPS ("video/x-h263, " + "variant = (string) \"itu\", " "h263version = (string) \"h263\"") ); static GstStaticPadTemplate gst_rtp_h263_pay_src_template = diff --git a/gst/rtp/gstrtph263pdepay.c b/gst/rtp/gstrtph263pdepay.c index 0657e9a3..b0b2dcf4 100644 --- a/gst/rtp/gstrtph263pdepay.c +++ b/gst/rtp/gstrtph263pdepay.c @@ -50,7 +50,8 @@ static GstStaticPadTemplate gst_rtp_h263p_depay_src_template = GST_STATIC_PAD_TEMPLATE ("src", GST_PAD_SRC, GST_PAD_ALWAYS, - GST_STATIC_CAPS ("video/x-h263") + GST_STATIC_CAPS ("video/x-h263, " + "variant = (string) \"itu\", " "h263version = (string) \"h263p\"") ); static GstStaticPadTemplate gst_rtp_h263p_depay_sink_template = diff --git a/gst/rtp/gstrtph263ppay.c b/gst/rtp/gstrtph263ppay.c index d5d82253..2f1f42e6 100644 --- a/gst/rtp/gstrtph263ppay.c +++ b/gst/rtp/gstrtph263ppay.c @@ -38,7 +38,8 @@ static GstStaticPadTemplate gst_rtp_h263p_pay_sink_template = GST_STATIC_PAD_TEMPLATE ("sink", GST_PAD_SINK, GST_PAD_ALWAYS, - GST_STATIC_CAPS ("video/x-h263") + GST_STATIC_CAPS ("video/x-h263, " + "variant = (string) \"itu\", " "h263version = (string) \"h263p\"") ); static GstStaticPadTemplate gst_rtp_h263p_pay_src_template = -- cgit