diff options
author | Michael Roitzsch <mroi@users.sourceforge.net> | 2004-07-27 17:59:58 +0000 |
---|---|---|
committer | Michael Roitzsch <mroi@users.sourceforge.net> | 2004-07-27 17:59:58 +0000 |
commit | 25ba0f3888a1e4c3b92f926ce8828d56e40e3c61 (patch) | |
tree | 71f3d297456179c48397f220f571699bb8223e93 /src/post/audio/upmix.c | |
parent | 39009957fcc969ef659981b033aba33d6121f2b2 (diff) | |
download | xine-lib-25ba0f3888a1e4c3b92f926ce8828d56e40e3c61.tar.gz xine-lib-25ba0f3888a1e4c3b92f926ce8828d56e40e3c61.tar.bz2 |
* use a header for the init functions
* do not use void* in pointer arithmetics, since sizeof(void) is undefined
-> I converted the pointers to int16_t* since that is common for audio
samples in xine and casted them back to uint8_t* for the arithmetics
CVS patchset: 6858
CVS date: 2004/07/27 17:59:58
Diffstat (limited to 'src/post/audio/upmix.c')
-rw-r--r-- | src/post/audio/upmix.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/post/audio/upmix.c b/src/post/audio/upmix.c index 2fb42a409..7910479aa 100644 --- a/src/post/audio/upmix.c +++ b/src/post/audio/upmix.c @@ -23,7 +23,7 @@ * It simply creates output channels to match the speaker arrangement. * E.g. Converts Stereo into Surround 5.1 * - * $Id: upmix.c,v 1.15 2004/07/26 22:23:34 miguelfreitas Exp $ + * $Id: upmix.c,v 1.16 2004/07/27 17:59:58 mroi Exp $ * */ @@ -34,6 +34,8 @@ #include "post.h" #include "dsp.h" +#include "audio_filters.h" + typedef struct post_plugin_upmix_s post_plugin_upmix_t; |