|
FFmpeg
|
Go to the source code of this file.
Functions | |
| AVFrame * | ff_default_get_audio_buffer (AVFilterLink *link, int nb_samples) |
| default handler for get_audio_buffer() for audio inputs More... | |
| AVFrame * | ff_null_get_audio_buffer (AVFilterLink *link, int nb_samples) |
| get_audio_buffer() handler for filters which simply pass audio along More... | |
| AVFrame * | ff_get_audio_buffer (AVFilterLink *link, int nb_samples) |
| Request an audio samples buffer with a specific set of permissions. More... | |
| int | ff_filter_samples (AVFilterLink *link, AVFilterBufferRef *samplesref) |
| Send a buffer of audio samples to the next filter. More... | |
| int | ff_filter_samples_framed (AVFilterLink *link, AVFilterBufferRef *samplesref) |
| Send a buffer of audio samples to the next link, without checking min_samples. More... | |
Variables | |
| static enum AVSampleFormat | ff_packed_sample_fmts_array [] |
| static enum AVSampleFormat | ff_planar_sample_fmts_array [] |
| AVFrame* ff_default_get_audio_buffer | ( | AVFilterLink * | link, |
| int | nb_samples | ||
| ) |
default handler for get_audio_buffer() for audio inputs
Definition at line 41 of file audio.c.
Referenced by ff_get_audio_buffer().
| AVFrame* ff_null_get_audio_buffer | ( | AVFilterLink * | link, |
| int | nb_samples | ||
| ) |
get_audio_buffer() handler for filters which simply pass audio along
Definition at line 36 of file audio.c.
Referenced by init().
| AVFrame* ff_get_audio_buffer | ( | AVFilterLink * | link, |
| int | nb_samples | ||
| ) |
Request an audio samples buffer with a specific set of permissions.
| link | the output link to the filter from which the buffer will be requested |
| nb_samples | the number of samples per channel |
Definition at line 70 of file audio.c.
Referenced by compand_delay(), compand_drain(), compand_nodelay(), ff_filter_frame_framed(), ff_filter_frame_needs_framing(), ff_null_get_audio_buffer(), filter_frame(), flush_frame(), get_audio_buffer(), output_frame(), push_samples(), read_from_fifo(), request_frame(), return_audio_frame(), and send_silence().
| int ff_filter_samples | ( | AVFilterLink * | link, |
| AVFilterBufferRef * | samplesref | ||
| ) |
Send a buffer of audio samples to the next filter.
| link | the output link over which the audio samples are being sent |
| samplesref | a reference to the buffer of audio samples being sent. The receiving filter will free this reference when it no longer needs it or pass it on to the next filter. |
| int ff_filter_samples_framed | ( | AVFilterLink * | link, |
| AVFilterBufferRef * | samplesref | ||
| ) |
Send a buffer of audio samples to the next link, without checking min_samples.
|
static |
Definition at line 28 of file audio.h.
Referenced by query_formats().
|
static |
1.8.6