libavfilter/src_movie.c
9b8bb626
 /*
  * Copyright (c) 2010 Stefano Sabatini
  * Copyright (c) 2008 Victor Paesa
  *
  * 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
  * movie video source
  *
  * @todo use direct rendering (no allocation of a new frame)
  * @todo support a PTS correction mechanism
  */
 
 #include <float.h>
ccdfa3e2
 #include <stdint.h>
a8ff830b
 
 #include "libavutil/attributes.h"
9b8bb626
 #include "libavutil/avstring.h"
a7ac05ce
 #include "libavutil/avassert.h"
9b8bb626
 #include "libavutil/opt.h"
7ffe76e5
 #include "libavutil/imgutils.h"
229843aa
 #include "libavutil/internal.h"
a7ac05ce
 #include "libavutil/timestamp.h"
65541801
 
 #include "libavcodec/avcodec.h"
 
9b8bb626
 #include "libavformat/avformat.h"
65541801
 
4522df52
 #include "audio.h"
9b8bb626
 #include "avfilter.h"
1cbf7fb4
 #include "formats.h"
c7b9eab2
 #include "internal.h"
ad60b3b1
 #include "video.h"
9b8bb626
 
74a8dbe1
 typedef struct MovieStream {
a7ac05ce
     AVStream *st;
8cae006c
     AVCodecContext *codec_ctx;
a7ac05ce
     int done;
fdd8aac7
     int64_t discontinuity_threshold;
     int64_t last_pts;
a7ac05ce
 } MovieStream;
ac726a4f
 
74a8dbe1
 typedef struct MovieContext {
3e4666f3
     /* common A/V fields */
9b8bb626
     const AVClass *class;
     int64_t seek_point;   ///< seekpoint in microseconds
     double seek_point_d;
     char *format_name;
     char *file_name;
a7ac05ce
     char *stream_specs; /**< user-provided list of streams, separated by + */
     int stream_index; /**< for compatibility */
d19d52d4
     int loop_count;
fdd8aac7
     int64_t discontinuity_threshold;
     int64_t ts_offset;
9b8bb626
 
     AVFormatContext *format_ctx;
a7ac05ce
     int eof;
     AVPacket pkt, pkt0;
9b8bb626
 
a7ac05ce
     int max_stream_index; /**< max stream # actually used for output */
     MovieStream *st; /**< array of all streams, one per output */
     int *out_index; /**< stream number -> output number map, or -1 */
9b8bb626
 } MovieContext;
 
 #define OFFSET(x) offsetof(MovieContext, x)
292f6815
 #define FLAGS AV_OPT_FLAG_FILTERING_PARAM | AV_OPT_FLAG_AUDIO_PARAM | AV_OPT_FLAG_VIDEO_PARAM
9b8bb626
 
 static const AVOption movie_options[]= {
3a3d9844
     { "filename",     NULL,                      OFFSET(file_name),    AV_OPT_TYPE_STRING,                                    .flags = FLAGS },
     { "format_name",  "set format name",         OFFSET(format_name),  AV_OPT_TYPE_STRING,                                    .flags = FLAGS },
     { "f",            "set format name",         OFFSET(format_name),  AV_OPT_TYPE_STRING,                                    .flags = FLAGS },
     { "stream_index", "set stream index",        OFFSET(stream_index), AV_OPT_TYPE_INT,    { .i64 = -1 }, -1, INT_MAX,                 FLAGS  },
     { "si",           "set stream index",        OFFSET(stream_index), AV_OPT_TYPE_INT,    { .i64 = -1 }, -1, INT_MAX,                 FLAGS  },
     { "seek_point",   "set seekpoint (seconds)", OFFSET(seek_point_d), AV_OPT_TYPE_DOUBLE, { .dbl =  0 },  0, (INT64_MAX-1) / 1000000, FLAGS },
     { "sp",           "set seekpoint (seconds)", OFFSET(seek_point_d), AV_OPT_TYPE_DOUBLE, { .dbl =  0 },  0, (INT64_MAX-1) / 1000000, FLAGS },
     { "streams",      "set streams",             OFFSET(stream_specs), AV_OPT_TYPE_STRING, {.str =  0},  CHAR_MAX, CHAR_MAX, FLAGS },
     { "s",            "set streams",             OFFSET(stream_specs), AV_OPT_TYPE_STRING, {.str =  0},  CHAR_MAX, CHAR_MAX, FLAGS },
     { "loop",         "set loop count",          OFFSET(loop_count),   AV_OPT_TYPE_INT,    {.i64 =  1},  0,        INT_MAX, FLAGS },
fdd8aac7
     { "discontinuity", "set discontinuity threshold", OFFSET(discontinuity_threshold), AV_OPT_TYPE_DURATION, {.i64 = 0}, 0, INT64_MAX, FLAGS },
3a3d9844
     { NULL },
9b8bb626
 };
 
