GNOME Bugzilla – Bug 606688
Warning compiling videoutil.c on 64 bit
Last modified: 2010-01-12 11:27:57 UTC
videoutil.c: In function 'gstsharp_gst_videoutil_get_template_caps': videoutil.c:14: warning: passing argument 2 of 'gst_caps_set_simple' makes pointer from integer without a cast gst_caps_set_simple (caps, fourcc, GST_TYPE_FOURCC, fourcc, NULL); should probably be replaced with gst_caps_set_simple (caps, "format", GST_TYPE_FOURCC, fourcc, NULL); ?
Created attachment 151205 [details] [review] Patch for this - definitely fixes the warning, and is based off an example in the devhelp docs for gstreamer
commit 6d02097924ab857707fc5150ed2857a55dd54020 Author: Gabriel Burt <gabriel.burt@gmail.com> Date: Tue Jan 12 12:23:06 2010 +0100 Fix generation of YUV template caps Fixes bug #606688.