diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-11-28 13:53:48 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-11-28 16:43:34 +0100 |
commit | cd7febd33f20b42aac14cf9cb87efdf619b39b0a (patch) | |
tree | 6826129a1f327836e1c980449b2fa7308307b615 /libavfilter/audio.h | |
parent | 16af29a7a6deff3f6081fca1e36ad96cf8fec77d (diff) | |
download | ffmpeg-cd7febd33f20b42aac14cf9cb87efdf619b39b0a.tar.gz |
lavfi: replace filter_samples by filter_frame
Based on patch by Anton Khirnov
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavfilter/audio.h')
-rw-r--r-- | libavfilter/audio.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavfilter/audio.h b/libavfilter/audio.h index a84c378ec8..35aa4e8a19 100644 --- a/libavfilter/audio.h +++ b/libavfilter/audio.h @@ -74,13 +74,13 @@ AVFilterBufferRef *ff_get_audio_buffer(AVFilterLink *link, int perms, * @return >= 0 on success, a negative AVERROR on error. The receiving filter * is responsible for unreferencing samplesref in case of error. */ -int ff_filter_samples(AVFilterLink *link, AVFilterBufferRef *samplesref); +int ff_filter_frame(AVFilterLink *link, AVFilterBufferRef *samplesref); /** * Send a buffer of audio samples to the next link, without checking * min_samples. */ -int ff_filter_samples_framed(AVFilterLink *link, +int ff_filter_frame_framed(AVFilterLink *link, AVFilterBufferRef *samplesref); #endif /* AVFILTER_AUDIO_H */ |