X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=Pico%2Fsound%2Fmix.c;h=4d68f1d7cd84fa1a84c1a17a81212ed3bf88833d;hb=83c093a48ab58670ea82d0ec81658daa9f9b950a;hp=8e4a63152a7d1b5b36bde25dcb13530d59f4dbbd;hpb=4f265db77684ec33f9533e7c76734498df03bba4;p=picodrive.git diff --git a/Pico/sound/mix.c b/Pico/sound/mix.c index 8e4a631..4d68f1d 100644 --- a/Pico/sound/mix.c +++ b/Pico/sound/mix.c @@ -8,22 +8,6 @@ } - - -void memcpy32(int *dest, int *src, int count) -{ - while (count--) - *dest++ = *src++; -} - - -void memset32(int *dest, int c, int count) -{ - while (count--) - *dest++ = c; -} - - void mix_32_to_16l_stereo(short *dest, int *src, int count) { int l, r; @@ -55,3 +39,16 @@ void mix_32_to_16_mono(short *dest, int *src, int count) } +/* unimplemented... */ +void mix_16h_to_32(int *dest_buf, short *mp3_buf, int count) +{ +} + +void mix_16h_to_32_s1(int *dest_buf, short *mp3_buf, int count) +{ +} + +void mix_16h_to_32_s2(int *dest_buf, short *mp3_buf, int count) +{ +} +