search for: snd_pcm_sfmt_s16_le

Displaying 2 results from an estimated 2 matches for "snd_pcm_sfmt_s16_le".

2000 Sep 05
1
[kcarnold@xiph.org: [xiph-cvs] cvs commit: vorbis/vorbis-tools/libao ao_alsa.c ao_oss.c audio_out.c audio_out.h]
...rieving revision 1.4 retrieving revision 1.4.2.1 diff -u -r1.4 -r1.4.2.1 --- ao_alsa.c 2000/08/22 13:47:55 1.4 +++ ao_alsa.c 2000/09/05 21:38:48 1.4.2.1 @@ -91,7 +91,8 @@ { case 8 : param.format.format = SND_PCM_SFMT_S8; break; - case 16 : param.format.format = SND_PCM_SFMT_S16_LE; + case 16 : param.format.format = ao_is_big_endian() ? + SND_PCM_SFMT_S16_BE : SND_PCM_SFMT_S16_LE; break; default : return NULL; } 1.1.4.2 +2 -2 vorbis/vorbis-tools/libao/ao_oss.c Index: ao_oss.c ===========================================...
2001 Mar 03
1
libao: alsa plugin won't compile
...CK' undeclared (first use in this function) ao_alsa.c:92: `SND_PCM_MODE_BLOCK' undeclared (first use in this function) ao_alsa.c:97: `SND_PCM_SFMT_S8' undeclared (first use in this function) ao_alsa.c:100: `SND_PCM_SFMT_S16_BE' undeclared (first use in this function) ao_alsa.c:100: `SND_PCM_SFMT_S16_LE' undeclared (first use in this function) ao_alsa.c:121: `SND_PCM_START_FULL' undeclared (first use in this function) ao_alsa.c:123: `SND_PCM_STOP_STOP' undeclared (first use in this function) ao_alsa.c:133: `SND_PCM_OPEN_PLAYBACK' undeclared (first use in this function) ao_alsa.c:13...