From: Wim Taymans Date: Tue, 2 Jun 2009 17:30:30 +0000 (+0200) Subject: vrawdepay: fix parsing of sampling field X-Git-Tag: RELEASE-0.10.16~506 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=dabddb812605e2b710346863d172049f80629a45;p=platform%2Fupstream%2Fgst-plugins-good.git vrawdepay: fix parsing of sampling field commit a12d9a80f225be97b3674b1a0506ac66544dbf49 broke the parsing of the sampling. --- diff --git a/gst/rtp/gstrtpvrawdepay.c b/gst/rtp/gstrtpvrawdepay.c index f633889..2b3d799 100644 --- a/gst/rtp/gstrtpvrawdepay.c +++ b/gst/rtp/gstrtpvrawdepay.c @@ -142,7 +142,7 @@ gst_rtp_vraw_depay_setcaps (GstBaseRTPDepayload * depayload, GstCaps * caps) if (gst_structure_get_string (structure, "interlace")) goto interlaced; - if (gst_structure_get_string (structure, "sampling")) + if (!(str = gst_structure_get_string (structure, "sampling"))) goto no_sampling; if (!strcmp (str, "RGB")) {