From 516c824687ef152a2c0deb3ee7b978acf95ec489 Mon Sep 17 00:00:00 2001 From: Edward Hervey Date: Fri, 7 May 2010 19:21:13 +0200 Subject: [PATCH] ffmpegcolorspace: more minor cleanups --- gst/ffmpegcolorspace/gstffmpegcolorspace.c | 16 +++------------- 1 file changed, 3 insertions(+), 13 deletions(-) diff --git a/gst/ffmpegcolorspace/gstffmpegcolorspace.c b/gst/ffmpegcolorspace/gstffmpegcolorspace.c index c4c141a435..e7804bbcf7 100644 --- a/gst/ffmpegcolorspace/gstffmpegcolorspace.c +++ b/gst/ffmpegcolorspace/gstffmpegcolorspace.c @@ -69,15 +69,9 @@ gst_ffmpegcsp_caps_remove_format_info (GstCaps * caps) 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"); + gst_structure_remove_field (structure, "format", "endianness", "depth", + "bpp", "red_mask", "green_mask", "blue_mask", "alpha_mask", + "palette_data", NULL); } gst_caps_do_simplify (caps); @@ -135,13 +129,9 @@ gst_ffmpegcsp_transform_caps (GstBaseTransform * btrans, GstCaps *tmp, *tmp2; GstCaps *result; guint i, n; - gboolean is_alpha; GstStructure *s; GstCaps *alpha, *non_alpha; - s = gst_caps_get_structure (caps, 0); - is_alpha = gst_ffmpegcsp_structure_is_alpha (s); - template = gst_pad_template_get_caps (srctempl); result = gst_caps_copy (caps);