libavfilter/src_buffer.c
cf13f204
 /*
  * Copyright (c) 2008 Vitor Sessak
7ad0d986
  * Copyright (c) 2010 S.N. Hemanth Meenakshisundaram
  * Copyright (c) 2011 Mina Nagy Zaki
cf13f204
  *
  * This file is part of FFmpeg.
  *
  * FFmpeg is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public
  * License as published by the Free Software Foundation; either
  * version 2.1 of the License, or (at your option) any later version.
  *
  * FFmpeg is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
  * License along with FFmpeg; if not, write to the Free Software
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
b5634e45
 /**
  * @file
  * memory buffer source filter
  */
 
cf13f204
 #include "avfilter.h"
e26782a9
 #include "internal.h"
4522df52
 #include "audio.h"
566666ca
 #include "avcodec.h"
e1d9dbf2
 #include "buffersrc.h"
7ad0d986
 #include "asrc_abuffer.h"
 #include "libavutil/avstring.h"
1acd2f6b
 #include "libavutil/channel_layout.h"
95587d29
 #include "libavutil/fifo.h"
7ffe76e5
 #include "libavutil/imgutils.h"
cf13f204
 
 typedef struct {
95587d29
     AVFifoBuffer     *fifo;
7ad0d986
     AVRational        time_base;     ///< time_base to set in the output link
     int eof;
     unsigned          nb_failed_requests;
 
     /* Video only */
     AVFilterContext  *scale;
9164afcb
     int               h, w;
ac627b3d
     enum AVPixelFormat  pix_fmt;
35fe66ab
     AVRational        sample_aspect_ratio;
a38cdfde
     char              sws_param[256];
7ad0d986
 
     /* Audio only */
     // Audio format of incoming buffers
     int sample_rate;
     unsigned int sample_format;
     int64_t channel_layout;
 
     // Normalization filters
     AVFilterContext *aconvert;
     AVFilterContext *aresample;
cf13f204
 } BufferSourceContext;
 
75e0324e
 static void buf_free(AVFilterBuffer *ptr)
 {
     av_free(ptr);
     return;
 }
 
7ad0d986
 int av_asrc_buffer_add_audio_buffer_ref(AVFilterContext *ctx,
                                         AVFilterBufferRef *samplesref,
                                         int av_unused flags)
 {
f8d58c59
     return av_buffersrc_add_ref(ctx, samplesref, AV_BUFFERSRC_FLAG_NO_COPY);
7ad0d986
 }
 
 int av_asrc_buffer_add_samples(AVFilterContext *ctx,
                                uint8_t *data[8], int linesize[8],
                                int nb_samples, int sample_rate,
                                int sample_fmt, int64_t channel_layout, int planar,
                                int64_t pts, int av_unused flags)
 {
     AVFilterBufferRef *samplesref;
 
2eb2e179
     if (!channel_layout)
         return AVERROR(EINVAL);
7ad0d986
     samplesref = avfilter_get_audio_buffer_ref_from_arrays(
47aae2bc
                      data, linesize[0], AV_PERM_WRITE,
7ad0d986
                      nb_samples,
47aae2bc
                      sample_fmt, channel_layout);
7ad0d986
     if (!samplesref)
         return AVERROR(ENOMEM);
 
     samplesref->buf->free  = buf_free;
     samplesref->pts = pts;
     samplesref->audio->sample_rate = sample_rate;
 
675e83bb
     AV_NOWARN_DEPRECATED(
7ad0d986
     return av_asrc_buffer_add_audio_buffer_ref(ctx, samplesref, 0);
675e83bb
     )
7ad0d986
 }
 
 int av_asrc_buffer_add_buffer(AVFilterContext *ctx,
                               uint8_t *buf, int buf_size, int sample_rate,
                               int sample_fmt, int64_t channel_layout, int planar,
                               int64_t pts, int av_unused flags)
 {
     uint8_t *data[8] = {0};
     int linesize[8];
     int nb_channels = av_get_channel_layout_nb_channels(channel_layout),
         nb_samples  = buf_size / nb_channels / av_get_bytes_per_sample(sample_fmt);
 
     av_samples_fill_arrays(data, linesize,
                            buf, nb_channels, nb_samples,
                            sample_fmt, 16);
 
675e83bb
     AV_NOWARN_DEPRECATED(
7ad0d986
     return av_asrc_buffer_add_samples(ctx,
                                       data, linesize, nb_samples,
                                       sample_rate,
                                       sample_fmt, channel_layout, planar,
                                       pts, flags);
675e83bb
     )
7ad0d986
 }