Lines Matching full:uint16
30 void SDLCALL SDL_ConvertMono(SDL_AudioCVT *cvt, Uint16 format)
75 sample = (Uint16)((src[0]<<8)|src[1])+
76 (Uint16)((src[2]<<8)|src[3]);
86 sample = (Uint16)((src[1]<<8)|src[0])+
87 (Uint16)((src[3]<<8)|src[2]);
137 void SDLCALL SDL_ConvertStrip(SDL_AudioCVT *cvt, Uint16 format)
182 lsample = (Uint16)((src[0]<<8)|src[1]);
183 rsample = (Uint16)((src[2]<<8)|src[3]);
195 lsample = (Uint16)((src[1]<<8)|src[0]);
196 rsample = (Uint16)((src[3]<<8)|src[2]);
253 void SDLCALL SDL_ConvertStrip_2(SDL_AudioCVT *cvt, Uint16 format)
298 lsample = (Uint16)((src[0]<<8)|src[1]);
299 rsample = (Uint16)((src[2]<<8)|src[3]);
311 lsample = (Uint16)((src[1]<<8)|src[0]);
312 rsample = (Uint16)((src[3]<<8)|src[2]);
368 void SDLCALL SDL_ConvertStereo(SDL_AudioCVT *cvt, Uint16 format)
376 Uint16 *src, *dst;
378 src = (Uint16 *)(cvt->buf+cvt->len_cvt);
379 dst = (Uint16 *)(cvt->buf+cvt->len_cvt*2);
406 void SDLCALL SDL_ConvertSurround(SDL_AudioCVT *cvt, Uint16 format)
459 Uint16 lf, rf, ce, lr, rr;
468 lf = (Uint16)((src[0]<<8)|src[1]);
469 rf = (Uint16)((src[2]<<8)|src[3]);
492 lf = (Uint16)((src[1]<<8)|src[0]);
493 rf = (Uint16)((src[3]<<8)|src[2]);
583 void SDLCALL SDL_ConvertSurround_4(SDL_AudioCVT *cvt, Uint16 format)
632 Uint16 lf, rf, ce, lr, rr;
641 lf = (Uint16)((src[0]<<8)|src[1]);
642 rf = (Uint16)((src[2]<<8)|src[3]);
660 lf = (Uint16)((src[1]<<8)|src[0]);
661 rf = (Uint16)((src[3]<<8)|src[2]);
736 void SDLCALL SDL_Convert16LSB(SDL_AudioCVT *cvt, Uint16 format)
759 void SDLCALL SDL_Convert16MSB(SDL_AudioCVT *cvt, Uint16 format)
783 void SDLCALL SDL_Convert8(SDL_AudioCVT *cvt, Uint16 format)
809 void SDLCALL SDL_ConvertSign(SDL_AudioCVT *cvt, Uint16 format)
838 void SDLCALL SDL_ConvertEndian(SDL_AudioCVT *cvt, Uint16 format)
860 void SDLCALL SDL_RateMUL2(SDL_AudioCVT *cvt, Uint16 format)
898 void SDLCALL SDL_RateMUL2_c2(SDL_AudioCVT *cvt, Uint16 format)
941 void SDLCALL SDL_RateMUL2_c4(SDL_AudioCVT *cvt, Uint16 format)
997 void SDLCALL SDL_RateMUL2_c6(SDL_AudioCVT *cvt, Uint16 format)
1064 void SDLCALL SDL_RateDIV2(SDL_AudioCVT *cvt, Uint16 format)
1099 void SDLCALL SDL_RateDIV2_c2(SDL_AudioCVT *cvt, Uint16 format)
1137 void SDLCALL SDL_RateDIV2_c4(SDL_AudioCVT *cvt, Uint16 format)
1180 void SDLCALL SDL_RateDIV2_c6(SDL_AudioCVT *cvt, Uint16 format)
1229 void SDLCALL SDL_RateSLOW(SDL_AudioCVT *cvt, Uint16 format)
1254 Uint16 *output;
1257 output = (Uint16 *)cvt->buf;
1260 *output=((Uint16 *)cvt->buf)[(int)ipos];
1283 Uint16 *output;
1286 output = (Uint16 *)(cvt->buf+clen);
1291 *output=((Uint16 *)cvt->buf)[(int)ipos];
1328 Uint16 src_format, Uint8 src_channels, int src_rate,
1329 Uint16 dst_format, Uint8 dst_channels, int dst_rate)
1442 void (SDLCALL *rate_cvt)(SDL_AudioCVT *cvt, Uint16 format);