|
@@ -381,13 +381,6 @@ void audio_pcm_info_clear_buf (struct audio_pcm_info *info, void *buf, int len)
|
|
/*
|
|
/*
|
|
* Capture
|
|
* Capture
|
|
*/
|
|
*/
|
|
-static void noop_conv (struct st_sample *dst, const void *src, int samples)
|
|
|
|
-{
|
|
|
|
- (void) src;
|
|
|
|
- (void) dst;
|
|
|
|
- (void) samples;
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
static CaptureVoiceOut *audio_pcm_capture_find_specific(AudioState *s,
|
|
static CaptureVoiceOut *audio_pcm_capture_find_specific(AudioState *s,
|
|
struct audsettings *as)
|
|
struct audsettings *as)
|
|
{
|
|
{
|
|
@@ -485,7 +478,6 @@ static int audio_attach_capture (HWVoiceOut *hw)
|
|
sw->info = hw->info;
|
|
sw->info = hw->info;
|
|
sw->empty = 1;
|
|
sw->empty = 1;
|
|
sw->active = hw->enabled;
|
|
sw->active = hw->enabled;
|
|
- sw->conv = noop_conv;
|
|
|
|
sw->ratio = ((int64_t) hw_cap->info.freq << 32) / sw->info.freq;
|
|
sw->ratio = ((int64_t) hw_cap->info.freq << 32) / sw->info.freq;
|
|
sw->vol = nominal_volume;
|
|
sw->vol = nominal_volume;
|
|
sw->rate = st_rate_start (sw->info.freq, hw_cap->info.freq);
|
|
sw->rate = st_rate_start (sw->info.freq, hw_cap->info.freq);
|