mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-07 06:52:41 +00:00
gst/rtp/: Fix encoding-name case.
Original commit message from CVS: * gst/rtp/gstrtpmp4gpay.c: (gst_rtp_mp4g_pay_setcaps): * gst/rtp/gstrtptheorapay.c: (gst_rtp_theora_pay_finish_headers): * gst/rtp/gstrtpvorbispay.c: (gst_rtp_vorbis_pay_finish_headers): Fix encoding-name case.
This commit is contained in:
parent
d3948d2323
commit
20f18abf72
4 changed files with 10 additions and 3 deletions
|
@ -1,3 +1,10 @@
|
|||
2007-03-05 Wim Taymans <wim@fluendo.com>
|
||||
|
||||
* gst/rtp/gstrtpmp4gpay.c: (gst_rtp_mp4g_pay_setcaps):
|
||||
* gst/rtp/gstrtptheorapay.c: (gst_rtp_theora_pay_finish_headers):
|
||||
* gst/rtp/gstrtpvorbispay.c: (gst_rtp_vorbis_pay_finish_headers):
|
||||
Fix encoding-name case.
|
||||
|
||||
2007-03-05 Wim Taymans <wim@fluendo.com>
|
||||
|
||||
* gst/rtp/gstrtpspeexdepay.c: (gst_rtp_speex_depay_class_init),
|
||||
|
|
|
@ -414,7 +414,7 @@ gst_rtp_mp4g_pay_setcaps (GstBaseRTPPayload * payload, GstCaps * caps)
|
|||
if (media_type == NULL)
|
||||
goto config_failed;
|
||||
|
||||
gst_basertppayload_set_options (payload, media_type, TRUE, "mpeg4-generic",
|
||||
gst_basertppayload_set_options (payload, media_type, TRUE, "MPEG4-GENERIC",
|
||||
rtpmp4gpay->rate);
|
||||
|
||||
gst_rtp_mp4g_pay_new_caps (rtpmp4gpay);
|
||||
|
|
|
@ -312,7 +312,7 @@ gst_rtp_theora_pay_finish_headers (GstBaseRTPPayload * basepayload)
|
|||
/* configure payloader settings */
|
||||
wstr = g_strdup_printf ("%d", rtptheorapay->width);
|
||||
hstr = g_strdup_printf ("%d", rtptheorapay->height);
|
||||
gst_basertppayload_set_options (basepayload, "video", TRUE, "theora", 90000);
|
||||
gst_basertppayload_set_options (basepayload, "video", TRUE, "THEORA", 90000);
|
||||
gst_basertppayload_set_outcaps (basepayload,
|
||||
"sampling", G_TYPE_STRING, "YCbCr-4:2:0",
|
||||
"width", G_TYPE_STRING, wstr,
|
||||
|
|
|
@ -306,7 +306,7 @@ gst_rtp_vorbis_pay_finish_headers (GstBaseRTPPayload * basepayload)
|
|||
|
||||
/* configure payloader settings */
|
||||
cstr = g_strdup_printf ("%d", rtpvorbispay->channels);
|
||||
gst_basertppayload_set_options (basepayload, "audio", TRUE, "vorbis",
|
||||
gst_basertppayload_set_options (basepayload, "audio", TRUE, "VORBIS",
|
||||
rtpvorbispay->rate);
|
||||
gst_basertppayload_set_outcaps (basepayload, "encoding-params", G_TYPE_STRING,
|
||||
cstr, "configuration", G_TYPE_STRING, configuration,
|
||||
|
|
Loading…
Reference in a new issue