summaryrefslogtreecommitdiff
path: root/src/dxr3
diff options
context:
space:
mode:
authorDiego 'Flameeyes' Pettenò <flameeyes@gmail.com>2007-12-11 18:15:14 +0100
committerDiego 'Flameeyes' Pettenò <flameeyes@gmail.com>2007-12-11 18:15:14 +0100
commit158ced5414ebb912f1d5111d2303097c7206f656 (patch)
treef1c10361f69d02e3aad67e5b0762623dab5cdb40 /src/dxr3
parent0c1d668e424582f9d748ca3dae96c845aca4c65b (diff)
downloadxine-lib-158ced5414ebb912f1d5111d2303097c7206f656.tar.gz
xine-lib-158ced5414ebb912f1d5111d2303097c7206f656.tar.bz2
Bump the interface version for video output plugins.
Diffstat (limited to 'src/dxr3')
-rw-r--r--src/dxr3/video_out_dxr3.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dxr3/video_out_dxr3.c b/src/dxr3/video_out_dxr3.c
index 68a5eb0af..b073e6f63 100644
--- a/src/dxr3/video_out_dxr3.c
+++ b/src/dxr3/video_out_dxr3.c
@@ -92,9 +92,9 @@ static const vo_info_t vo_info_dxr3_aa = {
const plugin_info_t xine_plugin_info[] EXPORTED = {
/* type, API, "name", version, special_info, init_function */
#ifdef HAVE_X11
- { PLUGIN_VIDEO_OUT, 21, "dxr3", XINE_VERSION_CODE, &vo_info_dxr3_x11, &dxr3_x11_init_plugin },
+ { PLUGIN_VIDEO_OUT, 22, "dxr3", XINE_VERSION_CODE, &vo_info_dxr3_x11, &dxr3_x11_init_plugin },
#endif
- { PLUGIN_VIDEO_OUT, 21, "aadxr3", XINE_VERSION_CODE, &vo_info_dxr3_aa, &dxr3_aa_init_plugin },
+ { PLUGIN_VIDEO_OUT, 22, "aadxr3", XINE_VERSION_CODE, &vo_info_dxr3_aa, &dxr3_aa_init_plugin },
{ PLUGIN_NONE, 0, "", 0, NULL, NULL }
};