From: Sebastian Dröge Date: Mon, 4 Jul 2016 09:16:55 +0000 (+0200) Subject: videodecoder: fix criticals fixating a non existent field X-Git-Tag: 1.19.3~511^2~2780 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e18a9d9b5fb535e52310189b794f787533c2880b;p=platform%2Fupstream%2Fgstreamer.git videodecoder: fix criticals fixating a non existent field https://bugzilla.gnome.org/show_bug.cgi?id=766970 --- diff --git a/gst-libs/gst/video/gstvideodecoder.c b/gst-libs/gst/video/gstvideodecoder.c index 69cfe9e..4f94ccf 100644 --- a/gst-libs/gst/video/gstvideodecoder.c +++ b/gst-libs/gst/video/gstvideodecoder.c @@ -1041,16 +1041,29 @@ gst_video_decoder_negotiate_default_caps (GstVideoDecoder * decoder) for (i = 0; i < caps_size; i++) { structure = gst_caps_get_structure (caps, i); /* Random 1280x720@30 for fixation */ - gst_structure_fixate_field_nearest_int (structure, "width", 1280); - gst_structure_fixate_field_nearest_int (structure, "height", 720); - gst_structure_fixate_field_nearest_fraction (structure, "framerate", 30, 1); - if (gst_structure_has_field (structure, "pixel-aspect-ratio")) { + if (gst_structure_has_field (structure, "width")) + gst_structure_fixate_field_nearest_int (structure, "width", 1280); + else + gst_structure_set (structure, "width", G_TYPE_INT, 1280, NULL); + + if (gst_structure_has_field (structure, "height")) + gst_structure_fixate_field_nearest_int (structure, "height", 720); + else + gst_structure_set (structure, "height", G_TYPE_INT, 720, NULL); + + if (gst_structure_has_field (structure, "framerate")) + gst_structure_fixate_field_nearest_fraction (structure, "framerate", 30, + 1); + else + gst_structure_set (structure, "framerate", GST_TYPE_FRACTION, 30, 1, + NULL); + + if (gst_structure_has_field (structure, "pixel-aspect-ratio")) gst_structure_fixate_field_nearest_fraction (structure, "pixel-aspect-ratio", 1, 1); - } else { + else gst_structure_set (structure, "pixel-aspect-ratio", GST_TYPE_FRACTION, 1, 1, NULL); - } } caps = gst_caps_fixate (caps); structure = gst_caps_get_structure (caps, 0);