summaryrefslogtreecommitdiff
path: root/libavfilter/audio.h
diff options
context:
space:
mode:
authorAndreas Cadhalpun <Andreas.Cadhalpun@googlemail.com>2015-08-08 10:41:31 +0200
committerAndreas Cadhalpun <Andreas.Cadhalpun@googlemail.com>2015-08-08 21:58:48 +0200
commit8bd74aafe85c426c8d9ac0aefa7ae860cf3be735 (patch)
treea38dd4b819c86f9c27cf869f7aa77d09936ca879 /libavfilter/audio.h
parent2e9c8be8342c10a6cc3a124298e27a5d2234512f (diff)
avfilter: remove obsolete function declarations
Reviewed-by: Michael Niedermayer <michael@niedermayer.cc> Signed-off-by: Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com>
Diffstat (limited to 'libavfilter/audio.h')
-rw-r--r--libavfilter/audio.h20
1 files changed, 0 insertions, 20 deletions
diff --git a/libavfilter/audio.h b/libavfilter/audio.h
index 3335c96eca..6adc82dc81 100644
--- a/libavfilter/audio.h
+++ b/libavfilter/audio.h
@@ -60,24 +60,4 @@ AVFrame *ff_null_get_audio_buffer(AVFilterLink *link, int nb_samples);
*/
AVFrame *ff_get_audio_buffer(AVFilterLink *link, int nb_samples);
-/**
- * Send a buffer of audio samples to the next filter.
- *
- * @param link the output link over which the audio samples are being sent
- * @param 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.
- *
- * @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);
-
-/**
- * Send a buffer of audio samples to the next link, without checking
- * min_samples.
- */
-int ff_filter_samples_framed(AVFilterLink *link,
- AVFilterBufferRef *samplesref);
-
#endif /* AVFILTER_AUDIO_H */