From: Vincent Penquerc'h Date: Thu, 19 Feb 2015 14:29:02 +0000 (+0000) Subject: rtpvp8pay: default encoding name to VP8 X-Git-Tag: 1.6.0~589 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=dc73d153cb3d8f1506824235cce0f554e82532ce;p=platform%2Fupstream%2Fgst-plugins-good.git rtpvp8pay: default encoding name to VP8 https://bugzilla.gnome.org/show_bug.cgi?id=737810 --- diff --git a/gst/rtp/gstrtpvp8pay.c b/gst/rtp/gstrtpvp8pay.c index cb7d1a3..133c2fd 100644 --- a/gst/rtp/gstrtpvp8pay.c +++ b/gst/rtp/gstrtpvp8pay.c @@ -518,7 +518,7 @@ gst_rtp_vp8_pay_set_caps (GstRTPBasePayload * payload, GstCaps * caps) src_caps = gst_caps_make_writable (src_caps); src_caps = gst_caps_truncate (src_caps); s = gst_caps_get_structure (src_caps, 0); - gst_structure_fixate_field_string (s, "encoding-name", "VP8-DRAFT-IETF-01"); + gst_structure_fixate_field_string (s, "encoding-name", "VP8"); encoding_name = g_strdup (gst_structure_get_string (s, "encoding-name")); gst_caps_unref (src_caps); } else {