Codebase list alsa-lib / 6633460
Clemens Ladisch <clemens@ladisch.de> fix some wrong section/file/reference names Jaroslav Kysela 20 years ago
5 changed file(s) with 14 addition(s) and 5 deletion(s). Raw diff Collapse all Expand all
00 (princ "Hello ALSA world\n")
11 (princ "One " 1 "\n")
22 (princ "Two " (+ 1 1) "\n")
3
4 (defun myprinc (o) (princ o))
5 (myprinc "Printed via myprinc function!\n")
6
7 (defun printnum (from to) (while (<= from to) (princ " " from) (setq from (+ from 1))))
8 (princ "Numbers 1-10: ") (printnum 1 10) (princ "\n")
9
10 (defun factorial (n) (when (> n 0) (* n (factorial (- n 1)))))
11 (princ "Factorial of 10: " (factorial 10) "\n")
10921092 }
10931093 \endcode
10941094
1095 \subsection pcm_plugins_hw_funcref Function reference
1095 \subsection pcm_plugins_dmix_funcref Function reference
10961096
10971097 <UL>
10981098 <LI>snd_pcm_dmix_open()
884884 }
885885 \endcode
886886
887 \subsection pcm_plugins_hw_funcref Function reference
887 \subsection pcm_plugins_dshare_funcref Function reference
888888
889889 <UL>
890890 <LI>snd_pcm_dshare_open()
00 /**
1 * \file pcm/pcm_snoop.c
1 * \file pcm/pcm_dsnoop.c
22 * \ingroup PCM_Plugins
33 * \brief PCM Capture Stream Snooping (dsnoop) Plugin Interface
44 * \author Jaroslav Kysela <perex@suse.cz>
836836 }
837837 \endcode
838838
839 \subsection pcm_plugins_hw_funcref Function reference
839 \subsection pcm_plugins_dsnoop_funcref Function reference
840840
841841 <UL>
842842 <LI>snd_pcm_dsnoop_open()
15001500 to each channel is exlusive (samples are not mixed together). It means, if
15011501 the channel zero is used with first client, the channel cannot be used with
15021502 second one. If you are looking for a mixing plugin, use the
1503 \ref pcm_plugins_smix "smix plugin".
1503 \ref pcm_plugins_dmix "dmix plugin".
15041504
15051505 \code
15061506 pcm.name {