mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 04:01:08 +00:00
gst/rtp/: Specify H.263 variant and version in the caps (fixes #361637)
Original commit message from CVS: Patch by: Ville Syrjala <ville.syrjala@movial.fi> * gst/rtp/gstrtph263pay.c: * gst/rtp/gstrtph263pdepay.c: * gst/rtp/gstrtph263ppay.c: Specify H.263 variant and version in the caps (fixes #361637)
This commit is contained in:
parent
0cbacacba3
commit
77fe86dc4e
4 changed files with 15 additions and 3 deletions
|
@ -1,3 +1,12 @@
|
||||||
|
2006-11-16 Stefan Kost <ensonic@users.sf.net>
|
||||||
|
|
||||||
|
Patch by: Ville Syrjala <ville.syrjala@movial.fi>
|
||||||
|
|
||||||
|
* gst/rtp/gstrtph263pay.c:
|
||||||
|
* gst/rtp/gstrtph263pdepay.c:
|
||||||
|
* gst/rtp/gstrtph263ppay.c:
|
||||||
|
Specify H.263 variant and version in the caps (fixes #361637)
|
||||||
|
|
||||||
2006-11-15 Wim Taymans <wim@fluendo.com>
|
2006-11-15 Wim Taymans <wim@fluendo.com>
|
||||||
|
|
||||||
* gst/rtsp/rtspconnection.c: (read_body):
|
* gst/rtsp/rtspconnection.c: (read_body):
|
||||||
|
|
|
@ -154,7 +154,8 @@ static GstStaticPadTemplate gst_rtp_h263_pay_sink_template =
|
||||||
GST_STATIC_PAD_TEMPLATE ("sink",
|
GST_STATIC_PAD_TEMPLATE ("sink",
|
||||||
GST_PAD_SINK,
|
GST_PAD_SINK,
|
||||||
GST_PAD_ALWAYS,
|
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 =
|
static GstStaticPadTemplate gst_rtp_h263_pay_src_template =
|
||||||
|
|
|
@ -50,7 +50,8 @@ static GstStaticPadTemplate gst_rtp_h263p_depay_src_template =
|
||||||
GST_STATIC_PAD_TEMPLATE ("src",
|
GST_STATIC_PAD_TEMPLATE ("src",
|
||||||
GST_PAD_SRC,
|
GST_PAD_SRC,
|
||||||
GST_PAD_ALWAYS,
|
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 =
|
static GstStaticPadTemplate gst_rtp_h263p_depay_sink_template =
|
||||||
|
|
|
@ -38,7 +38,8 @@ static GstStaticPadTemplate gst_rtp_h263p_pay_sink_template =
|
||||||
GST_STATIC_PAD_TEMPLATE ("sink",
|
GST_STATIC_PAD_TEMPLATE ("sink",
|
||||||
GST_PAD_SINK,
|
GST_PAD_SINK,
|
||||||
GST_PAD_ALWAYS,
|
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 =
|
static GstStaticPadTemplate gst_rtp_h263p_pay_src_template =
|
||||||
|
|
Loading…
Reference in a new issue