a7ac05ce
 static int movie_config_output_props(AVFilterLink *outlink);
 static int movie_request_frame(AVFilterLink *outlink);
 
 static AVStream *find_stream(void *log, AVFormatContext *avf, const char *spec)
 {
     int i, ret, already = 0, stream_id = -1;
adaa7743
     char type_char[2], dummy;
a7ac05ce
     AVStream *found = NULL;
     enum AVMediaType type;
 
adaa7743
     ret = sscanf(spec, "d%1[av]%d%c", type_char, &stream_id, &dummy);
a7ac05ce
     if (ret >= 1 && ret <= 2) {
adaa7743
         type = type_char[0] == 'v' ? AVMEDIA_TYPE_VIDEO : AVMEDIA_TYPE_AUDIO;
a7ac05ce
         ret = av_find_best_stream(avf, type, stream_id, -1, NULL, 0);
         if (ret < 0) {
             av_log(log, AV_LOG_ERROR, "No %s stream with index '%d' found\n",
                    av_get_media_type_string(type), stream_id);
             return NULL;
         }
         return avf->streams[ret];
     }
     for (i = 0; i < avf->nb_streams; i++) {
         ret = avformat_match_stream_specifier(avf, avf->streams[i], spec);
         if (ret < 0) {
             av_log(log, AV_LOG_ERROR,
                    "Invalid stream specifier \"%s\"\n", spec);
             return NULL;
         }
         if (!ret)
             continue;
         if (avf->streams[i]->discard != AVDISCARD_ALL) {
             already++;
             continue;
         }
         if (found) {
             av_log(log, AV_LOG_WARNING,
                    "Ambiguous stream specifier \"%s\", using #%d\n", spec, i);
             break;
         }
         found = avf->streams[i];
     }
     if (!found) {
         av_log(log, AV_LOG_WARNING, "Stream specifier \"%s\" %s\n", spec,
                already ? "matched only already used streams" :
                          "did not match any stream");
         return NULL;
     }
8cae006c
     if (found->codecpar->codec_type != AVMEDIA_TYPE_VIDEO &&
         found->codecpar->codec_type != AVMEDIA_TYPE_AUDIO) {
a7ac05ce
         av_log(log, AV_LOG_ERROR, "Stream specifier \"%s\" matched a %s stream,"
                "currently unsupported by libavfilter\n", spec,
8cae006c
                av_get_media_type_string(found->codecpar->codec_type));
a7ac05ce
         return NULL;
     }
     return found;
 }
 
 static int open_stream(void *log, MovieStream *st)
 {
     AVCodec *codec;
     int ret;
 
8cae006c
     codec = avcodec_find_decoder(st->st->codecpar->codec_id);
a7ac05ce
     if (!codec) {
         av_log(log, AV_LOG_ERROR, "Failed to find any codec\n");
         return AVERROR(EINVAL);
     }
 
8cae006c
     st->codec_ctx = avcodec_alloc_context3(codec);
     if (!st->codec_ctx)
         return AVERROR(ENOMEM);
 
     ret = avcodec_parameters_to_context(st->codec_ctx, st->st->codecpar);
     if (ret < 0)
         return ret;
 
     st->codec_ctx->refcounted_frames = 1;
c69acbf8
 
8cae006c
     if ((ret = avcodec_open2(st->codec_ctx, codec, NULL)) < 0) {
a7ac05ce
         av_log(log, AV_LOG_ERROR, "Failed to open codec\n");
         return ret;
     }
 
     return 0;
 }
 
