diff options
author | Michael Roitzsch <mroi@users.sourceforge.net> | 2003-05-02 12:43:15 +0000 |
---|---|---|
committer | Michael Roitzsch <mroi@users.sourceforge.net> | 2003-05-02 12:43:15 +0000 |
commit | 09eaad3a1c001f23196fcbb171e16572dc906eb9 (patch) | |
tree | b0a296fef8f1110ff446acfbc7f6079bb5d1ff59 | |
parent | 1a4813bac2a73f08a9d5a559e80faab3731126b6 (diff) | |
download | xine-lib-09eaad3a1c001f23196fcbb171e16572dc906eb9.tar.gz xine-lib-09eaad3a1c001f23196fcbb171e16572dc906eb9.tar.bz2 |
flac demuxer has been forgotten in the latest API version increase
CVS patchset: 4749
CVS date: 2003/05/02 12:43:15
-rw-r--r-- | src/libflac/decoder_flac.c | 2 | ||||
-rw-r--r-- | src/libflac/demux_flac.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/libflac/decoder_flac.c b/src/libflac/decoder_flac.c index 508b30d56..00f26742b 100644 --- a/src/libflac/decoder_flac.c +++ b/src/libflac/decoder_flac.c @@ -425,7 +425,7 @@ void *demux_flac_init_class (xine_t *xine, void *data); plugin_info_t xine_plugin_info[] = { /* type, API, "name", version, special_info, init_function */ - { PLUGIN_DEMUX, 20, "flac", XINE_VERSION_CODE, NULL, demux_flac_init_class }, + { PLUGIN_DEMUX, 21, "flac", XINE_VERSION_CODE, NULL, demux_flac_init_class }, { PLUGIN_AUDIO_DECODER, 13, "flacdec", XINE_VERSION_CODE, &dec_info_audio, init_plugin }, { PLUGIN_NONE, 0, "", 0, NULL, NULL } }; diff --git a/src/libflac/demux_flac.c b/src/libflac/demux_flac.c index f0aeffa3f..80af4630e 100644 --- a/src/libflac/demux_flac.c +++ b/src/libflac/demux_flac.c @@ -667,7 +667,7 @@ demux_flac_init_class (xine_t *xine, void *data) { #if 0 plugin_info_t xine_plugin_info[] = { /* type, API, "name", version, special_info, init_function */ - { PLUGIN_DEMUX, 20, "flac", XINE_VERSION_CODE, NULL, demux_flac_init_class }, + { PLUGIN_DEMUX, 21, "flac", XINE_VERSION_CODE, NULL, demux_flac_init_class }, { PLUGIN_NONE, 0, "", 0, NULL, NULL } }; #endif |