FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
lavfi.c
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2011 Stefano Sabatini
3  *
4  * This file is part of FFmpeg.
5  *
6  * FFmpeg 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  * FFmpeg 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 FFmpeg; 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  * libavfilter virtual input device
24  */
25 
26 /* #define DEBUG */
27 
28 #include <float.h> /* DBL_MIN, DBL_MAX */
29 
30 #include "libavutil/bprint.h"
32 #include "libavutil/file.h"
33 #include "libavutil/log.h"
34 #include "libavutil/mem.h"
35 #include "libavutil/opt.h"
36 #include "libavutil/parseutils.h"
37 #include "libavutil/pixdesc.h"
38 #include "libavfilter/avfilter.h"
40 #include "libavfilter/buffersink.h"
41 #include "libavformat/internal.h"
42 #include "avdevice.h"
43 
44 typedef struct {
45  AVClass *class; ///< class for private options
46  char *graph_str;
48  char *dump_graph;
52  int *sink_eof;
56  int nb_sinks;
58 } LavfiContext;
59 
60 static int *create_all_formats(int n)
61 {
62  int i, j, *fmts, count = 0;
63 
64  for (i = 0; i < n; i++) {
65  const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(i);
66  if (!(desc->flags & AV_PIX_FMT_FLAG_HWACCEL))
67  count++;
68  }
69 
70  if (!(fmts = av_malloc((count+1) * sizeof(int))))
71  return NULL;
72  for (j = 0, i = 0; i < n; i++) {
73  const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(i);
74  if (!(desc->flags & AV_PIX_FMT_FLAG_HWACCEL))
75  fmts[j++] = i;
76  }
77  fmts[j] = -1;
78  return fmts;
79 }
80 
82 {
83  LavfiContext *lavfi = avctx->priv_data;
84 
85  av_freep(&lavfi->sink_stream_map);
86  av_freep(&lavfi->sink_eof);
87  av_freep(&lavfi->stream_sink_map);
89  av_freep(&lavfi->sinks);
90  avfilter_graph_free(&lavfi->graph);
92 
93  return 0;
94 }
95 
97 {
98  LavfiContext *lavfi = avctx->priv_data;
99  AVStream *st;
100  int stream_idx, sink_idx;
101 
102  for (stream_idx = 0; stream_idx < lavfi->nb_sinks; stream_idx++) {
103  sink_idx = lavfi->stream_sink_map[stream_idx];
104  if (lavfi->sink_stream_subcc_map[sink_idx]) {
105  lavfi->sink_stream_subcc_map[sink_idx] = avctx->nb_streams;
106  if (!(st = avformat_new_stream(avctx, NULL)))
107  return AVERROR(ENOMEM);
110  } else {
111  lavfi->sink_stream_subcc_map[sink_idx] = -1;
112  }
113  }
114  return 0;
115 }
116 
118 {
119  LavfiContext *lavfi = avctx->priv_data;
120  AVFilterInOut *input_links = NULL, *output_links = NULL, *inout;
121  AVFilter *buffersink, *abuffersink;
122  int *pix_fmts = create_all_formats(AV_PIX_FMT_NB);
123  enum AVMediaType type;
124  int ret = 0, i, n;
125 
126 #define FAIL(ERR) { ret = ERR; goto end; }
127 
128  if (!pix_fmts)
129  FAIL(AVERROR(ENOMEM));
130 
132 
133  buffersink = avfilter_get_by_name("buffersink");
134  abuffersink = avfilter_get_by_name("abuffersink");
135 
136  if (lavfi->graph_filename && lavfi->graph_str) {
137  av_log(avctx, AV_LOG_ERROR,
138  "Only one of the graph or graph_file options must be specified\n");
139  FAIL(AVERROR(EINVAL));
140  }
141 
142  if (lavfi->graph_filename) {
143  AVBPrint graph_file_pb;
144  AVIOContext *avio = NULL;
145  ret = avio_open(&avio, lavfi->graph_filename, AVIO_FLAG_READ);
146  if (ret < 0)
147  goto end;
148  av_bprint_init(&graph_file_pb, 0, AV_BPRINT_SIZE_UNLIMITED);
149  ret = avio_read_to_bprint(avio, &graph_file_pb, INT_MAX);
150  avio_closep(&avio);
151  av_bprint_chars(&graph_file_pb, '\0', 1);
152  if (!ret && !av_bprint_is_complete(&graph_file_pb))
153  ret = AVERROR(ENOMEM);
154  if (ret) {
155  av_bprint_finalize(&graph_file_pb, NULL);
156  goto end;
157  }
158  if ((ret = av_bprint_finalize(&graph_file_pb, &lavfi->graph_str)))
159  goto end;
160  }
161 
162  if (!lavfi->graph_str)
163  lavfi->graph_str = av_strdup(avctx->filename);
164 
165  /* parse the graph, create a stream for each open output */
166  if (!(lavfi->graph = avfilter_graph_alloc()))
167  FAIL(AVERROR(ENOMEM));
168 
169  if ((ret = avfilter_graph_parse_ptr(lavfi->graph, lavfi->graph_str,
170  &input_links, &output_links, avctx)) < 0)
171  goto end;
172 
173  if (input_links) {
174  av_log(avctx, AV_LOG_ERROR,
175  "Open inputs in the filtergraph are not acceptable\n");
176  FAIL(AVERROR(EINVAL));
177  }
178 
179  /* count the outputs */
180  for (n = 0, inout = output_links; inout; n++, inout = inout->next);
181  lavfi->nb_sinks = n;
182 
183  if (!(lavfi->sink_stream_map = av_malloc(sizeof(int) * n)))
184  FAIL(AVERROR(ENOMEM));
185  if (!(lavfi->sink_eof = av_mallocz(sizeof(int) * n)))
186  FAIL(AVERROR(ENOMEM));
187  if (!(lavfi->stream_sink_map = av_malloc(sizeof(int) * n)))
188  FAIL(AVERROR(ENOMEM));
189  if (!(lavfi->sink_stream_subcc_map = av_malloc(sizeof(int) * n)))
190  FAIL(AVERROR(ENOMEM));
191 
192  for (i = 0; i < n; i++)
193  lavfi->stream_sink_map[i] = -1;
194 
195  /* parse the output link names - they need to be of the form out0, out1, ...
196  * create a mapping between them and the streams */
197  for (i = 0, inout = output_links; inout; i++, inout = inout->next) {
198  int stream_idx = 0, suffix = 0, use_subcc = 0;
199  sscanf(inout->name, "out%n%d%n", &suffix, &stream_idx, &suffix);
200  if (!suffix) {
201  av_log(avctx, AV_LOG_ERROR,
202  "Invalid outpad name '%s'\n", inout->name);
203  FAIL(AVERROR(EINVAL));
204  }
205  if (inout->name[suffix]) {
206  if (!strcmp(inout->name + suffix, "+subcc")) {
207  use_subcc = 1;
208  } else {
209  av_log(avctx, AV_LOG_ERROR,
210  "Invalid outpad suffix '%s'\n", inout->name);
211  FAIL(AVERROR(EINVAL));
212  }
213  }
214 
215  if ((unsigned)stream_idx >= n) {
216  av_log(avctx, AV_LOG_ERROR,
217  "Invalid index was specified in output '%s', "
218  "must be a non-negative value < %d\n",
219  inout->name, n);
220  FAIL(AVERROR(EINVAL));
221  }
222 
223  if (lavfi->stream_sink_map[stream_idx] != -1) {
224  av_log(avctx, AV_LOG_ERROR,
225  "An output with stream index %d was already specified\n",
226  stream_idx);
227  FAIL(AVERROR(EINVAL));
228  }
229  lavfi->sink_stream_map[i] = stream_idx;
230  lavfi->stream_sink_map[stream_idx] = i;
231  lavfi->sink_stream_subcc_map[i] = !!use_subcc;
232  }
233 
234  /* for each open output create a corresponding stream */
235  for (i = 0, inout = output_links; inout; i++, inout = inout->next) {
236  AVStream *st;
237  if (!(st = avformat_new_stream(avctx, NULL)))
238  FAIL(AVERROR(ENOMEM));
239  st->id = i;
240  }
241 
242  /* create a sink for each output and connect them to the graph */
243  lavfi->sinks = av_malloc_array(lavfi->nb_sinks, sizeof(AVFilterContext *));
244  if (!lavfi->sinks)
245  FAIL(AVERROR(ENOMEM));
246 
247  for (i = 0, inout = output_links; inout; i++, inout = inout->next) {
248  AVFilterContext *sink;
249 
250  type = inout->filter_ctx->output_pads[inout->pad_idx].type;
251 
252  if (type == AVMEDIA_TYPE_VIDEO && ! buffersink ||
253  type == AVMEDIA_TYPE_AUDIO && ! abuffersink) {
254  av_log(avctx, AV_LOG_ERROR, "Missing required buffersink filter, aborting.\n");
256  }
257 
258  if (type == AVMEDIA_TYPE_VIDEO) {
259  ret = avfilter_graph_create_filter(&sink, buffersink,
260  inout->name, NULL,
261  NULL, lavfi->graph);
262  if (ret >= 0)
263  ret = av_opt_set_int_list(sink, "pix_fmts", pix_fmts, AV_PIX_FMT_NONE, AV_OPT_SEARCH_CHILDREN);
264  if (ret < 0)
265  goto end;
266  } else if (type == AVMEDIA_TYPE_AUDIO) {
271  AV_SAMPLE_FMT_DBL, -1 };
272 
273  ret = avfilter_graph_create_filter(&sink, abuffersink,
274  inout->name, NULL,
275  NULL, lavfi->graph);
276  if (ret >= 0)
277  ret = av_opt_set_int_list(sink, "sample_fmts", sample_fmts, AV_SAMPLE_FMT_NONE, AV_OPT_SEARCH_CHILDREN);
278  if (ret < 0)
279  goto end;
280  ret = av_opt_set_int(sink, "all_channel_counts", 1,
282  if (ret < 0)
283  goto end;
284  } else {
285  av_log(avctx, AV_LOG_ERROR,
286  "Output '%s' is not a video or audio output, not yet supported\n", inout->name);
287  FAIL(AVERROR(EINVAL));
288  }
289 
290  lavfi->sinks[i] = sink;
291  if ((ret = avfilter_link(inout->filter_ctx, inout->pad_idx, sink, 0)) < 0)
292  goto end;
293  }
294 
295  /* configure the graph */
296  if ((ret = avfilter_graph_config(lavfi->graph, avctx)) < 0)
297  goto end;
298 
299  if (lavfi->dump_graph) {
300  char *dump = avfilter_graph_dump(lavfi->graph, lavfi->dump_graph);
301  fputs(dump, stderr);
302  fflush(stderr);
303  av_free(dump);
304  }
305 
306  /* fill each stream with the information in the corresponding sink */
307  for (i = 0; i < lavfi->nb_sinks; i++) {
308  AVFilterLink *link = lavfi->sinks[lavfi->stream_sink_map[i]]->inputs[0];
309  AVStream *st = avctx->streams[i];
310  st->codec->codec_type = link->type;
311  avpriv_set_pts_info(st, 64, link->time_base.num, link->time_base.den);
312  if (link->type == AVMEDIA_TYPE_VIDEO) {
314  st->codec->pix_fmt = link->format;
315  st->codec->time_base = link->time_base;
316  st->codec->width = link->w;
317  st->codec->height = link->h;
318  st ->sample_aspect_ratio =
320  avctx->probesize = FFMAX(avctx->probesize,
321  link->w * link->h *
323  30);
324  } else if (link->type == AVMEDIA_TYPE_AUDIO) {
325  st->codec->codec_id = av_get_pcm_codec(link->format, -1);
327  st->codec->sample_fmt = link->format;
328  st->codec->sample_rate = link->sample_rate;
329  st->codec->time_base = link->time_base;
330  st->codec->channel_layout = link->channel_layout;
331  if (st->codec->codec_id == AV_CODEC_ID_NONE)
332  av_log(avctx, AV_LOG_ERROR,
333  "Could not find PCM codec for sample format %s.\n",
335  }
336  }
337 
338  if ((ret = create_subcc_streams(avctx)) < 0)
339  FAIL(ret);
340 
341  if (!(lavfi->decoded_frame = av_frame_alloc()))
342  FAIL(AVERROR(ENOMEM));
343 
344 end:
345  av_free(pix_fmts);
346  avfilter_inout_free(&input_links);
347  avfilter_inout_free(&output_links);
348  if (ret < 0)
349  lavfi_read_close(avctx);
350  return ret;
351 }
352 
354  int sink_idx)
355 {
356  LavfiContext *lavfi = avctx->priv_data;
357  AVFrameSideData *sd;
358  int stream_idx, i, ret;
359 
360  if ((stream_idx = lavfi->sink_stream_subcc_map[sink_idx]) < 0)
361  return 0;
362  for (i = 0; i < frame->nb_side_data; i++)
363  if (frame->side_data[i]->type == AV_FRAME_DATA_A53_CC)
364  break;
365  if (i >= frame->nb_side_data)
366  return 0;
367  sd = frame->side_data[i];
368  if ((ret = av_new_packet(&lavfi->subcc_packet, sd->size)) < 0)
369  return ret;
370  memcpy(lavfi->subcc_packet.data, sd->data, sd->size);
371  lavfi->subcc_packet.stream_index = stream_idx;
372  lavfi->subcc_packet.pts = frame->pts;
373  lavfi->subcc_packet.pos = av_frame_get_pkt_pos(frame);
374  return 0;
375 }
376 
378 {
379  LavfiContext *lavfi = avctx->priv_data;
380  double min_pts = DBL_MAX;
381  int stream_idx, min_pts_sink_idx = 0;
382  AVFrame *frame = lavfi->decoded_frame;
383  AVPicture pict;
384  AVDictionary *frame_metadata;
385  int ret, i;
386  int size = 0;
387 
388  if (lavfi->subcc_packet.size) {
389  *pkt = lavfi->subcc_packet;
390  av_init_packet(&lavfi->subcc_packet);
391  lavfi->subcc_packet.size = 0;
392  lavfi->subcc_packet.data = NULL;
393  return pkt->size;
394  }
395 
396  /* iterate through all the graph sinks. Select the sink with the
397  * minimum PTS */
398  for (i = 0; i < lavfi->nb_sinks; i++) {
399  AVRational tb = lavfi->sinks[i]->inputs[0]->time_base;
400  double d;
401  int ret;
402 
403  if (lavfi->sink_eof[i])
404  continue;
405 
406  ret = av_buffersink_get_frame_flags(lavfi->sinks[i], frame,
408  if (ret == AVERROR_EOF) {
409  av_dlog(avctx, "EOF sink_idx:%d\n", i);
410  lavfi->sink_eof[i] = 1;
411  continue;
412  } else if (ret < 0)
413  return ret;
415  av_dlog(avctx, "sink_idx:%d time:%f\n", i, d);
416  av_frame_unref(frame);
417 
418  if (d < min_pts) {
419  min_pts = d;
420  min_pts_sink_idx = i;
421  }
422  }
423  if (min_pts == DBL_MAX)
424  return AVERROR_EOF;
425 
426  av_dlog(avctx, "min_pts_sink_idx:%i\n", min_pts_sink_idx);
427 
428  av_buffersink_get_frame_flags(lavfi->sinks[min_pts_sink_idx], frame, 0);
429  stream_idx = lavfi->sink_stream_map[min_pts_sink_idx];
430 
431  if (frame->width /* FIXME best way of testing a video */) {
432  size = avpicture_get_size(frame->format, frame->width, frame->height);
433  if ((ret = av_new_packet(pkt, size)) < 0)
434  return ret;
435 
436  memcpy(pict.data, frame->data, 4*sizeof(frame->data[0]));
437  memcpy(pict.linesize, frame->linesize, 4*sizeof(frame->linesize[0]));
438 
439  avpicture_layout(&pict, frame->format, frame->width, frame->height,
440  pkt->data, size);
441  } else if (av_frame_get_channels(frame) /* FIXME test audio */) {
442  size = frame->nb_samples * av_get_bytes_per_sample(frame->format) *
443  av_frame_get_channels(frame);
444  if ((ret = av_new_packet(pkt, size)) < 0)
445  return ret;
446  memcpy(pkt->data, frame->data[0], size);
447  }
448 
449  frame_metadata = av_frame_get_metadata(frame);
450  if (frame_metadata) {
451  uint8_t *metadata;
452  AVDictionaryEntry *e = NULL;
453  AVBPrint meta_buf;
454 
456  while ((e = av_dict_get(frame_metadata, "", e, AV_DICT_IGNORE_SUFFIX))) {
457  av_bprintf(&meta_buf, "%s", e->key);
458  av_bprint_chars(&meta_buf, '\0', 1);
459  av_bprintf(&meta_buf, "%s", e->value);
460  av_bprint_chars(&meta_buf, '\0', 1);
461  }
462  if (!av_bprint_is_complete(&meta_buf) ||
464  meta_buf.len))) {
465  av_bprint_finalize(&meta_buf, NULL);
466  return AVERROR(ENOMEM);
467  }
468  memcpy(metadata, meta_buf.str, meta_buf.len);
469  av_bprint_finalize(&meta_buf, NULL);
470  }
471 
472  if ((ret = create_subcc_packet(avctx, frame, min_pts_sink_idx)) < 0) {
473  av_frame_unref(frame);
474  av_packet_unref(pkt);
475  return ret;
476  }
477 
478  pkt->stream_index = stream_idx;
479  pkt->pts = frame->pts;
480  pkt->pos = av_frame_get_pkt_pos(frame);
481  pkt->size = size;
482  av_frame_unref(frame);
483  return size;
484 }
485 
486 #define OFFSET(x) offsetof(LavfiContext, x)
487 
488 #define DEC AV_OPT_FLAG_DECODING_PARAM
489 
490 static const AVOption options[] = {
491  { "graph", "set libavfilter graph", OFFSET(graph_str), AV_OPT_TYPE_STRING, {.str = NULL}, 0, 0, DEC },
492  { "graph_file","set libavfilter graph filename", OFFSET(graph_filename), AV_OPT_TYPE_STRING, {.str = NULL}, 0, 0, DEC},
493  { "dumpgraph", "dump graph to stderr", OFFSET(dump_graph), AV_OPT_TYPE_STRING, {.str = NULL}, 0, 0, DEC },
494  { NULL },
495 };
496 
497 static const AVClass lavfi_class = {
498  .class_name = "lavfi indev",
499  .item_name = av_default_item_name,
500  .option = options,
501  .version = LIBAVUTIL_VERSION_INT,
502  .category = AV_CLASS_CATEGORY_DEVICE_INPUT,
503 };
504 
506  .name = "lavfi",
507  .long_name = NULL_IF_CONFIG_SMALL("Libavfilter virtual input device"),
508  .priv_data_size = sizeof(LavfiContext),
512  .flags = AVFMT_NOFILE,
513  .priv_class = &lavfi_class,
514 };
int avio_open(AVIOContext **s, const char *url, int flags)
Create and initialize a AVIOContext for accessing the resource indicated by url.
Definition: aviobuf.c:909
#define NULL
Definition: coverity.c:32
Bytestream IO Context.
Definition: avio.h:111
void av_bprintf(AVBPrint *buf, const char *fmt,...)
Definition: bprint.c:94
int linesize[AV_NUM_DATA_POINTERS]
number of bytes per line
Definition: avcodec.h:3454
const AVPixFmtDescriptor * av_pix_fmt_desc_get(enum AVPixelFormat pix_fmt)
Definition: pixdesc.c:2090
This structure describes decoded (raw) audio or video data.
Definition: frame.h:171
AVOption.
Definition: opt.h:255
AVFilterGraph * avfilter_graph_alloc(void)
Allocate a filter graph.
Definition: avfiltergraph.c:76
#define LIBAVUTIL_VERSION_INT
Definition: version.h:62
Main libavfilter public API header.
memory handling functions
int64_t pos
byte position in stream, -1 if unknown
Definition: avcodec.h:1187
static av_cold int lavfi_read_close(AVFormatContext *avctx)
Definition: lavfi.c:81
void avpriv_set_pts_info(AVStream *s, int pts_wrap_bits, unsigned int pts_num, unsigned int pts_den)
Set the time base and wrapping info for a given stream.
Definition: utils.c:4006
int avfilter_graph_config(AVFilterGraph *graphctx, void *log_ctx)
Check validity and configure all the links and formats in the graph.
void avfilter_inout_free(AVFilterInOut **inout)
Free the supplied list of AVFilterInOut and set *inout to NULL.
Definition: graphparser.c:184
#define av_opt_set_int_list(obj, name, val, term, flags)
Set a binary option to an integer list.
Definition: opt.h:748
int avio_read_to_bprint(AVIOContext *h, struct AVBPrint *pb, size_t max_size)
Read contents of h into print buffer, up to max_size bytes, or up to EOF.
Definition: aviobuf.c:1002
AVRational sample_aspect_ratio
sample aspect ratio (0 if unknown)
Definition: avformat.h:914
int num
numerator
Definition: rational.h:44
int size
Definition: avcodec.h:1163
#define AVIO_FLAG_READ
read-only
Definition: avio.h:460
AVRational sample_aspect_ratio
sample aspect ratio (0 if unknown) That is the width of a pixel divided by the height of the pixel...
Definition: avcodec.h:1623
void avfilter_graph_free(AVFilterGraph **graph)
Free a graph, destroy its links, and set *graph to NULL.
enum AVPixelFormat pix_fmt
Pixel format, see AV_PIX_FMT_xxx.
Definition: avcodec.h:1444
int avpicture_layout(const AVPicture *src, enum AVPixelFormat pix_fmt, int width, int height, unsigned char *dest, int dest_size)
Copy pixel data from an AVPicture into a buffer.
Definition: avpicture.c:41
enum AVMediaType type
AVFilterPad type.
Definition: internal.h:72
static AVPacket pkt
Picture data structure.
Definition: avcodec.h:3452
int * sink_eof
Definition: lavfi.c:52
int av_bprint_finalize(AVBPrint *buf, char **ret_str)
Finalize a print buffer.
Definition: bprint.c:235
AVRational time_base
This is the fundamental unit of time (in seconds) in terms of which frame timestamps are represented...
Definition: avcodec.h:1369
Format I/O context.
Definition: avformat.h:1272
memory buffer sink API for audio and video
AVInputFormat ff_lavfi_demuxer
Definition: lavfi.c:505
const char * class_name
The name of the class; usually it is the same name as the context structure type to which the AVClass...
Definition: log.h:72
AVFilterLink ** inputs
array of pointers to input links
Definition: avfilter.h:641
int avfilter_link(AVFilterContext *src, unsigned srcpad, AVFilterContext *dst, unsigned dstpad)
Link two filters together.
Definition: avfilter.c:131
AVFilterPad * output_pads
array of output pads
Definition: avfilter.h:647
enum AVSampleFormat sample_fmt
audio sample format
Definition: avcodec.h:1993
uint8_t
#define av_cold
Definition: attributes.h:74
#define av_malloc(s)
AV_SAMPLE_FMT_U8
AVFrame * av_frame_alloc(void)
Allocate an AVFrame and set its fields to default values.
Definition: frame.c:135
AVOptions.
uint8_t * data[AV_NUM_DATA_POINTERS]
pointers to the image data planes
Definition: avcodec.h:3453
static av_cold int end(AVCodecContext *avctx)
Definition: avrndec.c:67
int id
Format-specific stream ID.
Definition: avformat.h:849
#define OFFSET(x)
Definition: lavfi.c:486
static const AVClass lavfi_class
Definition: lavfi.c:497
int64_t pts
Presentation timestamp in time_base units (time when frame should be shown to user).
Definition: frame.h:257
AVStream * avformat_new_stream(AVFormatContext *s, const AVCodec *c)
Add a new stream to a media file.
Definition: utils.c:3672
AVStream ** streams
A list of all streams in the file.
Definition: avformat.h:1340
void avfilter_register_all(void)
Initialize the filter system.
Definition: allfilters.c:40
static AVFrame * frame
int avfilter_graph_create_filter(AVFilterContext **filt_ctx, const AVFilter *filt, const char *name, const char *args, void *opaque, AVFilterGraph *graph_ctx)
Create and add a filter instance into an existing graph.
Misc file utilities.
Structure to hold side data for an AVFrame.
Definition: frame.h:134
AVDictionaryEntry * av_dict_get(const AVDictionary *m, const char *key, const AVDictionaryEntry *prev, int flags)
Get a dictionary entry with matching key.
Definition: dict.c:39
uint8_t * data
Definition: avcodec.h:1162
#define AVERROR_EOF
End of file.
Definition: error.h:55
static av_cold int read_close(AVFormatContext *ctx)
Definition: libcdio.c:145
AVFrame * decoded_frame
Definition: lavfi.c:55
ptrdiff_t size
Definition: opengl_enc.c:101
int nb_sinks
Definition: lavfi.c:56
int * sink_stream_map
Definition: lavfi.c:51
signed 32 bits
Definition: samplefmt.h:63
int nb_side_data
Definition: frame.h:462
AVFrameSideData ** side_data
Definition: frame.h:461
#define av_log(a,...)
Main libavdevice API header.
int av_new_packet(AVPacket *pkt, int size)
Allocate the payload of a packet and initialize its fields with default values.
Definition: avpacket.c:83
int width
width and height of the video frame
Definition: frame.h:220
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:176
char * dump_graph
Definition: lavfi.c:48
#define AV_BPRINT_SIZE_UNLIMITED
static int create_subcc_streams(AVFormatContext *avctx)
Definition: lavfi.c:96
av_default_item_name
#define AVERROR(e)
Definition: error.h:43
int avfilter_link_get_channels(AVFilterLink *link)
Get the number of channels of a link.
Definition: avfilter.c:175
void av_frame_free(AVFrame **frame)
Free the frame and any dynamically allocated objects in it, e.g.
Definition: frame.c:148
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:175
void av_bprint_init(AVBPrint *buf, unsigned size_init, unsigned size_max)
Definition: bprint.c:69
int av_get_padded_bits_per_pixel(const AVPixFmtDescriptor *pixdesc)
Return the number of bits per pixel for the pixel format described by pixdesc, including any padding ...
Definition: pixdesc.c:2055
ATSC A53 Part 4 Closed Captions.
Definition: frame.h:58
int av_opt_set_int(void *obj, const char *name, int64_t val, int search_flags)
Definition: opt.c:491
Round to nearest and halfway cases away from zero.
Definition: mathematics.h:75
#define AV_PIX_FMT_FLAG_HWACCEL
Pixel format is an HW accelerated format.
Definition: pixdesc.h:123
const char * av_get_sample_fmt_name(enum AVSampleFormat sample_fmt)
Return the name of sample_fmt, or NULL if sample_fmt is not recognized.
Definition: samplefmt.c:47
GLsizei count
Definition: opengl_enc.c:109
#define FFMAX(a, b)
Definition: common.h:64
int attribute_align_arg av_buffersink_get_frame_flags(AVFilterContext *ctx, AVFrame *frame, int flags)
Get a frame with filtered data from sink and put it in frame.
Definition: buffersink.c:126
uint64_t channel_layout
Audio channel layout.
Definition: avcodec.h:2046
AVCodecContext * codec
Codec context associated with this stream.
Definition: avformat.h:861
const AVFilter * avfilter_get_by_name(const char *name)
Get a filter definition matching the given name.
Definition: avfilter.c:487
static av_cold int lavfi_read_header(AVFormatContext *avctx)
Definition: lavfi.c:117
unsigned int nb_streams
Number of elements in AVFormatContext.streams.
Definition: avformat.h:1328
int64_t av_rescale_q_rnd(int64_t a, AVRational bq, AVRational cq, enum AVRounding rnd)
Rescale a 64-bit integer by 2 rational numbers with specified rounding.
Definition: mathematics.c:132
audio channel layout utility functions
char filename[1024]
input or output filename
Definition: avformat.h:1348
#define AV_OPT_SEARCH_CHILDREN
Search in possible children of the given object first.
Definition: opt.h:602
ret
Definition: avfilter.c:974
int width
picture width / height.
Definition: avcodec.h:1414
int n
Definition: avisynth_c.h:547
static int av_bprint_is_complete(const AVBPrint *buf)
Test if the print buffer is complete (not truncated).
Definition: bprint.h:185
unsigned int probesize
Definition: avformat.h:1410
AVFilterContext ** sinks
Definition: lavfi.c:50
static int read_header(FFV1Context *f)
Definition: ffv1dec.c:620
Stream structure.
Definition: avformat.h:842
#define av_dlog(pctx,...)
av_dlog macros
Definition: log.h:330
A linked-list of the inputs/outputs of the filter chain.
Definition: avfilter.h:1351
static int read_packet(void *opaque, uint8_t *buf, int buf_size)
Definition: avio_reading.c:42
int format
format of the frame, -1 if unknown or unset Values correspond to enum AVPixelFormat for video frames...
Definition: frame.h:232
enum AVMediaType codec_type
Definition: avcodec.h:1249
A list of zero terminated key/value strings.
Definition: avcodec.h:1071
AVSampleFormat
Audio sample formats.
Definition: samplefmt.h:59
enum AVCodecID av_get_pcm_codec(enum AVSampleFormat fmt, int be)
Return the PCM codec associated with a sample format.
Definition: utils.c:3297
enum AVCodecID codec_id
Definition: avcodec.h:1258
#define AV_TIME_BASE_Q
Internal time base represented as fractional value.
Definition: avutil.h:253
char * av_strdup(const char *s)
Duplicate the string s.
Definition: mem.c:265
int sample_rate
samples per second
Definition: avcodec.h:1985
int linesize[AV_NUM_DATA_POINTERS]
For video, size in bytes of each picture line.
Definition: frame.h:199
uint8_t flags
Definition: pixdesc.h:90
Descriptor that unambiguously describes how the bits of a pixel are stored in the up to 4 data planes...
Definition: pixdesc.h:69
void av_packet_unref(AVPacket *pkt)
Wipe the packet.
Definition: avpacket.c:550
uint8_t * data
Definition: frame.h:136
int * stream_sink_map
Definition: lavfi.c:53
GLint GLenum type
Definition: opengl_enc.c:105
AVDictionary * av_frame_get_metadata(const AVFrame *frame)
Describe the class of an AVClass context structure.
Definition: log.h:67
int av_frame_get_channels(const AVFrame *frame)
Filter definition.
Definition: avfilter.h:470
rational number numerator/denominator
Definition: rational.h:43
static int lavfi_read_packet(AVFormatContext *avctx, AVPacket *pkt)
Definition: lavfi.c:377
char * graph_filename
Definition: lavfi.c:47
AVMediaType
Definition: avutil.h:192
const char * name
Filter name.
Definition: avfilter.h:474
misc parsing utilities
#define FAIL(ERR)
void av_frame_unref(AVFrame *frame)
Unreference all the buffers referenced by frame and reset the frame fields.
Definition: frame.c:462
enum AVFrameSideDataType type
Definition: frame.h:135
static int flags
Definition: cpu.c:47
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
Definition: frame.h:182
#define AVERROR_FILTER_NOT_FOUND
Filter not found.
Definition: error.h:58
int av_get_bytes_per_sample(enum AVSampleFormat sample_fmt)
Return number of bytes per sample.
Definition: samplefmt.c:104
AVFilterGraph * graph
Definition: lavfi.c:49
static int create_subcc_packet(AVFormatContext *avctx, AVFrame *frame, int sink_idx)
Definition: lavfi.c:353
#define AVFMT_NOFILE
Demuxer will use avio_open, no opened file should be provided by the caller.
Definition: avformat.h:465
signed 16 bits
Definition: samplefmt.h:62
char * graph_str
Definition: lavfi.c:46
char * avfilter_graph_dump(AVFilterGraph *graph, const char *options)
Dump a graph into a human-readable string representation.
Definition: graphdump.c:154
void av_init_packet(AVPacket *pkt)
Initialize optional fields of a packet with default values.
Definition: avpacket.c:49
char * key
Definition: dict.h:87
int den
denominator
Definition: rational.h:45
static const AVOption options[]
Definition: lavfi.c:490
Flag to pass INT64_MIN/MAX through instead of rescaling, this avoids special cases for AV_NOPTS_VALUE...
Definition: mathematics.h:76
#define AV_BUFFERSINK_FLAG_PEEK
Tell av_buffersink_get_buffer_ref() to read video/samples buffer reference, but not remove it from th...
Definition: buffersink.h:110
#define av_free(p)
char * value
Definition: dict.h:88
int channels
number of audio channels
Definition: avcodec.h:1986
int64_t av_frame_get_pkt_pos(const AVFrame *frame)
void * priv_data
Format private data.
Definition: avformat.h:1300
int avpicture_get_size(enum AVPixelFormat pix_fmt, int width, int height)
Calculate the size in bytes that a picture of the given width and height would occupy if stored in th...
Definition: avpicture.c:49
int avfilter_graph_parse_ptr(AVFilterGraph *graph, const char *filters, AVFilterInOut **inputs, AVFilterInOut **outputs, void *log_ctx)
Add a graph described by a string to a graph.
Definition: graphparser.c:527
An instance of a filter.
Definition: avfilter.h:633
AVPacket subcc_packet
Definition: lavfi.c:57
number of pixel formats, DO NOT USE THIS if you want to link with shared libav* because the number of...
Definition: pixfmt.h:312
static enum AVSampleFormat sample_fmts[]
Definition: adpcmenc.c:701
int height
Definition: frame.h:220
#define av_freep(p)
const char * name
A comma separated list of short names for the format.
Definition: avformat.h:628
#define AV_DICT_IGNORE_SUFFIX
Return first entry in a dictionary whose first part corresponds to the search key, ignoring the suffix of the found key string.
Definition: dict.h:72
#define av_malloc_array(a, b)
static int * create_all_formats(int n)
Definition: lavfi.c:60
uint8_t * av_packet_new_side_data(AVPacket *pkt, enum AVPacketSideDataType type, int size)
Allocate new information of a packet.
Definition: avpacket.c:299
int stream_index
Definition: avcodec.h:1164
int * sink_stream_subcc_map
Definition: lavfi.c:54
This structure stores compressed data.
Definition: avcodec.h:1139
int avio_closep(AVIOContext **s)
Close the resource accessed by the AVIOContext *s, free it and set the pointer pointing to it to NULL...
Definition: aviobuf.c:955
int nb_samples
number of audio samples (per channel) described by this frame
Definition: frame.h:225
void * av_mallocz(size_t size)
Allocate a block of size bytes with alignment suitable for all memory accesses (including vectors if ...
Definition: mem.c:250
int64_t pts
Presentation timestamp in AVStream->time_base units; the time at which the decompressed packet will b...
Definition: avcodec.h:1155
for(j=16;j >0;--j)
#define tb
Definition: regdef.h:68
#define DEC
Definition: lavfi.c:488
void av_bprint_chars(AVBPrint *buf, char c, unsigned n)
Append char c n times to a print buffer.
Definition: bprint.c:140