]> git.sesse.net Git - vlc/blobdiff - plugins/mpeg_adec/mpeg_adec_generic.c
All decoders (audio, video, subtitles) are now modules.
[vlc] / plugins / mpeg_adec / mpeg_adec_generic.c
similarity index 96%
rename from src/audio_decoder/adec_generic.c
rename to plugins/mpeg_adec/mpeg_adec_generic.c
index 8aa6a00e2c7c248b6fa5f61cb807a4be1951e54a..ccf41605b4d370112f73b1101aabf782b28c867a 100644 (file)
@@ -2,7 +2,7 @@
  * adec_generic.c: MPEG audio decoder
  *****************************************************************************
  * Copyright (C) 1999, 2000 VideoLAN
- * $Id: adec_generic.c,v 1.6 2001/09/05 16:46:10 massiot Exp $
+ * $Id: mpeg_adec_generic.c,v 1.1 2001/11/13 12:09:18 henri Exp $
  *
  * Authors: Michel Kaempf <maxx@via.ecp.fr>
  *          Michel Lespinasse <walken@via.ecp.fr>
 #include "common.h"
 #include "threads.h"
 #include "mtime.h"
-#include "stream_control.h"
+
+#include "modules.h"
+#include "modules_export.h"     /* Used for exporting vlc symbols to plugins */
+
 #include "input_ext-dec.h"
+#include "stream_control.h"
 
-#include "adec_generic.h"
-#include "audio_decoder.h"
+#include "mpeg_adec_generic.h"
+#include "mpeg_adec.h"
 #include "adec_math.h"                                     /* DCT32(), PCM() */
 #include "adec_layer1.h"
 #include "adec_layer2.h"