52bd9cb4
 static int guess_channel_layout(MovieStream *st, int st_index, void *log_ctx)
 {
8cae006c
     AVCodecParameters *dec_par = st->st->codecpar;
52bd9cb4
     char buf[256];
8cae006c
     int64_t chl = av_get_default_channel_layout(dec_par->channels);
52bd9cb4
 
     if (!chl) {
         av_log(log_ctx, AV_LOG_ERROR,
                "Channel layout is not set in stream %d, and could not "
                "be guessed from the number of channels (%d)\n",
8cae006c
                st_index, dec_par->channels);
52bd9cb4
         return AVERROR(EINVAL);
     }
 
8cae006c
     av_get_channel_layout_string(buf, sizeof(buf), dec_par->channels, chl);
52bd9cb4
     av_log(log_ctx, AV_LOG_WARNING,
            "Channel layout is not set in output stream %d, "
            "guessed channel layout is '%s'\n",
            st_index, buf);
8cae006c
     dec_par->channel_layout = chl;
52bd9cb4
     return 0;
 }
 
3a3d9844
 static av_cold int movie_common_init(AVFilterContext *ctx)
9b8bb626
 {
     MovieContext *movie = ctx->priv;
     AVInputFormat *iformat = NULL;
     int64_t timestamp;
f7539562
     int nb_streams = 1, ret, i;
a7ac05ce
     char default_streams[16], *stream_specs, *spec, *cursor;
     char name[16];
     AVStream *st;
3e4666f3
 
c679a1c3
     if (!movie->file_name) {
3e4666f3
         av_log(ctx, AV_LOG_ERROR, "No filename provided!\n");
         return AVERROR(EINVAL);
     }
 
     movie->seek_point = movie->seek_point_d * 1000000 + 0.5;
9b8bb626
 
a7ac05ce
     stream_specs = movie->stream_specs;
     if (!stream_specs) {
         snprintf(default_streams, sizeof(default_streams), "d%c%d",
                  !strcmp(ctx->filter->name, "amovie") ? 'a' : 'v',
                  movie->stream_index);
         stream_specs = default_streams;
     }
f7539562
     for (cursor = stream_specs; *cursor; cursor++)
a7ac05ce
         if (*cursor == '+')
             nb_streams++;
 
     if (movie->loop_count != 1 && nb_streams != 1) {
         av_log(ctx, AV_LOG_ERROR,
                "Loop with several streams is currently unsupported\n");
         return AVERROR_PATCHWELCOME;
     }
 
9b8bb626
     av_register_all();
 
     // Try to find the movie format (container)
     iformat = movie->format_name ? av_find_input_format(movie->format_name) : NULL;
 
     movie->format_ctx = NULL;
603b8bc2
     if ((ret = avformat_open_input(&movie->format_ctx, movie->file_name, iformat, NULL)) < 0) {
9b8bb626
         av_log(ctx, AV_LOG_ERROR,
603b8bc2
                "Failed to avformat_open_input '%s'\n", movie->file_name);
9b8bb626
         return ret;
     }
a67c061e
     if ((ret = avformat_find_stream_info(movie->format_ctx, NULL)) < 0)
9b8bb626
         av_log(ctx, AV_LOG_WARNING, "Failed to find stream info\n");
 
     // if seeking requested, we execute it
     if (movie->seek_point > 0) {
         timestamp = movie->seek_point;
         // add the stream start time, should it exist
         if (movie->format_ctx->start_time != AV_NOPTS_VALUE) {
c1f9734f
             if (timestamp > 0 && movie->format_ctx->start_time > INT64_MAX - timestamp) {
9b8bb626
                 av_log(ctx, AV_LOG_ERROR,
                        "%s: seek value overflow with start_time:%"PRId64" seek_point:%"PRId64"\n",
                        movie->file_name, movie->format_ctx->start_time, movie->seek_point);
                 return AVERROR(EINVAL);
             }
             timestamp += movie->format_ctx->start_time;
         }
         if ((ret = av_seek_frame(movie->format_ctx, -1, timestamp, AVSEEK_FLAG_BACKWARD)) < 0) {
             av_log(ctx, AV_LOG_ERROR, "%s: could not seek to position %"PRId64"\n",
                    movie->file_name, timestamp);
             return ret;
         }
     }
 
a7ac05ce
     for (i = 0; i < movie->format_ctx->nb_streams; i++)
         movie->format_ctx->streams[i]->discard = AVDISCARD_ALL;
 
     movie->st = av_calloc(nb_streams, sizeof(*movie->st));
     if (!movie->st)
         return AVERROR(ENOMEM);
 
     for (i = 0; i < nb_streams; i++) {
         spec = av_strtok(stream_specs, "+", &cursor);
         if (!spec)
             return AVERROR_BUG;
         stream_specs = NULL; /* for next strtok */
         st = find_stream(ctx, movie->format_ctx, spec);
         if (!st)
             return AVERROR(EINVAL);
         st->discard = AVDISCARD_DEFAULT;
         movie->st[i].st = st;
         movie->max_stream_index = FFMAX(movie->max_stream_index, st->index);
fdd8aac7
         movie->st[i].discontinuity_threshold =
             av_rescale_q(movie->discontinuity_threshold, AV_TIME_BASE_Q, st->time_base);
9b8bb626
     }
a7ac05ce
     if (av_strtok(NULL, "+", &cursor))
         return AVERROR_BUG;
 
     movie->out_index = av_calloc(movie->max_stream_index + 1,
                                  sizeof(*movie->out_index));
     if (!movie->out_index)
         return AVERROR(ENOMEM);
     for (i = 0; i <= movie->max_stream_index; i++)
         movie->out_index[i] = -1;
     for (i = 0; i < nb_streams; i++) {
         AVFilterPad pad = { 0 };
f7539562
         movie->out_index[movie->st[i].st->index] = i;
a7ac05ce
         snprintf(name, sizeof(name), "out%d", i);
8cae006c
         pad.type          = movie->st[i].st->codecpar->codec_type;
a7ac05ce
         pad.name          = av_strdup(name);
145a8471
         if (!pad.name)
             return AVERROR(ENOMEM);
a7ac05ce
         pad.config_props  = movie_config_output_props;
         pad.request_frame = movie_request_frame;
48ddd8dd
         if ((ret = ff_insert_outpad(ctx, i, &pad)) < 0) {
             av_freep(&pad.name);
             return ret;
         }
8cae006c
         if ( movie->st[i].st->codecpar->codec_type == AVMEDIA_TYPE_AUDIO &&
             !movie->st[i].st->codecpar->channel_layout) {
52bd9cb4
             ret = guess_channel_layout(&movie->st[i], i, ctx);
             if (ret < 0)
                 return ret;
         }
2991d935
         ret = open_stream(ctx, &movie->st[i]);
         if (ret < 0)
             return ret;
9b8bb626
     }
 
1a49a169
     av_log(ctx, AV_LOG_VERBOSE, "seek_point:%"PRIi64" format_name:%s file_name:%s stream_index:%d\n",
9b8bb626
            movie->seek_point, movie->format_name, movie->file_name,
            movie->stream_index);
 
     return 0;
 }
 
