]> git.sesse.net Git - vlc/blobdiff - plugins/imdct/ac3_imdct_common.h
* AC3 IMDCT and downmix functions are now in plugins, --imdct and
[vlc] / plugins / imdct / ac3_imdct_common.h
similarity index 69%
rename from src/ac3_decoder/ac3_imdct_c.h
rename to plugins/imdct/ac3_imdct_common.h
index 5863dc9d882223af7f6ae5331c42d71f709399c3..ce0a7ab6d8d3c1085d56e4815e0498dee679f414 100644 (file)
@@ -1,8 +1,8 @@
 /*****************************************************************************
- * ac3_imdct_c.h: ac3 DCT
+ * ac3_imdct_common.h: common ac3 DCT headers
  *****************************************************************************
  * Copyright (C) 1999, 2000 VideoLAN
- * $Id: ac3_imdct_c.h,v 1.2 2001/04/30 21:10:25 reno Exp $
+ * $Id: ac3_imdct_common.h,v 1.1 2001/05/15 16:19:42 sam Exp $
  *
  * Authors: Renaud Dartus <reno@videolan.org>
  *          Aaron Holtzman <aholtzma@engr.uvic.ca>
@@ -22,9 +22,9 @@
  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  *****************************************************************************/
 
-int  imdct_init_c (imdct_t * p_imdct);
-void imdct_do_256(imdct_t * p_imdct, float data[], float delay[]);
-void imdct_do_256_nol(imdct_t * p_imdct, float data[], float delay[]);
-void imdct_do_512_c(imdct_t * p_imdct, float data[], float delay[]);
-void imdct_do_512_nol_c(imdct_t * p_imdct, float data[], float delay[]);
+void _M( imdct_init )       ( imdct_t * p_imdct );
+void _M( imdct_do_256 )     ( imdct_t * p_imdct, float data[], float delay[] );
+void _M( imdct_do_256_nol ) ( imdct_t * p_imdct, float data[], float delay[] );
+void _M( imdct_do_512  )    ( imdct_t * p_imdct, float data[], float delay[] );
+void _M( imdct_do_512_nol ) ( imdct_t * p_imdct, float data[], float delay[] );