From 13d9e8d35227337a04b0cd24a0dda7c0c3961289 Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Sat, 30 Mar 2002 17:06:26 +0000 Subject: Changed to the new props API Original commit message from CVS: Changed to the new props API Other small tuff. --- ext/aalib/gstaasink.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ext/aalib') diff --git a/ext/aalib/gstaasink.c b/ext/aalib/gstaasink.c index b19623e9..2a3f7547 100644 --- a/ext/aalib/gstaasink.c +++ b/ext/aalib/gstaasink.c @@ -242,8 +242,8 @@ gst_aasink_sinkconnect (GstPad *pad, GstCaps *caps) if (!GST_CAPS_IS_FIXED (caps)) return GST_PAD_CONNECT_DELAYED; - aasink->width = gst_caps_get_int (caps, "width"); - aasink->height = gst_caps_get_int (caps, "height"); + gst_caps_get_int (caps, "width", &aasink->width); + gst_caps_get_int (caps, "height", &aasink->height); print_format = GULONG_FROM_LE (aasink->format); -- cgit