libavdevice/lavfi.c
21435734
 /*
  * Copyright (c) 2011 Stefano Sabatini
  *
  * 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
  */
 
 /**
  * @file
  * libavfilter virtual input device
  */
 
 /* #define DEBUG */
 
377d2017
 #include <float.h>              /* DBL_MIN, DBL_MAX */
21435734
 
6fb2fd89
 #include "libavutil/bprint.h"
1acd2f6b
 #include "libavutil/channel_layout.h"
8b03cd3c
 #include "libavutil/file.h"
21435734
 #include "libavutil/log.h"
 #include "libavutil/mem.h"
 #include "libavutil/opt.h"
 #include "libavutil/parseutils.h"
 #include "libavutil/pixdesc.h"
 #include "libavfilter/avfilter.h"
 #include "libavfilter/avfiltergraph.h"
4f7dfe12
 #include "libavfilter/buffersink.h"
215b7724
 #include "libavformat/internal.h"
21435734
 #include "avdevice.h"
 
 typedef struct {
     AVClass *class;          ///< class for private options
     char          *graph_str;
8b03cd3c
     char          *graph_filename;
1fa88f34
     char          *dump_graph;
21435734
     AVFilterGraph *graph;
     AVFilterContext **sinks;
     int *sink_stream_map;
53d71335
     int *sink_eof;
21435734
     int *stream_sink_map;
b90912be
     AVFrame *decoded_frame;
21435734
 } LavfiContext;
 
 static int *create_all_formats(int n)
 {
     int i, j, *fmts, count = 0;
 
82eba226
     for (i = 0; i < n; i++) {
         const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(i);
c7c71f95
         if (!(desc->flags & AV_PIX_FMT_FLAG_HWACCEL))
21435734
             count++;
82eba226
     }
21435734
 
     if (!(fmts = av_malloc((count+1) * sizeof(int))))
         return NULL;
     for (j = 0, i = 0; i < n; i++) {
82eba226
         const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(i);
c7c71f95
         if (!(desc->flags & AV_PIX_FMT_FLAG_HWACCEL))
21435734
             fmts[j++] = i;
     }
     fmts[j] = -1;
     return fmts;
 }
 
 av_cold static int lavfi_read_close(AVFormatContext *avctx)
 {
     LavfiContext *lavfi = avctx->priv_data;
 
     av_freep(&lavfi->sink_stream_map);
53d71335
     av_freep(&lavfi->sink_eof);
21435734
     av_freep(&lavfi->stream_sink_map);
acb67c5b
     av_freep(&lavfi->sinks);
21435734
     avfilter_graph_free(&lavfi->graph);
b90912be
     av_frame_free(&lavfi->decoded_frame);
21435734
 
     return 0;
 }
 
e37f161e
 av_cold static int lavfi_read_header(AVFormatContext *avctx)
