FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
src_movie.c
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2010 Stefano Sabatini
3  * Copyright (c) 2008 Victor Paesa
4  *
5  * This file is part of FFmpeg.
6  *
7  * FFmpeg is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * FFmpeg is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with FFmpeg; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21 
22 /**
23  * @file
24  * movie video source
25  *
26  * @todo use direct rendering (no allocation of a new frame)
27  * @todo support a PTS correction mechanism
28  */
29 
30 #include <float.h>
31 #include <stdint.h>
32 
33 #include "libavutil/attributes.h"
34 #include "libavutil/avstring.h"
35 #include "libavutil/avassert.h"
36 #include "libavutil/opt.h"
37 #include "libavutil/imgutils.h"
38 #include "libavutil/internal.h"
39 #include "libavutil/timestamp.h"
40 
41 #include "libavcodec/avcodec.h"
42 
43 #include "libavformat/avformat.h"
44 
45 #include "audio.h"
46 #include "avfilter.h"
47 #include "formats.h"
48 #include "internal.h"
49 #include "video.h"
50 
51 typedef struct MovieStream {
54  int done;
56  int64_t last_pts;
57 } MovieStream;
58 
59 typedef struct MovieContext {
60  /* common A/V fields */
61  const AVClass *class;
62  int64_t seek_point; ///< seekpoint in microseconds
63  double seek_point_d;
64  char *format_name;
65  char *file_name;
66  char *stream_specs; /**< user-provided list of streams, separated by + */
67  int stream_index; /**< for compatibility */
70  int64_t ts_offset;
71 
73  int eof;
75 
76  int max_stream_index; /**< max stream # actually used for output */
77  MovieStream *st; /**< array of all streams, one per output */
78  int *out_index; /**< stream number -> output number map, or -1 */
79 } MovieContext;
80 
81 #define OFFSET(x) offsetof(MovieContext, x)
82 #define FLAGS AV_OPT_FLAG_FILTERING_PARAM | AV_OPT_FLAG_AUDIO_PARAM | AV_OPT_FLAG_VIDEO_PARAM
83 
84 static const AVOption movie_options[]= {
85  { "filename", NULL, OFFSET(file_name), AV_OPT_TYPE_STRING, .flags = FLAGS },
86  { "format_name", "set format name", OFFSET(format_name), AV_OPT_TYPE_STRING, .flags = FLAGS },
87  { "f", "set format name", OFFSET(format_name), AV_OPT_TYPE_STRING, .flags = FLAGS },
88  { "stream_index", "set stream index", OFFSET(stream_index), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, INT_MAX, FLAGS },
89  { "si", "set stream index", OFFSET(stream_index), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, INT_MAX, FLAGS },
90  { "seek_point", "set seekpoint (seconds)", OFFSET(seek_point_d), AV_OPT_TYPE_DOUBLE, { .dbl = 0 }, 0, (INT64_MAX-1) / 1000000, FLAGS },
91  { "sp", "set seekpoint (seconds)", OFFSET(seek_point_d), AV_OPT_TYPE_DOUBLE, { .dbl = 0 }, 0, (INT64_MAX-1) / 1000000, FLAGS },
92  { "streams", "set streams", OFFSET(stream_specs), AV_OPT_TYPE_STRING, {.str = 0}, CHAR_MAX, CHAR_MAX, FLAGS },
93  { "s", "set streams", OFFSET(stream_specs), AV_OPT_TYPE_STRING, {.str = 0}, CHAR_MAX, CHAR_MAX, FLAGS },
94  { "loop", "set loop count", OFFSET(loop_count), AV_OPT_TYPE_INT, {.i64 = 1}, 0, INT_MAX, FLAGS },
95  { "discontinuity", "set discontinuity threshold", OFFSET(discontinuity_threshold), AV_OPT_TYPE_DURATION, {.i64 = 0}, 0, INT64_MAX, FLAGS },
96  { NULL },
97 };
98 
99 static int movie_config_output_props(AVFilterLink *outlink);
100 static int movie_request_frame(AVFilterLink *outlink);
101 
102 static AVStream *find_stream(void *log, AVFormatContext *avf, const char *spec)
103 {
104  int i, ret, already = 0, stream_id = -1;
105  char type_char[2], dummy;
106  AVStream *found = NULL;
107  enum AVMediaType type;
108 
109  ret = sscanf(spec, "d%1[av]%d%c", type_char, &stream_id, &dummy);
110  if (ret >= 1 && ret <= 2) {
111  type = type_char[0] == 'v' ? AVMEDIA_TYPE_VIDEO : AVMEDIA_TYPE_AUDIO;
112  ret = av_find_best_stream(avf, type, stream_id, -1, NULL, 0);
113  if (ret < 0) {
114  av_log(log, AV_LOG_ERROR, "No %s stream with index '%d' found\n",
115  av_get_media_type_string(type), stream_id);
116  return NULL;
117  }
118  return avf->streams[ret];
119  }
120  for (i = 0; i < avf->nb_streams; i++) {
121  ret = avformat_match_stream_specifier(avf, avf->streams[i], spec);
122  if (ret < 0) {
123  av_log(log, AV_LOG_ERROR,
124  "Invalid stream specifier \"%s\"\n", spec);
125  return NULL;
126  }
127  if (!ret)
128  continue;
129  if (avf->streams[i]->discard != AVDISCARD_ALL) {
130  already++;
131  continue;
132  }
133  if (found) {
134  av_log(log, AV_LOG_WARNING,
135  "Ambiguous stream specifier \"%s\", using #%d\n", spec, i);
136  break;
137  }
138  found = avf->streams[i];
139  }
140  if (!found) {
141  av_log(log, AV_LOG_WARNING, "Stream specifier \"%s\" %s\n", spec,
142  already ? "matched only already used streams" :
143  "did not match any stream");
144  return NULL;
145  }
146  if (found->codecpar->codec_type != AVMEDIA_TYPE_VIDEO &&
148  av_log(log, AV_LOG_ERROR, "Stream specifier \"%s\" matched a %s stream,"
149  "currently unsupported by libavfilter\n", spec,
151  return NULL;
152  }
153  return found;
154 }
155 
156 static int open_stream(void *log, MovieStream *st)
157 {
158  AVCodec *codec;
159  int ret;
160 
161  codec = avcodec_find_decoder(st->st->codecpar->codec_id);
162  if (!codec) {
163  av_log(log, AV_LOG_ERROR, "Failed to find any codec\n");
164  return AVERROR(EINVAL);
165  }
166 
167  st->codec_ctx = avcodec_alloc_context3(codec);
168  if (!st->codec_ctx)
169  return AVERROR(ENOMEM);
170 
172  if (ret < 0)
173  return ret;
174 
175  st->codec_ctx->refcounted_frames = 1;
176 
177  if ((ret = avcodec_open2(st->codec_ctx, codec, NULL)) < 0) {
178  av_log(log, AV_LOG_ERROR, "Failed to open codec\n");
179  return ret;
180  }
181 
182  return 0;
183 }
184 
185 static int guess_channel_layout(MovieStream *st, int st_index, void *log_ctx)
186 {
187  AVCodecParameters *dec_par = st->st->codecpar;
188  char buf[256];
189  int64_t chl = av_get_default_channel_layout(dec_par->channels);
190 
191  if (!chl) {
192  av_log(log_ctx, AV_LOG_ERROR,
193  "Channel layout is not set in stream %d, and could not "
194  "be guessed from the number of channels (%d)\n",
195  st_index, dec_par->channels);
196  return AVERROR(EINVAL);
197  }
198 
199  av_get_channel_layout_string(buf, sizeof(buf), dec_par->channels, chl);
200  av_log(log_ctx, AV_LOG_WARNING,
201  "Channel layout is not set in output stream %d, "
202  "guessed channel layout is '%s'\n",
203  st_index, buf);
204  dec_par->channel_layout = chl;
205  return 0;
206 }
207 
209 {
210  MovieContext *movie = ctx->priv;
212  int64_t timestamp;
213  int nb_streams = 1, ret, i;
214  char default_streams[16], *stream_specs, *spec, *cursor;
215  char name[16];
216  AVStream *st;
217 
218  if (!movie->file_name) {
219  av_log(ctx, AV_LOG_ERROR, "No filename provided!\n");
220  return AVERROR(EINVAL);
221  }
222 
223  movie->seek_point = movie->seek_point_d * 1000000 + 0.5;
224 
225  stream_specs = movie->stream_specs;
226  if (!stream_specs) {
227  snprintf(default_streams, sizeof(default_streams), "d%c%d",
228  !strcmp(ctx->filter->name, "amovie") ? 'a' : 'v',
229  movie->stream_index);
230  stream_specs = default_streams;
231  }
232  for (cursor = stream_specs; *cursor; cursor++)
233  if (*cursor == '+')
234  nb_streams++;
235 
236  if (movie->loop_count != 1 && nb_streams != 1) {
237  av_log(ctx, AV_LOG_ERROR,
238  "Loop with several streams is currently unsupported\n");
239  return AVERROR_PATCHWELCOME;
240  }
241 
242  av_register_all();
243 
244  // Try to find the movie format (container)
245  iformat = movie->format_name ? av_find_input_format(movie->format_name) : NULL;
246 
247  movie->format_ctx = NULL;
248  if ((ret = avformat_open_input(&movie->format_ctx, movie->file_name, iformat, NULL)) < 0) {
249  av_log(ctx, AV_LOG_ERROR,
250  "Failed to avformat_open_input '%s'\n", movie->file_name);
251  return ret;
252  }
253  if ((ret = avformat_find_stream_info(movie->format_ctx, NULL)) < 0)
254  av_log(ctx, AV_LOG_WARNING, "Failed to find stream info\n");
255 
256  // if seeking requested, we execute it
257  if (movie->seek_point > 0) {
258  timestamp = movie->seek_point;
259  // add the stream start time, should it exist
260  if (movie->format_ctx->start_time != AV_NOPTS_VALUE) {
261  if (timestamp > 0 && movie->format_ctx->start_time > INT64_MAX - timestamp) {
262  av_log(ctx, AV_LOG_ERROR,
263  "%s: seek value overflow with start_time:%"PRId64" seek_point:%"PRId64"\n",
264  movie->file_name, movie->format_ctx->start_time, movie->seek_point);
265  return AVERROR(EINVAL);
266  }
267  timestamp += movie->format_ctx->start_time;
268  }
269  if ((ret = av_seek_frame(movie->format_ctx, -1, timestamp, AVSEEK_FLAG_BACKWARD)) < 0) {
270  av_log(ctx, AV_LOG_ERROR, "%s: could not seek to position %"PRId64"\n",
271  movie->file_name, timestamp);
272  return ret;
273  }
274  }
275 
276  for (i = 0; i < movie->format_ctx->nb_streams; i++)
277  movie->format_ctx->streams[i]->discard = AVDISCARD_ALL;
278 
279  movie->st = av_calloc(nb_streams, sizeof(*movie->st));
280  if (!movie->st)
281  return AVERROR(ENOMEM);
282 
283  for (i = 0; i < nb_streams; i++) {
284  spec = av_strtok(stream_specs, "+", &cursor);
285  if (!spec)
286  return AVERROR_BUG;
287  stream_specs = NULL; /* for next strtok */
288  st = find_stream(ctx, movie->format_ctx, spec);
289  if (!st)
290  return AVERROR(EINVAL);
292  movie->st[i].st = st;
293  movie->max_stream_index = FFMAX(movie->max_stream_index, st->index);
294  movie->st[i].discontinuity_threshold =
296  }
297  if (av_strtok(NULL, "+", &cursor))
298  return AVERROR_BUG;
299 
300  movie->out_index = av_calloc(movie->max_stream_index + 1,
301  sizeof(*movie->out_index));
302  if (!movie->out_index)
303  return AVERROR(ENOMEM);
304  for (i = 0; i <= movie->max_stream_index; i++)
305  movie->out_index[i] = -1;
306  for (i = 0; i < nb_streams; i++) {
307  AVFilterPad pad = { 0 };
308  movie->out_index[movie->st[i].st->index] = i;
309  snprintf(name, sizeof(name), "out%d", i);
310  pad.type = movie->st[i].st->codecpar->codec_type;
311  pad.name = av_strdup(name);
312  if (!pad.name)
313  return AVERROR(ENOMEM);
316  if ((ret = ff_insert_outpad(ctx, i, &pad)) < 0) {
317  av_freep(&pad.name);
318  return ret;
319  }
320  if ( movie->st[i].st->codecpar->codec_type == AVMEDIA_TYPE_AUDIO &&
321  !movie->st[i].st->codecpar->channel_layout) {
322  ret = guess_channel_layout(&movie->st[i], i, ctx);
323  if (ret < 0)
324  return ret;
325  }
326  ret = open_stream(ctx, &movie->st[i]);
327  if (ret < 0)
328  return ret;
329  }
330 
331  av_log(ctx, AV_LOG_VERBOSE, "seek_point:%"PRIi64" format_name:%s file_name:%s stream_index:%d\n",
332  movie->seek_point, movie->format_name, movie->file_name,
333  movie->stream_index);
334 
335  return 0;
336 }
337 
339 {
340  MovieContext *movie = ctx->priv;
341  int i;
342 
343  for (i = 0; i < ctx->nb_outputs; i++) {
344  av_freep(&ctx->output_pads[i].name);
345  if (movie->st[i].st)
346  avcodec_free_context(&movie->st[i].codec_ctx);
347  }
348  av_freep(&movie->st);
349  av_freep(&movie->out_index);
350  if (movie->format_ctx)
352 }
353 
355 {
356  MovieContext *movie = ctx->priv;
357  int list[] = { 0, -1 };
358  int64_t list64[] = { 0, -1 };
359  int i, ret;
360 
361  for (i = 0; i < ctx->nb_outputs; i++) {
362  MovieStream *st = &movie->st[i];
363  AVCodecParameters *c = st->st->codecpar;
364  AVFilterLink *outlink = ctx->outputs[i];
365 
366  switch (c->codec_type) {
367  case AVMEDIA_TYPE_VIDEO:
368  list[0] = c->format;
369  if ((ret = ff_formats_ref(ff_make_format_list(list), &outlink->in_formats)) < 0)
370  return ret;
371  break;
372  case AVMEDIA_TYPE_AUDIO:
373  list[0] = c->format;
374  if ((ret = ff_formats_ref(ff_make_format_list(list), &outlink->in_formats)) < 0)
375  return ret;
376  list[0] = c->sample_rate;
377  if ((ret = ff_formats_ref(ff_make_format_list(list), &outlink->in_samplerates)) < 0)
378  return ret;
379  list64[0] = c->channel_layout;
381  &outlink->in_channel_layouts)) < 0)
382  return ret;
383  break;
384  }
385  }
386 
387  return 0;
388 }
389 
391 {
392  AVFilterContext *ctx = outlink->src;
393  MovieContext *movie = ctx->priv;
394  unsigned out_id = FF_OUTLINK_IDX(outlink);
395  MovieStream *st = &movie->st[out_id];
396  AVCodecParameters *c = st->st->codecpar;
397 
398  outlink->time_base = st->st->time_base;
399 
400  switch (c->codec_type) {
401  case AVMEDIA_TYPE_VIDEO:
402  outlink->w = c->width;
403  outlink->h = c->height;
404  outlink->frame_rate = st->st->r_frame_rate;
405  break;
406  case AVMEDIA_TYPE_AUDIO:
407  break;
408  }
409 
410  return 0;
411 }
412 
413 static char *describe_frame_to_str(char *dst, size_t dst_size,
414  AVFrame *frame, enum AVMediaType frame_type,
415  AVFilterLink *link)
416 {
417  switch (frame_type) {
418  case AVMEDIA_TYPE_VIDEO:
419  snprintf(dst, dst_size,
420  "video pts:%s time:%s size:%dx%d aspect:%d/%d",
421  av_ts2str(frame->pts), av_ts2timestr(frame->pts, &link->time_base),
422  frame->width, frame->height,
423  frame->sample_aspect_ratio.num,
424  frame->sample_aspect_ratio.den);
425  break;
426  case AVMEDIA_TYPE_AUDIO:
427  snprintf(dst, dst_size,
428  "audio pts:%s time:%s samples:%d",
429  av_ts2str(frame->pts), av_ts2timestr(frame->pts, &link->time_base),
430  frame->nb_samples);
431  break;
432  default:
433  snprintf(dst, dst_size, "%s BUG", av_get_media_type_string(frame_type));
434  break;
435  }
436  return dst;
437 }
438 
440 {
441  MovieContext *movie = ctx->priv;
442  int64_t timestamp = movie->seek_point;
443  int ret, i;
444 
445  if (movie->format_ctx->start_time != AV_NOPTS_VALUE)
446  timestamp += movie->format_ctx->start_time;
447  ret = av_seek_frame(movie->format_ctx, -1, timestamp, AVSEEK_FLAG_BACKWARD);
448  if (ret < 0) {
449  av_log(ctx, AV_LOG_ERROR, "Unable to loop: %s\n", av_err2str(ret));
450  movie->loop_count = 1; /* do not try again */
451  return ret;
452  }
453 
454  for (i = 0; i < ctx->nb_outputs; i++) {
456  movie->st[i].done = 0;
457  }
458  movie->eof = 0;
459  return 0;
460 }
461 
462 /**
463  * Try to push a frame to the requested output.
464  *
465  * @param ctx filter context
466  * @param out_id number of output where a frame is wanted;
467  * if the frame is read from file, used to set the return value;
468  * if the codec is being flushed, flush the corresponding stream
469  * @return 1 if a frame was pushed on the requested output,
470  * 0 if another attempt is possible,
471  * <0 AVERROR code
472  */
473 static int movie_push_frame(AVFilterContext *ctx, unsigned out_id)
474 {
475  MovieContext *movie = ctx->priv;
476  AVPacket *pkt = &movie->pkt;
477  enum AVMediaType frame_type;
478  MovieStream *st;
479  int ret, got_frame = 0, pkt_out_id;
480  AVFilterLink *outlink;
481  AVFrame *frame;
482 
483  if (!pkt->size) {
484  if (movie->eof) {
485  if (movie->st[out_id].done) {
486  if (movie->loop_count != 1) {
487  ret = rewind_file(ctx);
488  if (ret < 0)
489  return ret;
490  movie->loop_count -= movie->loop_count > 1;
491  av_log(ctx, AV_LOG_VERBOSE, "Stream finished, looping.\n");
492  return 0; /* retry */
493  }
494  return AVERROR_EOF;
495  }
496  pkt->stream_index = movie->st[out_id].st->index;
497  /* packet is already ready for flushing */
498  } else {
499  ret = av_read_frame(movie->format_ctx, &movie->pkt0);
500  if (ret < 0) {
501  av_init_packet(&movie->pkt0); /* ready for flushing */
502  *pkt = movie->pkt0;
503  if (ret == AVERROR_EOF) {
504  movie->eof = 1;
505  return 0; /* start flushing */
506  }
507  return ret;
508  }
509  *pkt = movie->pkt0;
510  }
511  }
512 
513  pkt_out_id = pkt->stream_index > movie->max_stream_index ? -1 :
514  movie->out_index[pkt->stream_index];
515  if (pkt_out_id < 0) {
516  av_packet_unref(&movie->pkt0);
517  pkt->size = 0; /* ready for next run */
518  pkt->data = NULL;
519  return 0;
520  }
521  st = &movie->st[pkt_out_id];
522  outlink = ctx->outputs[pkt_out_id];
523 
524  frame = av_frame_alloc();
525  if (!frame)
526  return AVERROR(ENOMEM);
527 
528  frame_type = st->st->codecpar->codec_type;
529  switch (frame_type) {
530  case AVMEDIA_TYPE_VIDEO:
531  ret = avcodec_decode_video2(st->codec_ctx, frame, &got_frame, pkt);
532  break;
533  case AVMEDIA_TYPE_AUDIO:
534  ret = avcodec_decode_audio4(st->codec_ctx, frame, &got_frame, pkt);
535  break;
536  default:
537  ret = AVERROR(ENOSYS);
538  break;
539  }
540  if (ret < 0) {
541  av_log(ctx, AV_LOG_WARNING, "Decode error: %s\n", av_err2str(ret));
542  av_frame_free(&frame);
543  av_packet_unref(&movie->pkt0);
544  movie->pkt.size = 0;
545  movie->pkt.data = NULL;
546  return 0;
547  }
548  if (!ret || st->st->codecpar->codec_type == AVMEDIA_TYPE_VIDEO)
549  ret = pkt->size;
550 
551  pkt->data += ret;
552  pkt->size -= ret;
553  if (pkt->size <= 0) {
554  av_packet_unref(&movie->pkt0);
555  pkt->size = 0; /* ready for next run */
556  pkt->data = NULL;
557  }
558  if (!got_frame) {
559  if (!ret)
560  st->done = 1;
561  av_frame_free(&frame);
562  return 0;
563  }
564 
565  frame->pts = frame->best_effort_timestamp;
566  if (frame->pts != AV_NOPTS_VALUE) {
567  if (movie->ts_offset)
568  frame->pts += av_rescale_q_rnd(movie->ts_offset, AV_TIME_BASE_Q, outlink->time_base, AV_ROUND_UP);
569  if (st->discontinuity_threshold) {
570  if (st->last_pts != AV_NOPTS_VALUE) {
571  int64_t diff = frame->pts - st->last_pts;
572  if (diff < 0 || diff > st->discontinuity_threshold) {
573  av_log(ctx, AV_LOG_VERBOSE, "Discontinuity in stream:%d diff:%"PRId64"\n", pkt_out_id, diff);
574  movie->ts_offset += av_rescale_q_rnd(-diff, outlink->time_base, AV_TIME_BASE_Q, AV_ROUND_UP);
575  frame->pts -= diff;
576  }
577  }
578  }
579  st->last_pts = frame->pts;
580  }
581  ff_dlog(ctx, "movie_push_frame(): file:'%s' %s\n", movie->file_name,
582  describe_frame_to_str((char[1024]){0}, 1024, frame, frame_type, outlink));
583 
584  if (st->st->codecpar->codec_type == AVMEDIA_TYPE_VIDEO) {
585  if (frame->format != outlink->format) {
586  av_log(ctx, AV_LOG_ERROR, "Format changed %s -> %s, discarding frame\n",
587  av_get_pix_fmt_name(outlink->format),
589  );
590  av_frame_free(&frame);
591  return 0;
592  }
593  }
594  ret = ff_filter_frame(outlink, frame);
595 
596  if (ret < 0)
597  return ret;
598  return pkt_out_id == out_id;
599 }
600 
601 static int movie_request_frame(AVFilterLink *outlink)
602 {
603  AVFilterContext *ctx = outlink->src;
604  unsigned out_id = FF_OUTLINK_IDX(outlink);
605  int ret;
606 
607  while (1) {
608  ret = movie_push_frame(ctx, out_id);
609  if (ret)
610  return FFMIN(ret, 0);
611  }
612 }
613 
614 static int process_command(AVFilterContext *ctx, const char *cmd, const char *args,
615  char *res, int res_len, int flags)
616 {
617  MovieContext *movie = ctx->priv;
618  int ret = AVERROR(ENOSYS);
619 
620  if (!strcmp(cmd, "seek")) {
621  int idx, flags, i;
622  int64_t ts;
623  char tail[2];
624 
625  if (sscanf(args, "%i|%"SCNi64"|%i %1s", &idx, &ts, &flags, tail) != 3)
626  return AVERROR(EINVAL);
627 
628  ret = av_seek_frame(movie->format_ctx, idx, ts, flags);
629  if (ret < 0)
630  return ret;
631 
632  for (i = 0; i < ctx->nb_outputs; i++) {
634  movie->st[i].done = 0;
635  }
636  return ret;
637  } else if (!strcmp(cmd, "get_duration")) {
638  int print_len;
639  char tail[2];
640 
641  if (!res || res_len <= 0)
642  return AVERROR(EINVAL);
643 
644  if (args && sscanf(args, "%1s", tail) == 1)
645  return AVERROR(EINVAL);
646 
647  print_len = snprintf(res, res_len, "%"PRId64, movie->format_ctx->duration);
648  if (print_len < 0 || print_len >= res_len)
649  return AVERROR(EINVAL);
650 
651  return 0;
652  }
653 
654  return ret;
655 }
656 
657 #if CONFIG_MOVIE_FILTER
658 
659 AVFILTER_DEFINE_CLASS(movie);
660 
661 AVFilter ff_avsrc_movie = {
662  .name = "movie",
663  .description = NULL_IF_CONFIG_SMALL("Read from a movie source."),
664  .priv_size = sizeof(MovieContext),
665  .priv_class = &movie_class,
667  .uninit = movie_uninit,
669 
670  .inputs = NULL,
671  .outputs = NULL,
674 };
675 
676 #endif /* CONFIG_MOVIE_FILTER */
677 
678 #if CONFIG_AMOVIE_FILTER
679 
680 #define amovie_options movie_options
681 AVFILTER_DEFINE_CLASS(amovie);
682 
683 AVFilter ff_avsrc_amovie = {
684  .name = "amovie",
685  .description = NULL_IF_CONFIG_SMALL("Read audio from a movie source."),
686  .priv_size = sizeof(MovieContext),
688  .uninit = movie_uninit,
690 
691  .inputs = NULL,
692  .outputs = NULL,
693  .priv_class = &amovie_class,
696 };
697 
698 #endif /* CONFIG_AMOVIE_FILTER */
#define AVSEEK_FLAG_BACKWARD
Definition: avformat.h:2423
#define NULL
Definition: coverity.c:32
static AVStream * find_stream(void *log, AVFormatContext *avf, const char *spec)
Definition: src_movie.c:102
int64_t discontinuity_threshold
Definition: src_movie.c:55
This structure describes decoded (raw) audio or video data.
Definition: frame.h:201
AVOption.
Definition: opt.h:246
int64_t ts_offset
Definition: src_movie.c:70
static av_cold void movie_uninit(AVFilterContext *ctx)
Definition: src_movie.c:338
misc image utilities
#define AV_LOG_WARNING
Something somehow does not look correct.
Definition: log.h:182
Main libavfilter public API header.
static av_cold int init(AVCodecContext *avctx)
Definition: avrndec.c:35
AVStream * st
Definition: src_movie.c:52
int64_t last_pts
Definition: src_movie.c:56
enum AVCodecID codec_id
Specific type of the encoded data (the codec used).
Definition: avcodec.h:4152
int num
Numerator.
Definition: rational.h:59
int index
stream index in AVFormatContext
Definition: avformat.h:890
int size
Definition: avcodec.h:1680
static const AVOption movie_options[]
Definition: src_movie.c:84
attribute_deprecated int avcodec_decode_audio4(AVCodecContext *avctx, AVFrame *frame, int *got_frame_ptr, const AVPacket *avpkt)
Decode the audio frame of size avpkt->size from avpkt->data into frame.
Definition: decode.c:837
enum AVMediaType type
AVFilterPad type.
Definition: internal.h:65
#define FF_OUTLINK_IDX(link)
Definition: internal.h:349
discard all
Definition: avcodec.h:830
static AVPacket pkt
char * stream_specs
user-provided list of streams, separated by +
Definition: src_movie.c:66
AVCodec.
Definition: avcodec.h:3739
This struct describes the properties of an encoded stream.
Definition: avcodec.h:4144
char * file_name
Definition: src_movie.c:65
Macro definitions for various function/variable attributes.
AVPacket pkt0
Definition: src_movie.c:74
void * av_calloc(size_t nmemb, size_t size)
Non-inlined equivalent of av_mallocz_array().
Definition: mem.c:230
AVFilterFormats * ff_make_format_list(const int *fmts)
Create a list of supported formats.
Definition: formats.c:283
Format I/O context.
Definition: avformat.h:1349
double seek_point_d
Definition: src_movie.c:63
const char * name
Pad name.
Definition: internal.h:60
int ff_channel_layouts_ref(AVFilterChannelLayouts *f, AVFilterChannelLayouts **ref)
Add *ref as a new reference to f.
Definition: formats.c:435
int ff_filter_frame(AVFilterLink *link, AVFrame *frame)
Send a frame of data to the next filter.
Definition: avfilter.c:1151
AVFilterPad * output_pads
array of output pads
Definition: avfilter.h:349
Round toward +infinity.
Definition: mathematics.h:83
static int nb_streams
Definition: ffprobe.c:276
#define av_cold
Definition: attributes.h:82
AVFrame * av_frame_alloc(void)
Allocate an AVFrame and set its fields to default values.
Definition: frame.c:150
int(* request_frame)(AVFilterLink *link)
Frame request callback.
Definition: internal.h:113
int width
Video only.
Definition: avcodec.h:4218
static av_cold int uninit(AVCodecContext *avctx)
Definition: crystalhd.c:279
AVOptions.
timestamp utils, mostly useful for debugging/logging purposes
int avformat_match_stream_specifier(AVFormatContext *s, AVStream *st, const char *spec)
Check if the stream st contained in s is matched by the stream specifier spec.
Definition: utils.c:4957
int64_t pts
Presentation timestamp in time_base units (time when frame should be shown to user).
Definition: frame.h:294
AVStream ** streams
A list of all streams in the file.
Definition: avformat.h:1417
int avcodec_parameters_to_context(AVCodecContext *codec, const AVCodecParameters *par)
Fill the codec context based on the values from the supplied codec parameters.
Definition: utils.c:2354
static AVFrame * frame
uint8_t * data
Definition: avcodec.h:1679
static int flags
Definition: log.c:57
#define ff_dlog(a,...)
#define AVERROR_EOF
End of file.
Definition: error.h:55
#define AV_LOG_VERBOSE
Detailed information.
Definition: log.h:192
#define AVFILTER_FLAG_DYNAMIC_OUTPUTS
The number of the filter outputs is not determined just by AVFilter.outputs.
Definition: avfilter.h:111
uint64_t channel_layout
Audio only.
Definition: avcodec.h:4254
#define av_log(a,...)
A filter pad used for either input or output.
Definition: internal.h:54
int64_t av_rescale_q(int64_t a, AVRational bq, AVRational cq)
Rescale a 64-bit integer by 2 rational numbers.
Definition: mathematics.c:142
int av_find_best_stream(AVFormatContext *ic, enum AVMediaType type, int wanted_stream_nb, int related_stream, AVCodec **decoder_ret, int flags)
Find the "best" stream in the file.
Definition: utils.c:4104
int width
Definition: frame.h:259
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:176
#define AVERROR(e)
Definition: error.h:43
void av_frame_free(AVFrame **frame)
Free the frame and any dynamically allocated objects in it, e.g.
Definition: frame.c:163
#define av_ts2timestr(ts, tb)
Convenience macro, the return value should be used only directly in function arguments but never stan...
Definition: timestamp.h:76
unsigned nb_outputs
number of output pads
Definition: avfilter.h:351
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:179
void * priv
private data for use by the filter
Definition: avfilter.h:353
enum AVMediaType codec_type
General type of the encoded data.
Definition: avcodec.h:4148
simple assert() macros that are a bit more flexible than ISO C assert().
#define FFMAX(a, b)
Definition: common.h:94
static int guess_channel_layout(MovieStream *st, int st_index, void *log_ctx)
Definition: src_movie.c:185
#define FLAGS
Definition: src_movie.c:82
common internal API header
unsigned int nb_streams
Number of elements in AVFormatContext.streams.
Definition: avformat.h:1405
AVInputFormat * av_find_input_format(const char *short_name)
Find AVInputFormat based on the short name of the input format.
Definition: format.c:164
#define FFMIN(a, b)
Definition: common.h:96
int64_t discontinuity_threshold
Definition: src_movie.c:69
AVCodecContext * avcodec_alloc_context3(const AVCodec *codec)
Allocate an AVCodecContext and set its fields to default values.
Definition: options.c:157
int ff_formats_ref(AVFilterFormats *f, AVFilterFormats **ref)
Add *ref as a new reference to formats.
Definition: formats.c:440
int loop_count
Definition: src_movie.c:68
#define av_err2str(errnum)
Convenience macro, the return value should be used only directly in function arguments but never stan...
Definition: error.h:119
AVFormatContext * ctx
Definition: movenc.c:48
static int movie_config_output_props(AVFilterLink *outlink)
Definition: src_movie.c:390
char * format_name
Definition: src_movie.c:64
int dummy
Definition: motion.c:64
static const AVFilterPad outputs[]
Definition: af_afftfilt.c:389
int max_stream_index
max stream # actually used for output
Definition: src_movie.c:76
static av_cold int movie_common_init(AVFilterContext *ctx)
Definition: src_movie.c:208
void av_get_channel_layout_string(char *buf, int buf_size, int nb_channels, uint64_t channel_layout)
Return a description of a channel layout.
Stream structure.
Definition: avformat.h:889
void avcodec_flush_buffers(AVCodecContext *avctx)
Reset the internal decoder state / flush internal buffers.
Definition: decode.c:1726
#define AVERROR_PATCHWELCOME
Not yet implemented in FFmpeg, patches welcome.
Definition: error.h:62
int format
format of the frame, -1 if unknown or unset Values correspond to enum AVPixelFormat for video frames...
Definition: frame.h:274
int * out_index
stream number -> output number map, or -1
Definition: src_movie.c:78
static AVInputFormat * iformat
Definition: ffprobe.c:253
static const AVFilterPad inputs[]
Definition: af_afftfilt.c:379
char * av_strdup(const char *s)
Duplicate a string.
Definition: mem.c:237
Libavcodec external API header.
AVFilterChannelLayouts * avfilter_make_format64_list(const int64_t *fmts)
Definition: formats.c:303
attribute_deprecated int avcodec_decode_video2(AVCodecContext *avctx, AVFrame *picture, int *got_picture_ptr, const AVPacket *avpkt)
Decode the video frame of size avpkt->size from avpkt->data into picture.
Definition: decode.c:830
void avcodec_free_context(AVCodecContext **avctx)
Free the codec context and everything associated with it and write NULL to the provided pointer...
Definition: options.c:172
#define AV_TIME_BASE_Q
Internal time base represented as fractional value.
Definition: avutil.h:260
main external API structure.
Definition: avcodec.h:1761
AVCodec * avcodec_find_decoder(enum AVCodecID id)
Find a registered decoder with a matching codec ID.
Definition: utils.c:1275
void av_packet_unref(AVPacket *pkt)
Wipe the packet.
Definition: avpacket.c:618
static int process_command(AVFilterContext *ctx, const char *cmd, const char *args, char *res, int res_len, int flags)
Definition: src_movie.c:614
AVRational sample_aspect_ratio
Sample aspect ratio for the video frame, 0/1 if unknown/unspecified.
Definition: frame.h:289
void * buf
Definition: avisynth_c.h:690
GLint GLenum type
Definition: opengl_enc.c:105
#define AVERROR_BUG
Internal bug, also see AVERROR_BUG2.
Definition: error.h:50
Describe the class of an AVClass context structure.
Definition: log.h:67
Filter definition.
Definition: avfilter.h:144
int64_t seek_point
seekpoint in microseconds
Definition: src_movie.c:62
static int movie_push_frame(AVFilterContext *ctx, unsigned out_id)
Try to push a frame to the requested output.
Definition: src_movie.c:473
AVMediaType
Definition: avutil.h:199
discard useless packets like 0 size packets in avi
Definition: avcodec.h:825
const char * name
Filter name.
Definition: avfilter.h:148
int avcodec_open2(AVCodecContext *avctx, const AVCodec *codec, AVDictionary **options)
Initialize the AVCodecContext to use the given AVCodec.
Definition: utils.c:627
#define snprintf
Definition: snprintf.h:34
int64_t best_effort_timestamp
frame timestamp estimated using various heuristics, in stream time base
Definition: frame.h:466
AVFilterLink ** outputs
array of pointers to output links
Definition: avfilter.h:350
int av_read_frame(AVFormatContext *s, AVPacket *pkt)
Return the next frame of a stream.
Definition: utils.c:1713
attribute_deprecated int refcounted_frames
If non-zero, the decoded audio and video frames returned from avcodec_decode_video2() and avcodec_dec...
Definition: avcodec.h:2694
static char * describe_frame_to_str(char *dst, size_t dst_size, AVFrame *frame, enum AVMediaType frame_type, AVFilterLink *link)
Definition: src_movie.c:413
const char * av_get_media_type_string(enum AVMediaType media_type)
Return a string describing the media_type enum, NULL if media_type is unknown.
Definition: utils.c:79
int64_t start_time
Position of the first frame of the component, in AV_TIME_BASE fractional seconds. ...
Definition: avformat.h:1434
int stream_index
for compatibility
Definition: src_movie.c:67
int av_seek_frame(AVFormatContext *s, int stream_index, int64_t timestamp, int flags)
Seek to the keyframe at timestamp.
Definition: utils.c:2450
char * av_strtok(char *s, const char *delim, char **saveptr)
Split the string into several tokens which can be accessed by successive calls to av_strtok()...
Definition: avstring.c:184
int sample_rate
Audio only.
Definition: avcodec.h:4262
#define OFFSET(x)
Definition: src_movie.c:81
static int movie_request_frame(AVFilterLink *outlink)
Definition: src_movie.c:601
Main libavformat public API header.
static int query_formats(AVFilterContext *ctx)
Definition: aeval.c:244
static int open_stream(void *log, MovieStream *st)
Definition: src_movie.c:156
int avformat_find_stream_info(AVFormatContext *ic, AVDictionary **options)
Read packets of a media file to get stream information.
Definition: utils.c:3498
static double c[64]
void av_init_packet(AVPacket *pkt)
Initialize optional fields of a packet with default values.
Definition: avpacket.c:33
int den
Denominator.
Definition: rational.h:60
AVPacket pkt
Definition: src_movie.c:74
void avformat_close_input(AVFormatContext **s)
Close an opened input AVFormatContext.
Definition: utils.c:4339
static int movie_query_formats(AVFilterContext *ctx)
Definition: src_movie.c:354
static av_always_inline int diff(const uint32_t a, const uint32_t b)
#define av_ts2str(ts)
Convenience macro, the return value should be used only directly in function arguments but never stan...
Definition: timestamp.h:54
#define AVFILTER_DEFINE_CLASS(fname)
Definition: internal.h:334
static int rewind_file(AVFilterContext *ctx)
Definition: src_movie.c:439
AVCodecContext * codec_ctx
Definition: src_movie.c:53
AVFormatContext * format_ctx
Definition: src_movie.c:72
int avformat_open_input(AVFormatContext **ps, const char *url, AVInputFormat *fmt, AVDictionary **options)
Open an input stream and read the header.
Definition: utils.c:510
int channels
Audio only.
Definition: avcodec.h:4258
An instance of a filter.
Definition: avfilter.h:338
int64_t av_get_default_channel_layout(int nb_channels)
Return default channel layout for a given number of channels.
int64_t duration
Duration of the stream, in AV_TIME_BASE fractional seconds.
Definition: avformat.h:1444
int height
Definition: frame.h:259
#define av_freep(p)
int(* config_props)(AVFilterLink *link)
Link configuration callback.
Definition: internal.h:129
AVCodecParameters * codecpar
Definition: avformat.h:1252
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:134
const char * av_get_pix_fmt_name(enum AVPixelFormat pix_fmt)
Return the short name for a pixel format, NULL in case pix_fmt is unknown.
Definition: pixdesc.c:2335
int stream_index
Definition: avcodec.h:1681
internal API functions
AVRational time_base
This is the fundamental unit of time (in seconds) in terms of which frame timestamps are represented...
Definition: avformat.h:926
enum AVDiscard discard
Selects which packets can be discarded at will and do not need to be demuxed.
Definition: avformat.h:952
AVRational r_frame_rate
Real base framerate of the stream.
Definition: avformat.h:1108
static int ff_insert_outpad(AVFilterContext *f, unsigned index, AVFilterPad *p)
Insert a new output pad for the filter.
Definition: internal.h:285
This structure stores compressed data.
Definition: avcodec.h:1656
void av_register_all(void)
Initialize libavformat and register all the muxers, demuxers and protocols.
Definition: allformats.c:390
int nb_samples
number of audio samples (per channel) described by this frame
Definition: frame.h:267
const AVFilter * filter
the AVFilter of which this is an instance
Definition: avfilter.h:341
for(j=16;j >0;--j)
#define AV_NOPTS_VALUE
Undefined timestamp value.
Definition: avutil.h:248
const char * name
Definition: opengl_enc.c:103
MovieStream * st
array of all streams, one per output
Definition: src_movie.c:77