mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 04:01:08 +00:00
gst/games/gstpuzzle.c: call oil_init() when using liboil
Original commit message from CVS: * gst/games/gstpuzzle.c: (plugin_init): call oil_init() when using liboil
This commit is contained in:
parent
35204f008d
commit
18378238d8
2 changed files with 9 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
|||
2006-01-05 Stefan Kost <ensonic@users.sf.net>
|
||||
|
||||
* gst/games/gstpuzzle.c: (plugin_init):
|
||||
call oil_init() when using liboil
|
||||
|
||||
2006-01-04 Edgard Lima <edgard.lima@indt.org.br>
|
||||
|
||||
* ext/neon/gstneonhttpsrc.c:
|
||||
|
|
|
@ -557,6 +557,10 @@ draw_puzzle (GstVideofilter * videofilter, void *destp, void *srcp)
|
|||
static gboolean
|
||||
plugin_init (GstPlugin * plugin)
|
||||
{
|
||||
#ifdef HAVE_LIBOIL
|
||||
oil_init ();
|
||||
#endif
|
||||
|
||||
if (!gst_library_load ("gstvideofilter"))
|
||||
return FALSE;
|
||||
|
||||
|
|
Loading…
Reference in a new issue