|
FFmpeg
|
ALSA input and output: common code. More...
#include <alsa/asoundlib.h>#include "avdevice.h"#include "libavutil/avassert.h"#include "libavutil/channel_layout.h"#include "alsa.h"Functions | |
| MAKE_REORDER_FUNCS (5, out_50, out [0]=in[0];out[1]=in[1];out[2]=in[3];out[3]=in[4];out[4]=in[2];) | |
| av_cold int | ff_alsa_open (AVFormatContext *ctx, snd_pcm_stream_t mode, unsigned int *sample_rate, int channels, enum AVCodecID *codec_id) |
| Open an ALSA PCM. More... | |
| av_cold int | ff_alsa_close (AVFormatContext *s1) |
| Close the ALSA PCM. More... | |
| int | ff_alsa_xrun_recover (AVFormatContext *s1, int err) |
| Try to recover from ALSA buffer underrun. More... | |
| int | ff_alsa_extend_reorder_buf (AlsaData *s, int min_size) |
| int | ff_alsa_get_device_list (AVDeviceInfoList *device_list, snd_pcm_stream_t stream_type) |
ALSA input and output: common code.
| #define MAKE_REORDER_FUNC | ( | NAME, | |
| TYPE, | |||
| CHANNELS, | |||
| LAYOUT, | |||
| MAP | |||
| ) |
| #define MAKE_REORDER_FUNCS | ( | CHANNELS, | |
| LAYOUT, | |||
| MAP | |||
| ) |
| #define PICK_REORDER | ( | layout | ) |
| av_cold int ff_alsa_close | ( | AVFormatContext * | s1 | ) |
Close the ALSA PCM.
| s1 | media file handle |
| av_cold int ff_alsa_open | ( | AVFormatContext * | s, |
| snd_pcm_stream_t | mode, | ||
| unsigned int * | sample_rate, | ||
| int | channels, | ||
| enum AVCodecID * | codec_id | ||
| ) |
Open an ALSA PCM.
| s | media file handle |
| mode | either SND_PCM_STREAM_CAPTURE or SND_PCM_STREAM_PLAYBACK |
| sample_rate | in: requested sample rate; out: actually selected sample rate |
| channels | number of channels |
| codec_id | in: requested AVCodecID or AV_CODEC_ID_NONE; out: actually selected AVCodecID, changed only if AV_CODEC_ID_NONE was requested |
| int ff_alsa_xrun_recover | ( | AVFormatContext * | s1, |
| int | err | ||
| ) |
Try to recover from ALSA buffer underrun.
| s1 | media file handle |
| err | error code reported by the previous ALSA call |
1.8.12