mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2026-05-17 09:58:06 +02:00
- As discussed on alsa-devel it's probably better to initialize the buffer size first, followed by the period size. If that fails try the other way round. If that fails try to configure only buffer size. If that fails try to configure only period size. Finally, try to configure neither. - Don't require integral periods anymore. Both of these changes should help improving compatibility with various weirder sound devices, such as TV cards.
144 lines
5.9 KiB
C
144 lines
5.9 KiB
C
#ifndef fooalsautilhfoo
|
|
#define fooalsautilhfoo
|
|
|
|
/***
|
|
This file is part of PulseAudio.
|
|
|
|
Copyright 2004-2006 Lennart Poettering
|
|
Copyright 2006 Pierre Ossman <ossman@cendio.se> for Cendio AB
|
|
|
|
PulseAudio is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU Lesser General Public License as published
|
|
by the Free Software Foundation; either version 2.1 of the License,
|
|
or (at your option) any later version.
|
|
|
|
PulseAudio is distributed in the hope that it will be useful, but
|
|
WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Lesser General Public License
|
|
along with PulseAudio; if not, write to the Free Software
|
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
|
|
USA.
|
|
***/
|
|
|
|
#include <asoundlib.h>
|
|
|
|
#include <pulse/sample.h>
|
|
#include <pulse/volume.h>
|
|
#include <pulse/mainloop-api.h>
|
|
#include <pulse/channelmap.h>
|
|
#include <pulse/proplist.h>
|
|
#include <pulse/volume.h>
|
|
|
|
#include <pulsecore/llist.h>
|
|
#include <pulsecore/rtpoll.h>
|
|
#include <pulsecore/core.h>
|
|
#include <pulsecore/log.h>
|
|
|
|
#include "alsa-mixer.h"
|
|
|
|
int pa_alsa_set_hw_params(
|
|
snd_pcm_t *pcm_handle,
|
|
pa_sample_spec *ss, /* modified at return */
|
|
snd_pcm_uframes_t *period_size, /* modified at return */
|
|
snd_pcm_uframes_t *buffer_size, /* modified at return */
|
|
snd_pcm_uframes_t tsched_size,
|
|
pa_bool_t *use_mmap, /* modified at return */
|
|
pa_bool_t *use_tsched, /* modified at return */
|
|
pa_bool_t require_exact_channel_number);
|
|
|
|
int pa_alsa_set_sw_params(
|
|
snd_pcm_t *pcm,
|
|
snd_pcm_uframes_t avail_min);
|
|
|
|
/* Picks a working mapping from the profile set based on the specified ss/map */
|
|
snd_pcm_t *pa_alsa_open_by_device_id_auto(
|
|
const char *dev_id,
|
|
char **dev, /* modified at return */
|
|
pa_sample_spec *ss, /* modified at return */
|
|
pa_channel_map* map, /* modified at return */
|
|
int mode,
|
|
snd_pcm_uframes_t *period_size, /* modified at return */
|
|
snd_pcm_uframes_t *buffer_size, /* modified at return */
|
|
snd_pcm_uframes_t tsched_size,
|
|
pa_bool_t *use_mmap, /* modified at return */
|
|
pa_bool_t *use_tsched, /* modified at return */
|
|
pa_alsa_profile_set *ps,
|
|
pa_alsa_mapping **mapping); /* modified at return */
|
|
|
|
/* Uses the specified mapping */
|
|
snd_pcm_t *pa_alsa_open_by_device_id_mapping(
|
|
const char *dev_id,
|
|
char **dev, /* modified at return */
|
|
pa_sample_spec *ss, /* modified at return */
|
|
pa_channel_map* map, /* modified at return */
|
|
int mode,
|
|
snd_pcm_uframes_t *period_size, /* modified at return */
|
|
snd_pcm_uframes_t *buffer_size, /* modified at return */
|
|
snd_pcm_uframes_t tsched_size,
|
|
pa_bool_t *use_mmap, /* modified at return */
|
|
pa_bool_t *use_tsched, /* modified at return */
|
|
pa_alsa_mapping *mapping);
|
|
|
|
/* Opens the explicit ALSA device */
|
|
snd_pcm_t *pa_alsa_open_by_device_string(
|
|
const char *dir,
|
|
char **dev, /* modified at return */
|
|
pa_sample_spec *ss, /* modified at return */
|
|
pa_channel_map* map, /* modified at return */
|
|
int mode,
|
|
snd_pcm_uframes_t *period_size, /* modified at return */
|
|
snd_pcm_uframes_t *buffer_size, /* modified at return */
|
|
snd_pcm_uframes_t tsched_size,
|
|
pa_bool_t *use_mmap, /* modified at return */
|
|
pa_bool_t *use_tsched, /* modified at return */
|
|
pa_bool_t require_exact_channel_number);
|
|
|
|
/* Opens the explicit ALSA device with a fallback list */
|
|
snd_pcm_t *pa_alsa_open_by_template(
|
|
char **template,
|
|
const char *dev_id,
|
|
char **dev, /* modified at return */
|
|
pa_sample_spec *ss, /* modified at return */
|
|
pa_channel_map* map, /* modified at return */
|
|
int mode,
|
|
snd_pcm_uframes_t *period_size, /* modified at return */
|
|
snd_pcm_uframes_t *buffer_size, /* modified at return */
|
|
snd_pcm_uframes_t tsched_size,
|
|
pa_bool_t *use_mmap, /* modified at return */
|
|
pa_bool_t *use_tsched, /* modified at return */
|
|
pa_bool_t require_exact_channel_number);
|
|
|
|
void pa_alsa_dump(pa_log_level_t level, snd_pcm_t *pcm);
|
|
void pa_alsa_dump_status(snd_pcm_t *pcm);
|
|
|
|
void pa_alsa_refcnt_inc(void);
|
|
void pa_alsa_refcnt_dec(void);
|
|
|
|
void pa_alsa_init_proplist_pcm_info(pa_core *c, pa_proplist *p, snd_pcm_info_t *pcm_info);
|
|
void pa_alsa_init_proplist_card(pa_core *c, pa_proplist *p, int card);
|
|
void pa_alsa_init_proplist_pcm(pa_core *c, pa_proplist *p, snd_pcm_t *pcm);
|
|
void pa_alsa_init_proplist_ctl(pa_proplist *p, const char *name);
|
|
pa_bool_t pa_alsa_init_description(pa_proplist *p);
|
|
|
|
int pa_alsa_recover_from_poll(snd_pcm_t *pcm, int revents);
|
|
|
|
pa_rtpoll_item* pa_alsa_build_pollfd(snd_pcm_t *pcm, pa_rtpoll *rtpoll);
|
|
|
|
snd_pcm_sframes_t pa_alsa_safe_avail(snd_pcm_t *pcm, size_t hwbuf_size, const pa_sample_spec *ss);
|
|
int pa_alsa_safe_delay(snd_pcm_t *pcm, snd_pcm_sframes_t *delay, size_t hwbuf_size, const pa_sample_spec *ss);
|
|
int pa_alsa_safe_mmap_begin(snd_pcm_t *pcm, const snd_pcm_channel_area_t **areas, snd_pcm_uframes_t *offset, snd_pcm_uframes_t *frames, size_t hwbuf_size, const pa_sample_spec *ss);
|
|
|
|
char *pa_alsa_get_driver_name(int card);
|
|
char *pa_alsa_get_driver_name_by_pcm(snd_pcm_t *pcm);
|
|
|
|
char *pa_alsa_get_reserve_name(const char *device);
|
|
|
|
pa_bool_t pa_alsa_pcm_is_hw(snd_pcm_t *pcm);
|
|
pa_bool_t pa_alsa_pcm_is_modem(snd_pcm_t *pcm);
|
|
|
|
const char* pa_alsa_strerror(int errnum);
|
|
|
|
#endif
|