21435734
 {
     LavfiContext *lavfi = avctx->priv_data;
     AVFilterInOut *input_links = NULL, *output_links = NULL, *inout;
4893c204
     AVFilter *buffersink, *abuffersink;
ac627b3d
     int *pix_fmts = create_all_formats(AV_PIX_FMT_NB);
4893c204
     enum AVMediaType type;
21435734
     int ret = 0, i, n;
 
 #define FAIL(ERR) { ret = ERR; goto end; }
 
4d475f7e
     if (!pix_fmts)
         FAIL(AVERROR(ENOMEM));
 
21435734
     avfilter_register_all();
 
ceac5c54
     buffersink = avfilter_get_by_name("buffersink");
     abuffersink = avfilter_get_by_name("abuffersink");
21435734
 
8b03cd3c
     if (lavfi->graph_filename && lavfi->graph_str) {
         av_log(avctx, AV_LOG_ERROR,
                "Only one of the graph or graph_file options must be specified\n");
b19bfd6c
         FAIL(AVERROR(EINVAL));
8b03cd3c
     }
 
     if (lavfi->graph_filename) {
         uint8_t *file_buf, *graph_buf;
         size_t file_bufsize;
         ret = av_file_map(lavfi->graph_filename,
                           &file_buf, &file_bufsize, 0, avctx);
         if (ret < 0)
b19bfd6c
             goto end;
8b03cd3c
 
         /* create a 0-terminated string based on the read file */
         graph_buf = av_malloc(file_bufsize + 1);
         if (!graph_buf) {
             av_file_unmap(file_buf, file_bufsize);
b19bfd6c
             FAIL(AVERROR(ENOMEM));
8b03cd3c
         }
         memcpy(graph_buf, file_buf, file_bufsize);
         graph_buf[file_bufsize] = 0;
         av_file_unmap(file_buf, file_bufsize);
         lavfi->graph_str = graph_buf;
     }
 
21435734
     if (!lavfi->graph_str)
         lavfi->graph_str = av_strdup(avctx->filename);
 
     /* parse the graph, create a stream for each open output */
     if (!(lavfi->graph = avfilter_graph_alloc()))
         FAIL(AVERROR(ENOMEM));
 
838bd731
     if ((ret = avfilter_graph_parse_ptr(lavfi->graph, lavfi->graph_str,
21435734
                                     &input_links, &output_links, avctx)) < 0)
         FAIL(ret);
 
     if (input_links) {
         av_log(avctx, AV_LOG_ERROR,
                "Open inputs in the filtergraph are not acceptable\n");
         FAIL(AVERROR(EINVAL));
     }
 
     /* count the outputs */
     for (n = 0, inout = output_links; inout; n++, inout = inout->next);
 
     if (!(lavfi->sink_stream_map = av_malloc(sizeof(int) * n)))
         FAIL(AVERROR(ENOMEM));
53d71335
     if (!(lavfi->sink_eof = av_mallocz(sizeof(int) * n)))
         FAIL(AVERROR(ENOMEM));
21435734
     if (!(lavfi->stream_sink_map = av_malloc(sizeof(int) * n)))
         FAIL(AVERROR(ENOMEM));
 
     for (i = 0; i < n; i++)
         lavfi->stream_sink_map[i] = -1;
 
     /* parse the output link names - they need to be of the form out0, out1, ...
      * create a mapping between them and the streams */
     for (i = 0, inout = output_links; inout; i++, inout = inout->next) {
         int stream_idx;
         if (!strcmp(inout->name, "out"))
             stream_idx = 0;
         else if (sscanf(inout->name, "out%d\n", &stream_idx) != 1) {
             av_log(avctx,  AV_LOG_ERROR,
                    "Invalid outpad name '%s'\n", inout->name);
             FAIL(AVERROR(EINVAL));
         }
 
         if ((unsigned)stream_idx >= n) {
             av_log(avctx, AV_LOG_ERROR,
                    "Invalid index was specified in output '%s', "
                    "must be a non-negative value < %d\n",
                    inout->name, n);
             FAIL(AVERROR(EINVAL));
         }
 
21dfd159
         /* is an audio or video output? */
4893c204
         type = inout->filter_ctx->output_pads[inout->pad_idx].type;
         if (type != AVMEDIA_TYPE_VIDEO && type != AVMEDIA_TYPE_AUDIO) {
21435734
             av_log(avctx,  AV_LOG_ERROR,
4893c204
                    "Output '%s' is not a video or audio output, not yet supported\n", inout->name);
21435734
             FAIL(AVERROR(EINVAL));
         }
 
         if (lavfi->stream_sink_map[stream_idx] != -1) {
             av_log(avctx,  AV_LOG_ERROR,
86b7db61
                    "An output with stream index %d was already specified\n",
21435734
                    stream_idx);
             FAIL(AVERROR(EINVAL));
         }
         lavfi->sink_stream_map[i] = stream_idx;
         lavfi->stream_sink_map[stream_idx] = i;
     }
 
     /* for each open output create a corresponding stream */
     for (i = 0, inout = output_links; inout; i++, inout = inout->next) {
         AVStream *st;
0e5ecd80
         if (!(st = avformat_new_stream(avctx, NULL)))
21435734
             FAIL(AVERROR(ENOMEM));
0e5ecd80
         st->id = i;
21435734
     }
 
     /* create a sink for each output and connect them to the graph */
     lavfi->sinks = av_malloc(sizeof(AVFilterContext *) * avctx->nb_streams);
     if (!lavfi->sinks)
         FAIL(AVERROR(ENOMEM));
 
     for (i = 0, inout = output_links; inout; i++, inout = inout->next) {
         AVFilterContext *sink;
4893c204
 
         type = inout->filter_ctx->output_pads[inout->pad_idx].type;
 
         if (type == AVMEDIA_TYPE_VIDEO && ! buffersink ||
             type == AVMEDIA_TYPE_AUDIO && ! abuffersink) {
                 av_log(avctx, AV_LOG_ERROR, "Missing required buffersink filter, aborting.\n");
                 FAIL(AVERROR_FILTER_NOT_FOUND);
         }
 
         if (type == AVMEDIA_TYPE_VIDEO) {
f1622a17
             ret = avfilter_graph_create_filter(&sink, buffersink,
                                                inout->name, NULL,
3fc7b471
                                                NULL, lavfi->graph);
9b595e86
             if (ret >= 0)
                 ret = av_opt_set_int_list(sink, "pix_fmts", pix_fmts,  AV_PIX_FMT_NONE, AV_OPT_SEARCH_CHILDREN);
f1622a17
             if (ret < 0)
                 goto end;
4893c204
         } else if (type == AVMEDIA_TYPE_AUDIO) {
534a82a3
             enum AVSampleFormat sample_fmts[] = { AV_SAMPLE_FMT_U8,
                                                   AV_SAMPLE_FMT_S16,
                                                   AV_SAMPLE_FMT_S32,
                                                   AV_SAMPLE_FMT_FLT,
                                                   AV_SAMPLE_FMT_DBL, -1 };
4893c204
 
             ret = avfilter_graph_create_filter(&sink, abuffersink,
                                                inout->name, NULL,
a1e7e02e
                                                NULL, lavfi->graph);
9b595e86
             if (ret >= 0)
                 ret = av_opt_set_int_list(sink, "sample_fmts", sample_fmts,  AV_SAMPLE_FMT_NONE, AV_OPT_SEARCH_CHILDREN);
4893c204
             if (ret < 0)
                 goto end;
863fb11f
             ret = av_opt_set_int(sink, "all_channel_counts", 1,
                                  AV_OPT_SEARCH_CHILDREN);
             if (ret < 0)
                 goto end;
4893c204
         }
c4415f6e
 
21435734
         lavfi->sinks[i] = sink;
a9d1878a
         if ((ret = avfilter_link(inout->filter_ctx, inout->pad_idx, sink, 0)) < 0)
21435734
             FAIL(ret);
     }
 
     /* configure the graph */
     if ((ret = avfilter_graph_config(lavfi->graph, avctx)) < 0)
         FAIL(ret);
 
1fa88f34
     if (lavfi->dump_graph) {
         char *dump = avfilter_graph_dump(lavfi->graph, lavfi->dump_graph);
         fputs(dump, stderr);
         fflush(stderr);
         av_free(dump);
     }
 
21435734
     /* fill each stream with the information in the corresponding sink */
     for (i = 0; i < avctx->nb_streams; i++) {
         AVFilterLink *link = lavfi->sinks[lavfi->stream_sink_map[i]]->inputs[0];
         AVStream *st = avctx->streams[i];
         st->codec->codec_type = link->type;
215b7724
         avpriv_set_pts_info(st, 64, link->time_base.num, link->time_base.den);
21435734
         if (link->type == AVMEDIA_TYPE_VIDEO) {
7a72695c
             st->codec->codec_id   = AV_CODEC_ID_RAWVIDEO;
21435734
             st->codec->pix_fmt    = link->format;
             st->codec->time_base  = link->time_base;
             st->codec->width      = link->w;
             st->codec->height     = link->h;
6a5c693a
             st       ->sample_aspect_ratio =
             st->codec->sample_aspect_ratio = link->sample_aspect_ratio;
b56e029b
             avctx->probesize = FFMAX(avctx->probesize,
                                      link->w * link->h *
                                      av_get_padded_bits_per_pixel(av_pix_fmt_desc_get(link->format)) *
                                      30);
4893c204
         } else if (link->type == AVMEDIA_TYPE_AUDIO) {
534a82a3
             st->codec->codec_id    = av_get_pcm_codec(link->format, -1);
f3d138ab
             st->codec->channels    = avfilter_link_get_channels(link);
4893c204
             st->codec->sample_fmt  = link->format;
             st->codec->sample_rate = link->sample_rate;
             st->codec->time_base   = link->time_base;
             st->codec->channel_layout = link->channel_layout;
7a72695c
             if (st->codec->codec_id == AV_CODEC_ID_NONE)
534a82a3
                 av_log(avctx, AV_LOG_ERROR,
                        "Could not find PCM codec for sample format %s.\n",
                        av_get_sample_fmt_name(link->format));
21435734
         }
     }
 
b90912be
     if (!(lavfi->decoded_frame = av_frame_alloc()))
         FAIL(AVERROR(ENOMEM));
 
21435734
 end:
acb67c5b
     av_free(pix_fmts);
21435734
     avfilter_inout_free(&input_links);
     avfilter_inout_free(&output_links);
     if (ret < 0)
         lavfi_read_close(avctx);
     return ret;
 }
 
 static int lavfi_read_packet(AVFormatContext *avctx, AVPacket *pkt)
 {
     LavfiContext *lavfi = avctx->priv_data;
     double min_pts = DBL_MAX;
4893c204
     int stream_idx, min_pts_sink_idx = 0;
b90912be
     AVFrame *frame = lavfi->decoded_frame;
21435734
     AVPicture pict;
b90912be
     AVDictionary *frame_metadata;
81980bf7
     int ret, i;
     int size = 0;
21435734
 
     /* iterate through all the graph sinks. Select the sink with the
      * minimum PTS */
     for (i = 0; i < avctx->nb_streams; i++) {
         AVRational tb = lavfi->sinks[i]->inputs[0]->time_base;
         double d;
53d71335
         int ret;
 
         if (lavfi->sink_eof[i])
             continue;
 
b90912be
         ret = av_buffersink_get_frame_flags(lavfi->sinks[i], frame,
                                             AV_BUFFERSINK_FLAG_PEEK);
53d71335
         if (ret == AVERROR_EOF) {
             av_dlog(avctx, "EOF sink_idx:%d\n", i);
             lavfi->sink_eof[i] = 1;
             continue;
         } else if (ret < 0)
21435734
             return ret;
b90912be
         d = av_rescale_q(frame->pts, tb, AV_TIME_BASE_Q);
6da590d0
         av_dlog(avctx, "sink_idx:%d time:%f\n", i, d);
b90912be
         av_frame_unref(frame);
6da590d0
 
21435734
         if (d < min_pts) {
             min_pts = d;
             min_pts_sink_idx = i;
         }
     }
53d71335
     if (min_pts == DBL_MAX)
         return AVERROR_EOF;
 
6da590d0
     av_dlog(avctx, "min_pts_sink_idx:%i\n", min_pts_sink_idx);
21435734
 
b90912be
     av_buffersink_get_frame_flags(lavfi->sinks[min_pts_sink_idx], frame, 0);
4893c204
     stream_idx = lavfi->sink_stream_map[min_pts_sink_idx];
21435734
 
b90912be
     if (frame->width /* FIXME best way of testing a video */) {
         size = avpicture_get_size(frame->format, frame->width, frame->height);
e3fc0e82
         if ((ret = av_new_packet(pkt, size)) < 0)
             return ret;
21435734
 
b90912be
         memcpy(pict.data,     frame->data,     4*sizeof(frame->data[0]));
         memcpy(pict.linesize, frame->linesize, 4*sizeof(frame->linesize[0]));
4893c204
 
b90912be
         avpicture_layout(&pict, frame->format, frame->width, frame->height,
                          pkt->data, size);
     } else if (av_frame_get_channels(frame) /* FIXME test audio */) {
         size = frame->nb_samples * av_get_bytes_per_sample(frame->format) *
                                    av_frame_get_channels(frame);
4893c204
         if ((ret = av_new_packet(pkt, size)) < 0)
             return ret;
b90912be
         memcpy(pkt->data, frame->data[0], size);
4893c204
     }
21435734
 
b90912be
     frame_metadata = av_frame_get_metadata(frame);
     if (frame_metadata) {
6fb2fd89
         uint8_t *metadata;
         AVDictionaryEntry *e = NULL;
         AVBPrint meta_buf;
 
         av_bprint_init(&meta_buf, 0, AV_BPRINT_SIZE_UNLIMITED);
b90912be
         while ((e = av_dict_get(frame_metadata, "", e, AV_DICT_IGNORE_SUFFIX))) {
6fb2fd89
             av_bprintf(&meta_buf, "%s", e->key);
             av_bprint_chars(&meta_buf, '\0', 1);
             av_bprintf(&meta_buf, "%s", e->value);
             av_bprint_chars(&meta_buf, '\0', 1);
         }
         if (!av_bprint_is_complete(&meta_buf) ||
             !(metadata = av_packet_new_side_data(pkt, AV_PKT_DATA_STRINGS_METADATA,
                                                  meta_buf.len))) {
             av_bprint_finalize(&meta_buf, NULL);
             return AVERROR(ENOMEM);
         }
         memcpy(metadata, meta_buf.str, meta_buf.len);
         av_bprint_finalize(&meta_buf, NULL);
     }
 
4893c204
     pkt->stream_index = stream_idx;
b90912be
     pkt->pts = frame->pts;
     pkt->pos = av_frame_get_pkt_pos(frame);
21435734
     pkt->size = size;
b90912be
     av_frame_unref(frame);
21435734
     return size;
 }
 
 #define OFFSET(x) offsetof(LavfiContext, x)
 
 #define DEC AV_OPT_FLAG_DECODING_PARAM
 
 static const AVOption options[] = {
30a265f0
     { "graph",     "set libavfilter graph", OFFSET(graph_str),  AV_OPT_TYPE_STRING, {.str = NULL}, 0, 0, DEC },
8b03cd3c
     { "graph_file","set libavfilter graph filename", OFFSET(graph_filename), AV_OPT_TYPE_STRING, {.str = NULL}, 0, 0, DEC},
30a265f0
     { "dumpgraph", "dump graph to stderr",  OFFSET(dump_graph), AV_OPT_TYPE_STRING, {.str = NULL}, 0, 0, DEC },
21435734
     { NULL },
 };
 
 static const AVClass lavfi_class = {
     .class_name = "lavfi indev",
     .item_name  = av_default_item_name,
     .option     = options,
     .version    = LIBAVUTIL_VERSION_INT,
 };
 
 AVInputFormat ff_lavfi_demuxer = {
     .name           = "lavfi",
     .long_name      = NULL_IF_CONFIG_SMALL("Libavfilter virtual input device"),
     .priv_data_size = sizeof(LavfiContext),
     .read_header    = lavfi_read_header,
     .read_packet    = lavfi_read_packet,
     .read_close     = lavfi_read_close,
     .flags          = AVFMT_NOFILE,
     .priv_class     = &lavfi_class,
 };