From: Wim Taymans Date: Fri, 5 Aug 2011 10:48:07 +0000 (+0200) Subject: xvimagepool: cleanups X-Git-Tag: 1.19.3~511^2~7373 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2e00a6d169035cf8042064eda0afa39dc9e04bab;p=platform%2Fupstream%2Fgstreamer.git xvimagepool: cleanups --- diff --git a/sys/xvimage/xvimagepool.c b/sys/xvimage/xvimagepool.c index 809d0a8..a66e49b 100644 --- a/sys/xvimage/xvimagepool.c +++ b/sys/xvimage/xvimagepool.c @@ -513,17 +513,18 @@ xvimage_buffer_pool_set_config (GstBufferPool * pool, GstStructure * config) if (!gst_video_info_from_caps (&info, caps)) goto wrong_caps; - priv->info = info; - GST_LOG_OBJECT (pool, "%dx%d, caps %" GST_PTR_FORMAT, info.width, info.height, caps); - /* keep track of the width and height and caps */ + priv->im_format = + gst_xvimagesink_get_format_from_caps (xvpool->sink, (GstCaps *) caps); + if (priv->im_format == -1) + goto unknown_format; + if (priv->caps) gst_caps_unref (priv->caps); priv->caps = gst_caps_copy (caps); - priv->im_format = - gst_xvimagesink_get_format_from_caps (xvpool->sink, (GstCaps *) caps); + priv->info = info; /* enable metadata based on config of the pool */ priv->add_metavideo = @@ -553,9 +554,6 @@ xvimage_buffer_pool_set_config (GstBufferPool * pool, GstStructure * config) GST_VIDEO_INFO_HEIGHT (&info) + priv->align.padding_top + priv->align.padding_bottom; - if (priv->im_format == -1) - goto unknown_format; - return GST_BUFFER_POOL_CLASS (parent_class)->set_config (pool, config); /* ERRORS */