summaryrefslogtreecommitdiff
path: root/src/libxineadec/adpcm.c
diff options
context:
space:
mode:
authorMichael Roitzsch <mroi@users.sourceforge.net>2002-09-05 22:18:50 +0000
committerMichael Roitzsch <mroi@users.sourceforge.net>2002-09-05 22:18:50 +0000
commitc0178b0e481332c8aa9ab2b1226d64426eeed9fd (patch)
tree62183313777b7b3b1b504dc7ca74ea99f7ed59c8 /src/libxineadec/adpcm.c
parent08eb3436712ed19ac471cd0ddcc6d8ab1c30e4e7 (diff)
downloadxine-lib-c0178b0e481332c8aa9ab2b1226d64426eeed9fd.tar.gz
xine-lib-c0178b0e481332c8aa9ab2b1226d64426eeed9fd.tar.bz2
remove plugin's private priority and interface members
adapt some more decoders CVS patchset: 2618 CVS date: 2002/09/05 22:18:50
Diffstat (limited to 'src/libxineadec/adpcm.c')
-rw-r--r--src/libxineadec/adpcm.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/libxineadec/adpcm.c b/src/libxineadec/adpcm.c
index b84af1739..f556e599c 100644
--- a/src/libxineadec/adpcm.c
+++ b/src/libxineadec/adpcm.c
@@ -24,7 +24,7 @@
* formats can be found here:
* http://www.pcisys.net/~melanson/codecs/
*
- * $Id: adpcm.c,v 1.14 2002/09/05 20:44:41 mroi Exp $
+ * $Id: adpcm.c,v 1.15 2002/09/05 22:19:01 mroi Exp $
*/
#include <stdio.h>
@@ -1146,7 +1146,6 @@ static void *init_audio_decoder_plugin (xine_t *xine, void *data) {
this->audio_decoder.close = adpcm_close;
this->audio_decoder.get_identifier = adpcm_get_id;
this->audio_decoder.dispose = adpcm_dispose;
- this->audio_decoder.priority = 9;
return this;
}
@@ -1159,7 +1158,7 @@ static uint32_t audio_types[] = {
static decoder_info_t dec_info_audio = {
audio_types, /* supported types */
- 1 /* priority */
+ 9 /* priority */
};
plugin_info_t xine_plugin_info[] = {