From 377f6d91567f8c26a353f770f243a39aa0eb70cd Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Tue, 13 Mar 2012 16:02:47 +0100 Subject: [PATCH] factory: change to new style caps --- gst/rtsp-server/rtsp-media-factory-uri.c | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/gst/rtsp-server/rtsp-media-factory-uri.c b/gst/rtsp-server/rtsp-media-factory-uri.c index 5e86ee331f..1f107ced8e 100644 --- a/gst/rtsp-server/rtsp-media-factory-uri.c +++ b/gst/rtsp-server/rtsp-media-factory-uri.c @@ -34,13 +34,10 @@ enum #define RAW_VIDEO_CAPS \ - "video/x-raw-yuv; " \ - "video/x-raw-rgb; " \ - "video/x-raw-gray" + "video/x-raw" #define RAW_AUDIO_CAPS \ - "audio/x-raw-int; " \ - "audio/x-raw-float" + "audio/x-raw" static GstStaticCaps raw_video_caps = GST_STATIC_CAPS (RAW_VIDEO_CAPS); static GstStaticCaps raw_audio_caps = GST_STATIC_CAPS (RAW_AUDIO_CAPS);