00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019 #ifndef AVFILTER_ASRC_ABUFFER_H
00020 #define AVFILTER_ASRC_ABUFFER_H
00021
00022 #include "avfilter.h"
00023
00046 attribute_deprecated
00047 int av_asrc_buffer_add_samples(AVFilterContext *abuffersrc,
00048 uint8_t *data[8], int linesize[8],
00049 int nb_samples, int sample_rate,
00050 int sample_fmt, int64_t ch_layout, int planar,
00051 int64_t pts, int av_unused flags);
00052
00070 attribute_deprecated
00071 int av_asrc_buffer_add_buffer(AVFilterContext *abuffersrc,
00072 uint8_t *buf, int buf_size,
00073 int sample_rate,
00074 int sample_fmt, int64_t ch_layout, int planar,
00075 int64_t pts, int av_unused flags);
00076
00086 attribute_deprecated
00087 int av_asrc_buffer_add_audio_buffer_ref(AVFilterContext *abuffersrc,
00088 AVFilterBufferRef *samplesref,
00089 int av_unused flags);
00090
00091 #endif