GNOME Bugzilla – Bug 500403
[PATCH] videobox element doesn't init liboil
Last modified: 2007-11-29 11:39:55 UTC
videobox crashes (in a very mysterious way) if anything else wouldn't init liboil Index: gstvideobox.c =================================================================== RCS file: /cvs/gstreamer/gst-plugins-good/gst/videobox/gstvideobox.c,v retrieving revision 1.34 diff -c -r1.34 gstvideobox.c *** gstvideobox.c 8 Aug 2007 17:47:05 -0000 1.34 --- gstvideobox.c 29 Nov 2007 11:17:37 -0000 *************** *** 1158,1163 **** --- 1158,1165 ---- static gboolean plugin_init (GstPlugin * plugin) { + oil_init(); + return gst_element_register (plugin, "videobox", GST_RANK_NONE, GST_TYPE_VIDEO_BOX); }
Created attachment 99836 [details] [review] The patch again in a separate attachment
Thanks, committed: Patch by: Arek Korbik <arkadini@gmail.com> * gst/videobox/gstvideobox.c: (plugin_init): Initialise liboil in plugin_init()