diff options
author | Guenter Bartsch <guenter@users.sourceforge.net> | 2002-10-20 19:12:24 +0000 |
---|---|---|
committer | Guenter Bartsch <guenter@users.sourceforge.net> | 2002-10-20 19:12:24 +0000 |
commit | d092ab0aa226dbcf736c548b54f8b99a1adb9bec (patch) | |
tree | 904ea0be8a93dde46d046549a7ab428e9e6fddd4 | |
parent | c4fc88175c8565b101823ead6e47a448a0b8e5fa (diff) | |
download | xine-lib-d092ab0aa226dbcf736c548b54f8b99a1adb9bec.tar.gz xine-lib-d092ab0aa226dbcf736c548b54f8b99a1adb9bec.tar.bz2 |
plugin interface version number fix
CVS patchset: 2888
CVS date: 2002/10/20 19:12:24
-rw-r--r-- | src/libw32dll/w32codec.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libw32dll/w32codec.c b/src/libw32dll/w32codec.c index 32819d44f..dfe301641 100644 --- a/src/libw32dll/w32codec.c +++ b/src/libw32dll/w32codec.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: w32codec.c,v 1.97 2002/10/20 15:56:27 guenter Exp $ + * $Id: w32codec.c,v 1.98 2002/10/20 19:12:24 guenter Exp $ * * routines for using w32 codecs * DirectShow support by Miguel Freitas (Nov/2001) @@ -1487,7 +1487,7 @@ static decoder_info_t dec_info_audio = { plugin_info_t xine_plugin_info[] = { /* type, API, "name", version, special_info, init_function */ - { PLUGIN_VIDEO_DECODER, 10, "win32v", XINE_VERSION_CODE, &dec_info_video, init_video_decoder_class }, + { PLUGIN_VIDEO_DECODER, 11, "win32v", XINE_VERSION_CODE, &dec_info_video, init_video_decoder_class }, { PLUGIN_AUDIO_DECODER, 10, "win32a", XINE_VERSION_CODE, &dec_info_audio, init_audio_decoder_class }, { PLUGIN_NONE, 0, "", 0, NULL, NULL } }; |