summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPetri Hintukainen <phintuka@users.sourceforge.net>2012-06-15 09:56:57 +0300
committerPetri Hintukainen <phintuka@users.sourceforge.net>2012-06-15 09:56:57 +0300
commitfaf5bee06eaa458b62c7e09e34e74da68c34b80f (patch)
tree051cc47da934922c29d5f32f5164693d6b42dfe9 /src
parent792ebfba1c222969181538340ec10d46a2278185 (diff)
downloadxine-lib-faf5bee06eaa458b62c7e09e34e74da68c34b80f.tar.gz
xine-lib-faf5bee06eaa458b62c7e09e34e74da68c34b80f.tar.bz2
Increased image and gdkpixbuf decoder priorities by 1
Prefer image and gdkpixbuf over ffmpeg when decodeing JPEG images
Diffstat (limited to 'src')
-rw-r--r--src/video_dec/gdkpixbuf.c2
-rw-r--r--src/video_dec/image.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/video_dec/gdkpixbuf.c b/src/video_dec/gdkpixbuf.c
index 972a04e9e..c5a3310dd 100644
--- a/src/video_dec/gdkpixbuf.c
+++ b/src/video_dec/gdkpixbuf.c
@@ -301,7 +301,7 @@ static const uint32_t supported_types[] = { BUF_VIDEO_IMAGE, BUF_VIDEO_JPEG, 0 }
static const decoder_info_t dec_info_image = {
supported_types, /* supported types */
- 7 /* priority */
+ 8 /* priority */
};
const plugin_info_t xine_plugin_info[] EXPORTED = {
diff --git a/src/video_dec/image.c b/src/video_dec/image.c
index 539c65e26..d44ed660e 100644
--- a/src/video_dec/image.c
+++ b/src/video_dec/image.c
@@ -312,7 +312,7 @@ static const uint32_t supported_types[] = { BUF_VIDEO_IMAGE, BUF_VIDEO_JPEG, 0 }
static const decoder_info_t dec_info_image = {
supported_types, /* supported types */
- 6 /* priority */
+ 7 /* priority */
};
const plugin_info_t xine_plugin_info[] EXPORTED = {