blob: 2d1fd17ed9f1d23a4542eafbbd2b071fde51e059 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
--- plugins/image_view/xine_image_loader.c.orig
+++ plugins/image_view/xine_image_loader.c
@@ -57,8 +57,13 @@ gimv_xine_image_loader_load_file (GimvIm
GimvXinePrivImage *pimage = NULL;
xine_t *xine;
xine_stream_t *stream;
+#if XINE_MAJOR_VERSION < 1 || (XINE_MAJOR_VERSION == 1 && XINE_MINOR_VERSION < 2)
xine_vo_driver_t *vo_driver;
xine_ao_driver_t *ao_driver;
+#else
+ xine_video_port_t *vo_driver;
+ xine_audio_port_t *ao_driver;
+#endif
guchar *rgb = NULL;
gint width, height;
gint ret = 0;
|