From: Tim-Philipp Müller Date: Fri, 8 Oct 2010 09:06:07 +0000 (+0100) Subject: rtsp: fix enum value name in enums that are public API X-Git-Tag: RELEASE-0.10.31~93 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=06afe5f04918d26af61805a7c6fd2a3ce7caac89;p=platform%2Fupstream%2Fgst-plugins-base.git rtsp: fix enum value name in enums that are public API https://bugzilla.gnome.org/show_bug.cgi?id=629746 --- diff --git a/gst-libs/gst/rtsp/gstrtsptransport.c b/gst-libs/gst/rtsp/gstrtsptransport.c index a5232ee..2d4a3c6 100644 --- a/gst-libs/gst/rtsp/gstrtsptransport.c +++ b/gst-libs/gst/rtsp/gstrtsptransport.c @@ -119,10 +119,11 @@ gst_rtsp_lower_trans_get_type (void) { static GType rtsp_lower_trans_type = 0; static const GFlagsValue rtsp_lower_trans[] = { - {GST_RTSP_LOWER_TRANS_UDP, "UDP Unicast Mode", "udp-unicast"}, - {GST_RTSP_LOWER_TRANS_UDP_MCAST, "UDP Multicast Mode", "udp-multicast"}, - {GST_RTSP_LOWER_TRANS_TCP, "TCP interleaved mode", "tcp"}, - {GST_RTSP_LOWER_TRANS_HTTP, "HTTP tunneled mode", "http"}, + {GST_RTSP_LOWER_TRANS_UDP, "GST_RTSP_LOWER_TRANS_UDP", "udp-unicast"}, + {GST_RTSP_LOWER_TRANS_UDP_MCAST, "GST_RTSP_LOWER_TRANS_UDP_MCAST", + "udp-multicast"}, + {GST_RTSP_LOWER_TRANS_TCP, "GST_RTSP_LOWER_TRANS_TCP", "tcp"}, + {GST_RTSP_LOWER_TRANS_HTTP, "GST_RTSP_LOWER_TRANS_HTTP", "http"}, {0, NULL, NULL}, };