a7ac05ce
 static av_cold void movie_uninit(AVFilterContext *ctx)
9b8bb626
 {
     MovieContext *movie = ctx->priv;
a7ac05ce
     int i;
9b8bb626
 
a7ac05ce
     for (i = 0; i < ctx->nb_outputs; i++) {
         av_freep(&ctx->output_pads[i].name);
         if (movie->st[i].st)
8cae006c
             avcodec_free_context(&movie->st[i].codec_ctx);
a7ac05ce
     }
     av_freep(&movie->st);
     av_freep(&movie->out_index);
9b8bb626
     if (movie->format_ctx)
cd3716b9
         avformat_close_input(&movie->format_ctx);
9b8bb626
 }
 
a7ac05ce
 static int movie_query_formats(AVFilterContext *ctx)
3e4666f3
 {
     MovieContext *movie = ctx->priv;
a7ac05ce
     int list[] = { 0, -1 };
     int64_t list64[] = { 0, -1 };
6aaac24d
     int i, ret;
a7ac05ce
 
     for (i = 0; i < ctx->nb_outputs; i++) {
         MovieStream *st = &movie->st[i];
8cae006c
         AVCodecParameters *c = st->st->codecpar;
a7ac05ce
         AVFilterLink *outlink = ctx->outputs[i];
 
         switch (c->codec_type) {
         case AVMEDIA_TYPE_VIDEO:
8cae006c
             list[0] = c->format;
6aaac24d
             if ((ret = ff_formats_ref(ff_make_format_list(list), &outlink->in_formats)) < 0)
                 return ret;
a7ac05ce
             break;
         case AVMEDIA_TYPE_AUDIO:
8cae006c
             list[0] = c->format;
6aaac24d
             if ((ret = ff_formats_ref(ff_make_format_list(list), &outlink->in_formats)) < 0)
                 return ret;
a7ac05ce
             list[0] = c->sample_rate;
6aaac24d
             if ((ret = ff_formats_ref(ff_make_format_list(list), &outlink->in_samplerates)) < 0)
                 return ret;
52bd9cb4
             list64[0] = c->channel_layout;
6aaac24d
             if ((ret = ff_channel_layouts_ref(avfilter_make_format64_list(list64),
                                    &outlink->in_channel_layouts)) < 0)
                 return ret;
a7ac05ce
             break;
         }
     }
3e4666f3
 
a7ac05ce
     return 0;
 }
