mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-10-31 22:25:33 -04:00
merge 'lennart' branch back into trunk.
git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@1971 fefdeb5f-60dc-0310-8127-8f9354f1896f
This commit is contained in:
parent
6687dd0131
commit
a67c21f093
294 changed files with 79057 additions and 11614 deletions
|
|
@ -24,7 +24,18 @@
|
|||
USA.
|
||||
***/
|
||||
|
||||
void pa_sconv_s16be_to_float32ne(unsigned n, const void *a, float *b);
|
||||
void pa_sconv_s16be_from_float32ne(unsigned n, const float *a, void *b);
|
||||
#include <inttypes.h>
|
||||
|
||||
void pa_sconv_s16be_to_float32ne(unsigned n, const int16_t *a, float *b);
|
||||
void pa_sconv_s16be_from_float32ne(unsigned n, const float *a, int16_t *b);
|
||||
void pa_sconv_s16be_to_float32re(unsigned n, const int16_t *a, float *b);
|
||||
void pa_sconv_s16be_from_float32re(unsigned n, const float *a, int16_t *b);
|
||||
|
||||
#ifdef WORDS_BIGENDIAN
|
||||
#define pa_sconv_float32be_to_s16ne pa_sconv_s16be_from_float32ne
|
||||
#define pa_sconv_float32be_from_s16ne pa_sconv_s16be_to_float32ne
|
||||
#define pa_sconv_float32le_to_s16ne pa_sconv_s16be_from_float32re
|
||||
#define pa_sconv_float32le_from_s16ne pa_sconv_s16be_to_float32re
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue