aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/line6/capture.h
diff options
context:
space:
mode:
authorMarkus Grabner <grabner@icg.tugraz.at>2012-01-19 18:09:09 -0500
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2012-02-09 12:14:35 -0500
commit0ca54888060135806d5567f47a6ad54be5297b34 (patch)
tree7272ae6aa3d0db4b4f4645dbcd7c9efcdf4521a0 /drivers/staging/line6/capture.h
parent12177acdecfcb538b86590036a56fc47b443e135 (diff)
staging: line6: separate handling of buffer allocation and stream startup
There are several features of the Line6 USB driver which require PCM data to be exchanged with the device: *) PCM playback and capture via ALSA *) software monitoring (for devices without hardware monitoring) *) optional impulse response measurement However, from the device's point of view, there is just a single capture and playback stream, which must be shared between these subsystems. It is therefore necessary to maintain the state of the subsystems with respect to PCM usage. We define several constants of the form LINE6_BIT_PCM_<subsystem>_<direction>_<resource> with the following meanings: *) <subsystem> is one of -) ALSA: PCM playback and capture via ALSA -) MONITOR: software monitoring -) IMPULSE: optional impulse response measurement *) <direction> is one of -) PLAYBACK: audio output (from host to device) -) CAPTURE: audio input (from device to host) *) <resource> is one of -) BUFFER: buffer required by PCM data stream -) STREAM: actual PCM data stream The subsystems call line6_pcm_acquire() to acquire the (shared) resources needed for a particular operation (e.g., allocate the buffer for ALSA playback or start the capture stream for software monitoring). When a resource is no longer needed, it is released by calling line6_pcm_release(). Buffer allocation and stream startup are handled separately to allow the ALSA kernel driver to perform them at appropriate places (since the callback which starts a PCM stream is not allowed to sleep). Signed-off-by: Markus Grabner <grabner@icg.tugraz.at> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/line6/capture.h')
-rw-r--r--drivers/staging/line6/capture.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/line6/capture.h b/drivers/staging/line6/capture.h
index 366cbaa7c88..4157bcb598a 100644
--- a/drivers/staging/line6/capture.h
+++ b/drivers/staging/line6/capture.h
@@ -19,7 +19,6 @@
19 19
20extern struct snd_pcm_ops snd_line6_capture_ops; 20extern struct snd_pcm_ops snd_line6_capture_ops;
21 21
22extern int line6_alloc_capture_buffer(struct snd_line6_pcm *line6pcm);
23extern void line6_capture_copy(struct snd_line6_pcm *line6pcm, char *fbuf, 22extern void line6_capture_copy(struct snd_line6_pcm *line6pcm, char *fbuf,
24 int fsize); 23 int fsize);
25extern void line6_capture_check_period(struct snd_line6_pcm *line6pcm, 24extern void line6_capture_check_period(struct snd_line6_pcm *line6pcm,
@@ -30,6 +29,7 @@ extern int line6_submit_audio_in_all_urbs(struct snd_line6_pcm *line6pcm);
30extern void line6_unlink_audio_in_urbs(struct snd_line6_pcm *line6pcm); 29extern void line6_unlink_audio_in_urbs(struct snd_line6_pcm *line6pcm);
31extern void line6_unlink_wait_clear_audio_in_urbs(struct snd_line6_pcm 30extern void line6_unlink_wait_clear_audio_in_urbs(struct snd_line6_pcm
32 *line6pcm); 31 *line6pcm);
32extern void line6_wait_clear_audio_in_urbs(struct snd_line6_pcm *line6pcm);
33extern int snd_line6_capture_trigger(struct snd_line6_pcm *line6pcm, int cmd); 33extern int snd_line6_capture_trigger(struct snd_line6_pcm *line6pcm, int cmd);
34 34
35#endif 35#endif