3e4666f3
 
a7ac05ce
 static int movie_config_output_props(AVFilterLink *outlink)
 {
     AVFilterContext *ctx = outlink->src;
     MovieContext *movie  = ctx->priv;
     unsigned out_id = FF_OUTLINK_IDX(outlink);
     MovieStream *st = &movie->st[out_id];
8cae006c
     AVCodecParameters *c = st->st->codecpar;
a7ac05ce
 
     outlink->time_base = st->st->time_base;
 
     switch (c->codec_type) {
     case AVMEDIA_TYPE_VIDEO:
         outlink->w          = c->width;
         outlink->h          = c->height;
         outlink->frame_rate = st->st->r_frame_rate;
         break;
     case AVMEDIA_TYPE_AUDIO:
         break;
     }
3e4666f3
 
     return 0;
 }
 
a05a44e2
 static char *describe_frame_to_str(char *dst, size_t dst_size,
e756effd
                                    AVFrame *frame, enum AVMediaType frame_type,
                                    AVFilterLink *link)
a7ac05ce
 {
e756effd
     switch (frame_type) {
a7ac05ce
     case AVMEDIA_TYPE_VIDEO:
         snprintf(dst, dst_size,
a05a44e2
                  "video pts:%s time:%s size:%dx%d aspect:%d/%d",
                  av_ts2str(frame->pts), av_ts2timestr(frame->pts, &link->time_base),
                  frame->width, frame->height,
                  frame->sample_aspect_ratio.num,
                  frame->sample_aspect_ratio.den);
a7ac05ce
                  break;
     case AVMEDIA_TYPE_AUDIO:
         snprintf(dst, dst_size,
a05a44e2
                  "audio pts:%s time:%s samples:%d",
                  av_ts2str(frame->pts), av_ts2timestr(frame->pts, &link->time_base),
                  frame->nb_samples);
a7ac05ce
                  break;
     default:
e756effd
         snprintf(dst, dst_size, "%s BUG", av_get_media_type_string(frame_type));
a7ac05ce
         break;
     }
     return dst;
9b8bb626
 }
 
