Searched defs:src_format (Results 1 - 3 of 3) sorted by relevance

/external/qemu/distrib/sdl-1.2.12/include/
H A DSDL_audio.h83 Uint16 src_format; /* Source audio format */ member in struct:SDL_AudioCVT
209 Uint16 src_format, Uint8 src_channels, int src_rate,
/external/qemu/distrib/sdl-1.2.12/src/video/fbcon/
H A DSDL_fb3dfx.c98 Uint32 src_format; local
118 src_format = src->pitch | ((bpp+((bpp==8) ? 0 : 8)) << 13);
153 tdfx_out32(SRCFORMAT, src_format);
155 tdfx_out32(DSTFORMAT, src_format);
/external/qemu/distrib/sdl-1.2.12/src/audio/
H A DSDL_audiocvt.c1318 cvt->filters[0](cvt, cvt->src_format);
1328 Uint16 src_format, Uint8 src_channels, int src_rate,
1332 src_format, dst_format, src_channels, dst_channels, src_rate, dst_rate);*/
1341 if ( (src_format & 0x1000) != (dst_format & 0x1000)
1342 && ((src_format & 0xff) == 16) && ((dst_format & 0xff) == 16)) {
1347 if ( (src_format & 0x8000) != (dst_format & 0x8000) ) {
1352 if ( (src_format & 0xFF) != (dst_format & 0xFF) ) {
1503 cvt->src_format = src_format;
1327 SDL_BuildAudioCVT(SDL_AudioCVT *cvt, Uint16 src_format, Uint8 src_channels, int src_rate, Uint16 dst_format, Uint8 dst_channels, int dst_rate) argument

Completed in 81 milliseconds