]> git.sesse.net Git - ffmpeg/blob - libavfilter/buffersink.c
avprobe: add local per-file state
[ffmpeg] / libavfilter / buffersink.c
1 /*
2  * Copyright (c) 2011 Stefano Sabatini
3  *
4  * This file is part of Libav.
5  *
6  * Libav is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * Libav is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with Libav; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19  */
20
21 /**
22  * @file
23  * buffer sink
24  */
25
26 #include "libavutil/audio_fifo.h"
27 #include "libavutil/avassert.h"
28 #include "libavutil/channel_layout.h"
29 #include "libavutil/common.h"
30 #include "libavutil/internal.h"
31 #include "libavutil/mathematics.h"
32
33 #include "audio.h"
34 #include "avfilter.h"
35 #include "buffersink.h"
36 #include "internal.h"
37
38 typedef struct BufferSinkContext {
39     AVFrame *cur_frame;          ///< last frame delivered on the sink
40     AVAudioFifo *audio_fifo;     ///< FIFO for audio samples
41     int64_t next_pts;            ///< interpolating audio pts
42 } BufferSinkContext;
43
44 static av_cold void uninit(AVFilterContext *ctx)
45 {
46     BufferSinkContext *sink = ctx->priv;
47
48     if (sink->audio_fifo)
49         av_audio_fifo_free(sink->audio_fifo);
50 }
51
52 static int filter_frame(AVFilterLink *link, AVFrame *frame)
53 {
54     BufferSinkContext *s = link->dst->priv;
55
56     av_assert0(!s->cur_frame);
57     s->cur_frame = frame;
58
59     return 0;
60 }
61
62 int attribute_align_arg av_buffersink_get_frame(AVFilterContext *ctx,
63                                                 AVFrame *frame)
64 {
65     BufferSinkContext *s    = ctx->priv;
66     AVFilterLink      *link = ctx->inputs[0];
67     int ret;
68
69     if ((ret = ff_request_frame(link)) < 0)
70         return ret;
71
72     if (!s->cur_frame)
73         return AVERROR(EINVAL);
74
75     av_frame_move_ref(frame, s->cur_frame);
76     av_frame_free(&s->cur_frame);
77
78     return 0;
79 }
80
81 static int read_from_fifo(AVFilterContext *ctx, AVFrame *frame,
82                           int nb_samples)
83 {
84     BufferSinkContext *s = ctx->priv;
85     AVFilterLink   *link = ctx->inputs[0];
86     AVFrame *tmp;
87
88     if (!(tmp = ff_get_audio_buffer(link, nb_samples)))
89         return AVERROR(ENOMEM);
90     av_audio_fifo_read(s->audio_fifo, (void**)tmp->extended_data, nb_samples);
91
92     tmp->pts = s->next_pts;
93     s->next_pts += av_rescale_q(nb_samples, (AVRational){1, link->sample_rate},
94                                 link->time_base);
95
96     av_frame_move_ref(frame, tmp);
97     av_frame_free(&tmp);
98
99     return 0;
100 }
101
102 int attribute_align_arg av_buffersink_get_samples(AVFilterContext *ctx,
103                                                   AVFrame *frame, int nb_samples)
104 {
105     BufferSinkContext *s = ctx->priv;
106     AVFilterLink   *link = ctx->inputs[0];
107     int ret = 0;
108
109     if (!s->audio_fifo) {
110         int nb_channels = av_get_channel_layout_nb_channels(link->channel_layout);
111         if (!(s->audio_fifo = av_audio_fifo_alloc(link->format, nb_channels, nb_samples)))
112             return AVERROR(ENOMEM);
113     }
114
115     while (ret >= 0) {
116         if (av_audio_fifo_size(s->audio_fifo) >= nb_samples)
117             return read_from_fifo(ctx, frame, nb_samples);
118
119         ret = ff_request_frame(link);
120         if (ret == AVERROR_EOF && av_audio_fifo_size(s->audio_fifo))
121             return read_from_fifo(ctx, frame, av_audio_fifo_size(s->audio_fifo));
122         else if (ret < 0)
123             return ret;
124
125         if (s->cur_frame->pts != AV_NOPTS_VALUE) {
126             s->next_pts = s->cur_frame->pts -
127                           av_rescale_q(av_audio_fifo_size(s->audio_fifo),
128                                        (AVRational){ 1, link->sample_rate },
129                                        link->time_base);
130         }
131
132         ret = av_audio_fifo_write(s->audio_fifo, (void**)s->cur_frame->extended_data,
133                                   s->cur_frame->nb_samples);
134         av_frame_free(&s->cur_frame);
135     }
136
137     return ret;
138 }
139
140 static const AVFilterPad avfilter_vsink_buffer_inputs[] = {
141     {
142         .name         = "default",
143         .type         = AVMEDIA_TYPE_VIDEO,
144         .filter_frame = filter_frame,
145         .needs_fifo   = 1
146     },
147     { NULL }
148 };
149
150 AVFilter ff_vsink_buffer = {
151     .name        = "buffersink",
152     .description = NULL_IF_CONFIG_SMALL("Buffer video frames, and make them available to the end of the filter graph."),
153     .priv_size   = sizeof(BufferSinkContext),
154     .uninit      = uninit,
155
156     .inputs      = avfilter_vsink_buffer_inputs,
157     .outputs     = NULL,
158 };
159
160 static const AVFilterPad avfilter_asink_abuffer_inputs[] = {
161     {
162         .name         = "default",
163         .type         = AVMEDIA_TYPE_AUDIO,
164         .filter_frame = filter_frame,
165         .needs_fifo   = 1
166     },
167     { NULL }
168 };
169
170 AVFilter ff_asink_abuffer = {
171     .name        = "abuffersink",
172     .description = NULL_IF_CONFIG_SMALL("Buffer audio frames, and make them available to the end of the filter graph."),
173     .priv_size   = sizeof(BufferSinkContext),
174     .uninit      = uninit,
175
176     .inputs      = avfilter_asink_abuffer_inputs,
177     .outputs     = NULL,
178 };