a7ac05ce
 static int rewind_file(AVFilterContext *ctx)
9b8bb626
 {
a7ac05ce
     MovieContext *movie = ctx->priv;
     int64_t timestamp = movie->seek_point;
     int ret, i;
9b8bb626
 
a7ac05ce
     if (movie->format_ctx->start_time != AV_NOPTS_VALUE)
         timestamp += movie->format_ctx->start_time;
     ret = av_seek_frame(movie->format_ctx, -1, timestamp, AVSEEK_FLAG_BACKWARD);
     if (ret < 0) {
         av_log(ctx, AV_LOG_ERROR, "Unable to loop: %s\n", av_err2str(ret));
         movie->loop_count = 1; /* do not try again */
         return ret;
     }
9b8bb626
 
a7ac05ce
     for (i = 0; i < ctx->nb_outputs; i++) {
8cae006c
         avcodec_flush_buffers(movie->st[i].codec_ctx);
a7ac05ce
         movie->st[i].done = 0;
     }
     movie->eof = 0;
9b8bb626
     return 0;
 }
 
a7ac05ce
 /**
  * Try to push a frame to the requested output.
  *
12d2bbf3
  * @param ctx     filter context
  * @param out_id  number of output where a frame is wanted;
  *                if the frame is read from file, used to set the return value;
  *                if the codec is being flushed, flush the corresponding stream
a7ac05ce
  * @return  1 if a frame was pushed on the requested output,
  *          0 if another attempt is possible,
  *          <0 AVERROR code
  */
 static int movie_push_frame(AVFilterContext *ctx, unsigned out_id)
