From 597bf61ae7f5541bc777c6aad220e72bb1b3b237 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Olivier=20Cr=C3=AAte?= Date: Fri, 1 Mar 2013 15:10:41 -0500 Subject: [PATCH] swscale: Use 1.0-style video/x-raw caps --- ext/libswscale/gstffmpegscale.c | 29 ----------------------------- 1 file changed, 29 deletions(-) diff --git a/ext/libswscale/gstffmpegscale.c b/ext/libswscale/gstffmpegscale.c index 17bf275b80..a2b0248e64 100644 --- a/ext/libswscale/gstffmpegscale.c +++ b/ext/libswscale/gstffmpegscale.c @@ -246,44 +246,15 @@ gst_ffmpegscale_caps_remove_format_info (GstCaps * caps) { int i; GstStructure *structure; - GstCaps *rgbcaps; - GstCaps *graycaps; caps = gst_caps_copy (caps); for (i = 0; i < gst_caps_get_size (caps); i++) { structure = gst_caps_get_structure (caps, i); - gst_structure_set_name (structure, "video/x-raw-yuv"); gst_structure_remove_field (structure, "format"); - gst_structure_remove_field (structure, "endianness"); - gst_structure_remove_field (structure, "depth"); - gst_structure_remove_field (structure, "bpp"); - gst_structure_remove_field (structure, "red_mask"); - gst_structure_remove_field (structure, "green_mask"); - gst_structure_remove_field (structure, "blue_mask"); - gst_structure_remove_field (structure, "alpha_mask"); - gst_structure_remove_field (structure, "palette_data"); } - rgbcaps = gst_caps_copy (caps); - - for (i = 0; i < gst_caps_get_size (rgbcaps); i++) { - structure = gst_caps_get_structure (rgbcaps, i); - - gst_structure_set_name (structure, "video/x-raw-rgb"); - } - graycaps = gst_caps_copy (caps); - - for (i = 0; i < gst_caps_get_size (graycaps); i++) { - structure = gst_caps_get_structure (graycaps, i); - - gst_structure_set_name (structure, "video/x-raw-gray"); - } - - gst_caps_append (caps, graycaps); - gst_caps_append (caps, rgbcaps); - return caps; }