From 06afe5f04918d26af61805a7c6fd2a3ce7caac89 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Tim-Philipp=20M=C3=BCller?= Date: Fri, 8 Oct 2010 10:06:07 +0100 Subject: [PATCH] rtsp: fix enum value name in enums that are public API https://bugzilla.gnome.org/show_bug.cgi?id=629746 --- gst-libs/gst/rtsp/gstrtsptransport.c | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) 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}, }; -- 2.7.4