33 lines
1.4 KiB
C
33 lines
1.4 KiB
C
$NetBSD: patch-include_pcm.h,v 1.3 2012/03/08 04:04:19 sbd Exp $
|
|
|
|
--- include/pcm.h.orig 2009-12-16 15:18:51.000000000 +0000
|
|
+++ include/pcm.h
|
|
@@ -456,7 +456,9 @@ int snd_pcm_wait(snd_pcm_t *pcm, int tim
|
|
int snd_pcm_link(snd_pcm_t *pcm1, snd_pcm_t *pcm2);
|
|
int snd_pcm_unlink(snd_pcm_t *pcm);
|
|
|
|
+/*
|
|
//int snd_pcm_mixer_element(snd_pcm_t *pcm, snd_mixer_t *mixer, snd_mixer_elem_t **elem);
|
|
+ */
|
|
|
|
/*
|
|
* application helpers - these functions are implemented on top
|
|
@@ -920,10 +922,17 @@ int snd_pcm_format_width(snd_pcm_format_
|
|
int snd_pcm_format_physical_width(snd_pcm_format_t format); /* in bits */
|
|
snd_pcm_format_t snd_pcm_build_linear_format(int width, int pwidth, int unsignd, int big_endian);
|
|
ssize_t snd_pcm_format_size(snd_pcm_format_t format, size_t samples);
|
|
+#ifdef __sun
|
|
+uint8_t snd_pcm_format_silence(snd_pcm_format_t format);
|
|
+uint16_t snd_pcm_format_silence_16(snd_pcm_format_t format);
|
|
+uint32_t snd_pcm_format_silence_32(snd_pcm_format_t format);
|
|
+uint64_t snd_pcm_format_silence_64(snd_pcm_format_t format);
|
|
+#else
|
|
u_int8_t snd_pcm_format_silence(snd_pcm_format_t format);
|
|
u_int16_t snd_pcm_format_silence_16(snd_pcm_format_t format);
|
|
u_int32_t snd_pcm_format_silence_32(snd_pcm_format_t format);
|
|
u_int64_t snd_pcm_format_silence_64(snd_pcm_format_t format);
|
|
+#endif
|
|
int snd_pcm_format_set_silence(snd_pcm_format_t format, void *buf, unsigned int samples);
|
|
|
|
snd_pcm_sframes_t snd_pcm_bytes_to_frames(snd_pcm_t *pcm, ssize_t bytes);
|