FFmpeg
Loading...
Searching...
No Matches
af_acopy.c
Go to the documentation of this file.
1/*
2 * This file is part of FFmpeg.
3 *
4 * FFmpeg is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
8 *
9 * FFmpeg is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
13 *
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with FFmpeg; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17 */
18
19#include "audio.h"
20#include "avfilter.h"
21#include "filters.h"
22
23static int filter_frame(AVFilterLink *inlink, AVFrame *in)
24{
25 AVFilterLink *outlink = inlink->dst->outputs[0];
27 int ret;
28
29 if (!out) {
30 ret = AVERROR(ENOMEM);
31 goto fail;
32 }
33
34 ret = av_frame_copy_props(out, in);
35 if (ret < 0)
36 goto fail;
37 ret = av_frame_copy(out, in);
38 if (ret < 0)
39 goto fail;
40 av_frame_free(&in);
41 return ff_filter_frame(outlink, out);
42fail:
43 av_frame_free(&in);
45 return ret;
46}
47
48static const AVFilterPad acopy_inputs[] = {
49 {
50 .name = "default",
51 .type = AVMEDIA_TYPE_AUDIO,
52 .filter_frame = filter_frame,
53 },
54};
55
57 .p.name = "acopy",
58 .p.description = NULL_IF_CONFIG_SMALL("Copy the input audio unchanged to the output."),
62};
const FFFilter ff_af_acopy
Definition af_acopy.c:56
static int filter_frame(AVFilterLink *inlink, AVFrame *in)
Definition af_acopy.c:23
static const AVFilterPad acopy_inputs[]
Definition af_acopy.c:48
static FILE * out
const AVFilterPad ff_audio_default_filterpad[1]
An AVFilterPad array whose only entry has name "default" and is of type AVMEDIA_TYPE_AUDIO.
Definition audio.c:34
AVFrame * ff_get_audio_buffer(AVFilterLink *link, int nb_samples)
Request an audio samples buffer with a specific set of permissions.
Definition audio.c:74
int ff_filter_frame(AVFilterLink *link, AVFrame *frame)
Send a frame of data to the next filter.
Definition avfilter.c:1068
Main libavfilter public API header.
static int filter_frame(DBEDecodeContext *s, AVFrame *frame)
Definition dolby_e.c:1067
#define fail
Definition test.h:479
#define AVFILTER_FLAG_METADATA_ONLY
The filter is a "metadata" filter - it does not modify the frame data in any way.
Definition avfilter.h:182
#define AVERROR(e)
Definition error.h:45
void av_frame_free(AVFrame **frame)
Free the frame and any dynamically allocated objects in it, e.g.
Definition frame.c:64
int av_frame_copy_props(AVFrame *dst, const AVFrame *src)
Copy only "metadata" fields from src to dst.
Definition frame.c:599
int av_frame_copy(AVFrame *dst, const AVFrame *src)
Copy the frame data from src to dst.
Definition frame.c:711
@ AVMEDIA_TYPE_AUDIO
Definition avutil.h:201
#define FILTER_INPUTS(array)
Definition filters.h:264
#define FILTER_OUTPUTS(array)
Definition filters.h:265
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
Definition internal.h:88
AVFilterLink ** outputs
array of pointers to output links
Definition avfilter.h:285
A filter pad used for either input or output.
Definition filters.h:40
This structure describes decoded (raw) audio or video data.
Definition frame.h:472
int nb_samples
number of audio samples (per channel) described by this frame
Definition frame.h:552