9b8bb626
 {
a7ac05ce
     MovieContext *movie = ctx->priv;
     AVPacket *pkt = &movie->pkt;
e756effd
     enum AVMediaType frame_type;
a7ac05ce
     MovieStream *st;
     int ret, got_frame = 0, pkt_out_id;
     AVFilterLink *outlink;
97392553
     AVFrame *frame;
a7ac05ce
 
     if (!pkt->size) {
         if (movie->eof) {
             if (movie->st[out_id].done) {
c88d98fe
                 if (movie->loop_count != 1) {
a7ac05ce
                     ret = rewind_file(ctx);
                     if (ret < 0)
                         return ret;
                     movie->loop_count -= movie->loop_count > 1;
                     av_log(ctx, AV_LOG_VERBOSE, "Stream finished, looping.\n");
                     return 0; /* retry */
c88d98fe
                 }
ac726a4f
                 return AVERROR_EOF;
9b8bb626
             }
584acbf5
             pkt->stream_index = movie->st[out_id].st->index;
a7ac05ce
             /* packet is already ready for flushing */
         } else {
             ret = av_read_frame(movie->format_ctx, &movie->pkt0);
             if (ret < 0) {
                 av_init_packet(&movie->pkt0); /* ready for flushing */
                 *pkt = movie->pkt0;
                 if (ret == AVERROR_EOF) {
                     movie->eof = 1;
                     return 0; /* start flushing */
                 }
                 return ret;
             }
             *pkt = movie->pkt0;
9b8bb626
         }
     }
 
a7ac05ce
     pkt_out_id = pkt->stream_index > movie->max_stream_index ? -1 :
                  movie->out_index[pkt->stream_index];
     if (pkt_out_id < 0) {
c2f861ca
         av_packet_unref(&movie->pkt0);
a7ac05ce
         pkt->size = 0; /* ready for next run */
         pkt->data = NULL;
         return 0;
     }
     st = &movie->st[pkt_out_id];
     outlink = ctx->outputs[pkt_out_id];
 
97392553
     frame = av_frame_alloc();
     if (!frame)
a05a44e2
         return AVERROR(ENOMEM);
 
8cae006c
     frame_type = st->st->codecpar->codec_type;
e756effd
     switch (frame_type) {
a7ac05ce
     case AVMEDIA_TYPE_VIDEO:
8cae006c
         ret = avcodec_decode_video2(st->codec_ctx, frame, &got_frame, pkt);
a7ac05ce
         break;
     case AVMEDIA_TYPE_AUDIO:
8cae006c
         ret = avcodec_decode_audio4(st->codec_ctx, frame, &got_frame, pkt);
a7ac05ce
         break;
     default:
         ret = AVERROR(ENOSYS);
         break;
     }
     if (ret < 0) {
         av_log(ctx, AV_LOG_WARNING, "Decode error: %s\n", av_err2str(ret));
97392553
         av_frame_free(&frame);
c2f861ca
         av_packet_unref(&movie->pkt0);
87bc6489
         movie->pkt.size = 0;
         movie->pkt.data = NULL;
a7ac05ce
         return 0;
     }
8cae006c
     if (!ret || st->st->codecpar->codec_type == AVMEDIA_TYPE_VIDEO)
a7ac05ce
         ret = pkt->size;
 
     pkt->data += ret;
     pkt->size -= ret;
     if (pkt->size <= 0) {
c2f861ca
         av_packet_unref(&movie->pkt0);
a7ac05ce
         pkt->size = 0; /* ready for next run */
         pkt->data = NULL;
     }
     if (!got_frame) {
         if (!ret)
             st->done = 1;
97392553
         av_frame_free(&frame);
a7ac05ce
         return 0;
     }
 
6af050d7
     frame->pts = frame->best_effort_timestamp;
fdd8aac7
     if (frame->pts != AV_NOPTS_VALUE) {
         if (movie->ts_offset)
             frame->pts += av_rescale_q_rnd(movie->ts_offset, AV_TIME_BASE_Q, outlink->time_base, AV_ROUND_UP);
         if (st->discontinuity_threshold) {
             if (st->last_pts != AV_NOPTS_VALUE) {
                 int64_t diff = frame->pts - st->last_pts;
                 if (diff < 0 || diff > st->discontinuity_threshold) {
                     av_log(ctx, AV_LOG_VERBOSE, "Discontinuity in stream:%d diff:%"PRId64"\n", pkt_out_id, diff);
                     movie->ts_offset += av_rescale_q_rnd(-diff, outlink->time_base, AV_TIME_BASE_Q, AV_ROUND_UP);
                     frame->pts -= diff;
                 }
             }
         }
         st->last_pts = frame->pts;
     }
229843aa
     ff_dlog(ctx, "movie_push_frame(): file:'%s' %s\n", movie->file_name,
97392553
             describe_frame_to_str((char[1024]){0}, 1024, frame, frame_type, outlink));
a05a44e2
 
8cae006c
     if (st->st->codecpar->codec_type == AVMEDIA_TYPE_VIDEO) {
97392553
         if (frame->format != outlink->format) {
48f7d5f0
             av_log(ctx, AV_LOG_ERROR, "Format changed %s -> %s, discarding frame\n",
                 av_get_pix_fmt_name(outlink->format),
97392553
                 av_get_pix_fmt_name(frame->format)
48f7d5f0
                 );
97392553
             av_frame_free(&frame);
48f7d5f0
             return 0;
         }
     }
97392553
     ret = ff_filter_frame(outlink, frame);
a7ac05ce
 
05854f55
     if (ret < 0)
         return ret;
a7ac05ce
     return pkt_out_id == out_id;
9b8bb626
 }
 
