summaryrefslogtreecommitdiff
path: root/libavfilter/audio.h
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2012-11-28 13:53:48 +0100
committerMichael Niedermayer <michaelni@gmx.at>2012-11-28 16:43:34 +0100
commitcd7febd33f20b42aac14cf9cb87efdf619b39b0a (patch)
tree6826129a1f327836e1c980449b2fa7308307b615 /libavfilter/audio.h
parent16af29a7a6deff3f6081fca1e36ad96cf8fec77d (diff)
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.h4
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 */