e0ddc2e9
 static int movie_request_frame(AVFilterLink *outlink)
9b8bb626
 {
a7ac05ce
     AVFilterContext *ctx = outlink->src;
     unsigned out_id = FF_OUTLINK_IDX(outlink);
9b8bb626
     int ret;
 
a7ac05ce
     while (1) {
         ret = movie_push_frame(ctx, out_id);
         if (ret)
             return FFMIN(ret, 0);
88beb2df
     }
9b8bb626
 }
 
defab082
 static int process_command(AVFilterContext *ctx, const char *cmd, const char *args,
                            char *res, int res_len, int flags)
 {
     MovieContext *movie = ctx->priv;
     int ret = AVERROR(ENOSYS);
 
     if (!strcmp(cmd, "seek")) {
         int idx, flags, i;
         int64_t ts;
         char tail[2];
 
         if (sscanf(args, "%i|%"SCNi64"|%i %1s", &idx, &ts, &flags, tail) != 3)
             return AVERROR(EINVAL);
 
         ret = av_seek_frame(movie->format_ctx, idx, ts, flags);
         if (ret < 0)
             return ret;
 
         for (i = 0; i < ctx->nb_outputs; i++) {
             avcodec_flush_buffers(movie->st[i].codec_ctx);
             movie->st[i].done = 0;
         }
         return ret;
     } else if (!strcmp(cmd, "get_duration")) {
         int print_len;
         char tail[2];
 
         if (!res || res_len <= 0)
             return AVERROR(EINVAL);
 
         if (args && sscanf(args, "%1s", tail) == 1)
             return AVERROR(EINVAL);
 
         print_len = snprintf(res, res_len, "%"PRId64, movie->format_ctx->duration);
         if (print_len < 0 || print_len >= res_len)
             return AVERROR(EINVAL);
 
         return 0;
     }
 
     return ret;
 }
 
a7ac05ce
 #if CONFIG_MOVIE_FILTER
 
831a999d
 AVFILTER_DEFINE_CLASS(movie);
 
325f6e0a
 AVFilter ff_avsrc_movie = {
9b8bb626
     .name          = "movie",
     .description   = NULL_IF_CONFIG_SMALL("Read from a movie source."),
     .priv_size     = sizeof(MovieContext),
3a3d9844
     .priv_class    = &movie_class,
ac604e44
     .init          = movie_common_init,
a7ac05ce
     .uninit        = movie_uninit,
e0ddc2e9
     .query_formats = movie_query_formats,
9b8bb626
 
91af7609
     .inputs    = NULL,
2d9d4440
     .outputs   = NULL,
73180f5b
     .flags     = AVFILTER_FLAG_DYNAMIC_OUTPUTS,
defab082
     .process_command = process_command
9b8bb626
 };
24ddfb2b
 
 #endif  /* CONFIG_MOVIE_FILTER */
 
 #if CONFIG_AMOVIE_FILTER
 
831a999d
 #define amovie_options movie_options
 AVFILTER_DEFINE_CLASS(amovie);
 
325f6e0a
 AVFilter ff_avsrc_amovie = {
24ddfb2b
     .name          = "amovie",
     .description   = NULL_IF_CONFIG_SMALL("Read audio from a movie source."),
     .priv_size     = sizeof(MovieContext),
ac604e44
     .init          = movie_common_init,
a7ac05ce
     .uninit        = movie_uninit,
     .query_formats = movie_query_formats,
24ddfb2b
 
2d9d4440
     .inputs     = NULL,
     .outputs    = NULL,
42d621d1
     .priv_class = &amovie_class,
73180f5b
     .flags      = AVFILTER_FLAG_DYNAMIC_OUTPUTS,
defab082
     .process_command = process_command,
24ddfb2b
 };
 
 #endif /* CONFIG_AMOVIE_FILTER */