Libav
vsrc_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 Libav.
6  *
7  * Libav 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  * Libav 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 Libav; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21 
31 #include <float.h>
32 #include <stdint.h>
33 
34 #include "libavutil/attributes.h"
35 #include "libavutil/avstring.h"
36 #include "libavutil/opt.h"
37 #include "libavutil/imgutils.h"
38 #include "libavformat/avformat.h"
39 #include "avfilter.h"
40 #include "formats.h"
41 #include "internal.h"
42 #include "video.h"
43 
44 typedef struct MovieContext {
45  const AVClass *class;
46  int64_t seek_point;
47  double seek_point_d;
48  char *format_name;
49  char *file_name;
51 
54  int is_done;
56 
57  int w, h;
58 } MovieContext;
59 
60 #define OFFSET(x) offsetof(MovieContext, x)
61 #define FLAGS AV_OPT_FLAG_VIDEO_PARAM
62 
63 static const AVOption movie_options[]= {
64  { "filename", NULL, OFFSET(file_name), AV_OPT_TYPE_STRING, .flags = FLAGS },
65  { "format_name", "set format name", OFFSET(format_name), AV_OPT_TYPE_STRING, .flags = FLAGS },
66  { "f", "set format name", OFFSET(format_name), AV_OPT_TYPE_STRING, .flags = FLAGS },
67  { "stream_index", "set stream index", OFFSET(stream_index), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, INT_MAX, FLAGS },
68  { "si", "set stream index", OFFSET(stream_index), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, INT_MAX, FLAGS },
69  { "seek_point", "set seekpoint (seconds)", OFFSET(seek_point_d), AV_OPT_TYPE_DOUBLE, { .dbl = 0 }, 0, (INT64_MAX-1) / 1000000, FLAGS },
70  { "sp", "set seekpoint (seconds)", OFFSET(seek_point_d), AV_OPT_TYPE_DOUBLE, { .dbl = 0 }, 0, (INT64_MAX-1) / 1000000, FLAGS },
71  { NULL },
72 };
73 
74 static const char *movie_get_name(void *ctx)
75 {
76  return "movie";
77 }
78 
79 static const AVClass movie_class = {
80  "MovieContext",
82  movie_options
83 };
84 
86 {
87  MovieContext *movie = ctx->priv;
89  AVCodec *codec;
90  int ret;
91  int64_t timestamp;
92 
94 
95  // Try to find the movie format (container)
96  iformat = movie->format_name ? av_find_input_format(movie->format_name) : NULL;
97 
98  movie->format_ctx = NULL;
99  if ((ret = avformat_open_input(&movie->format_ctx, movie->file_name, iformat, NULL)) < 0) {
100  av_log(ctx, AV_LOG_ERROR,
101  "Failed to avformat_open_input '%s'\n", movie->file_name);
102  return ret;
103  }
104  if ((ret = avformat_find_stream_info(movie->format_ctx, NULL)) < 0)
105  av_log(ctx, AV_LOG_WARNING, "Failed to find stream info\n");
106 
107  // if seeking requested, we execute it
108  if (movie->seek_point > 0) {
109  timestamp = movie->seek_point;
110  // add the stream start time, should it exist
111  if (movie->format_ctx->start_time != AV_NOPTS_VALUE) {
112  if (timestamp > INT64_MAX - movie->format_ctx->start_time) {
113  av_log(ctx, AV_LOG_ERROR,
114  "%s: seek value overflow with start_time:%"PRId64" seek_point:%"PRId64"\n",
115  movie->file_name, movie->format_ctx->start_time, movie->seek_point);
116  return AVERROR(EINVAL);
117  }
118  timestamp += movie->format_ctx->start_time;
119  }
120  if ((ret = av_seek_frame(movie->format_ctx, -1, timestamp, AVSEEK_FLAG_BACKWARD)) < 0) {
121  av_log(ctx, AV_LOG_ERROR, "%s: could not seek to position %"PRId64"\n",
122  movie->file_name, timestamp);
123  return ret;
124  }
125  }
126 
127  /* select the video stream */
129  movie->stream_index, -1, NULL, 0)) < 0) {
130  av_log(ctx, AV_LOG_ERROR, "No video stream with index '%d' found\n",
131  movie->stream_index);
132  return ret;
133  }
134  movie->stream_index = ret;
135  movie->codec_ctx = movie->format_ctx->streams[movie->stream_index]->codec;
136 
137  /*
138  * So now we've got a pointer to the so-called codec context for our video
139  * stream, but we still have to find the actual codec and open it.
140  */
141  codec = avcodec_find_decoder(movie->codec_ctx->codec_id);
142  if (!codec) {
143  av_log(ctx, AV_LOG_ERROR, "Failed to find any codec\n");
144  return AVERROR(EINVAL);
145  }
146 
147  movie->codec_ctx->refcounted_frames = 1;
148 
149  if ((ret = avcodec_open2(movie->codec_ctx, codec, NULL)) < 0) {
150  av_log(ctx, AV_LOG_ERROR, "Failed to open codec\n");
151  return ret;
152  }
153 
154  movie->w = movie->codec_ctx->width;
155  movie->h = movie->codec_ctx->height;
156 
157  av_log(ctx, AV_LOG_VERBOSE, "seek_point:%"PRIi64" format_name:%s file_name:%s stream_index:%d\n",
158  movie->seek_point, movie->format_name, movie->file_name,
159  movie->stream_index);
160 
161  return 0;
162 }
163 
164 static av_cold int init(AVFilterContext *ctx)
165 {
166  MovieContext *movie = ctx->priv;
167 
168  movie->seek_point = movie->seek_point_d * 1000000 + 0.5;
169 
170  return movie_init(ctx);
171 }
172 
173 static av_cold void uninit(AVFilterContext *ctx)
174 {
175  MovieContext *movie = ctx->priv;
176 
177  if (movie->codec_ctx)
178  avcodec_close(movie->codec_ctx);
179  if (movie->format_ctx)
181  av_frame_free(&movie->frame);
182 }
183 
185 {
186  MovieContext *movie = ctx->priv;
187  enum AVPixelFormat pix_fmts[] = { movie->codec_ctx->pix_fmt, AV_PIX_FMT_NONE };
188 
190  return 0;
191 }
192 
193 static int config_output_props(AVFilterLink *outlink)
194 {
195  MovieContext *movie = outlink->src->priv;
196 
197  outlink->w = movie->w;
198  outlink->h = movie->h;
199  outlink->time_base = movie->format_ctx->streams[movie->stream_index]->time_base;
200 
201  return 0;
202 }
203 
204 static int movie_get_frame(AVFilterLink *outlink)
205 {
206  MovieContext *movie = outlink->src->priv;
207  AVPacket pkt;
208  int ret, frame_decoded;
209 
210  if (movie->is_done == 1)
211  return 0;
212 
213  movie->frame = av_frame_alloc();
214  if (!movie->frame)
215  return AVERROR(ENOMEM);
216 
217  while ((ret = av_read_frame(movie->format_ctx, &pkt)) >= 0) {
218  // Is this a packet from the video stream?
219  if (pkt.stream_index == movie->stream_index) {
220  avcodec_decode_video2(movie->codec_ctx, movie->frame, &frame_decoded, &pkt);
221 
222  if (frame_decoded) {
223  if (movie->frame->pkt_pts != AV_NOPTS_VALUE)
224  movie->frame->pts = movie->frame->pkt_pts;
225  av_dlog(outlink->src,
226  "movie_get_frame(): file:'%s' pts:%"PRId64" time:%f aspect:%d/%d\n",
227  movie->file_name, movie->frame->pts,
228  (double)movie->frame->pts *
229  av_q2d(movie->format_ctx->streams[movie->stream_index]->time_base),
230  movie->frame->sample_aspect_ratio.num,
231  movie->frame->sample_aspect_ratio.den);
232  // We got it. Free the packet since we are returning
233  av_free_packet(&pkt);
234 
235  return 0;
236  }
237  }
238  // Free the packet that was allocated by av_read_frame
239  av_free_packet(&pkt);
240  }
241 
242  // On multi-frame source we should stop the mixing process when
243  // the movie source does not have more frames
244  if (ret == AVERROR_EOF)
245  movie->is_done = 1;
246  return ret;
247 }
248 
249 static int request_frame(AVFilterLink *outlink)
250 {
251  MovieContext *movie = outlink->src->priv;
252  int ret;
253 
254  if (movie->is_done)
255  return AVERROR_EOF;
256  if ((ret = movie_get_frame(outlink)) < 0)
257  return ret;
258 
259  ret = ff_filter_frame(outlink, movie->frame);
260  movie->frame = NULL;
261 
262  return ret;
263 }
264 
266  {
267  .name = "default",
268  .type = AVMEDIA_TYPE_VIDEO,
269  .request_frame = request_frame,
270  .config_props = config_output_props,
271  },
272  { NULL }
273 };
274 
276  .name = "movie",
277  .description = NULL_IF_CONFIG_SMALL("Read from a movie source."),
278  .priv_size = sizeof(MovieContext),
279  .priv_class = &movie_class,
280  .init = init,
281  .uninit = uninit,
283 
284  .inputs = NULL,
285  .outputs = avfilter_vsrc_movie_outputs,
286 };
#define AVSEEK_FLAG_BACKWARD
Definition: avformat.h:1609
void av_free_packet(AVPacket *pkt)
Free a packet.
Definition: avpacket.c:243
This structure describes decoded (raw) audio or video data.
Definition: frame.h:135
AVOption.
Definition: opt.h:234
misc image utilities
#define AV_LOG_WARNING
Something somehow does not look correct.
Definition: log.h:129
static const AVFilterPad outputs[]
Definition: af_ashowinfo.c:232
Main libavfilter public API header.
int avformat_open_input(AVFormatContext **ps, const char *filename, AVInputFormat *fmt, AVDictionary **options)
Open an input stream and read the header.
Definition: utils.c:247
int num
numerator
Definition: rational.h:44
enum AVPixelFormat pix_fmt
Pixel format, see AV_PIX_FMT_xxx.
Definition: avcodec.h:1270
av_dlog(ac->avr,"%d samples - audio_convert: %s to %s (%s)\n", len, av_get_sample_fmt_name(ac->in_fmt), av_get_sample_fmt_name(ac->out_fmt), use_generic?ac->func_descr_generic:ac->func_descr)
static int config_output_props(AVFilterLink *outlink)
Definition: vsrc_movie.c:193
AVCodec.
Definition: avcodec.h:2812
char * file_name
Definition: vsrc_movie.c:49
Macro definitions for various function/variable attributes.
AVFilterFormats * ff_make_format_list(const int *fmts)
Create a list of supported formats.
Definition: formats.c:165
Format I/O context.
Definition: avformat.h:922
double seek_point_d
Definition: vsrc_movie.c:47
const char * name
Pad name.
Definition: internal.h:42
int ff_filter_frame(AVFilterLink *link, AVFrame *frame)
Send a frame of data to the next filter.
Definition: avfilter.c:733
#define av_cold
Definition: attributes.h:66
AVFrame * av_frame_alloc(void)
Allocate an AVFrame and set its fields to default values.
Definition: frame.c:57
AVOptions.
static int request_frame(AVFilterLink *outlink)
Definition: vsrc_movie.c:249
int64_t pts
Presentation timestamp in time_base units (time when frame should be shown to user).
Definition: frame.h:211
AVStream ** streams
A list of all streams in the file.
Definition: avformat.h:990
static double av_q2d(AVRational a)
Convert rational to double.
Definition: rational.h:69
AVFrame * frame
video frame to store the decoded images in
Definition: vsrc_movie.c:55
#define AVERROR_EOF
End of file.
Definition: error.h:51
#define AV_LOG_VERBOSE
Detailed information.
Definition: log.h:139
void ff_set_common_formats(AVFilterContext *ctx, AVFilterFormats *formats)
A helper for query_formats() which sets all links to the same list of formats.
Definition: formats.c:379
A filter pad used for either input or output.
Definition: internal.h:36
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:2373
int avcodec_close(AVCodecContext *avctx)
Close a given AVCodecContext and free all the data associated with it (but not the AVCodecContext its...
Definition: utils.c:1731
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:123
static const AVClass movie_class
Definition: vsrc_movie.c:79
#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:69
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:145
void * priv
private data for use by the filter
Definition: avfilter.h:584
static av_cold int movie_init(AVFilterContext *ctx)
Definition: vsrc_movie.c:85
void av_log(void *avcl, int level, const char *fmt,...)
Definition: log.c:169
AVCodecContext * codec
Codec context associated with this stream.
Definition: avformat.h:718
AVInputFormat * av_find_input_format(const char *short_name)
Find AVInputFormat based on the short name of the input format.
Definition: format.c:162
int width
picture width / height.
Definition: avcodec.h:1229
static const AVFilterPad avfilter_vsrc_movie_outputs[]
Definition: vsrc_movie.c:265
AVFilter ff_vsrc_movie
Definition: vsrc_movie.c:275
static av_cold void uninit(AVFilterContext *ctx)
Definition: vsrc_movie.c:173
char * format_name
Definition: vsrc_movie.c:48
int refcounted_frames
If non-zero, the decoded audio and video frames returned from avcodec_decode_video2() and avcodec_dec...
Definition: avcodec.h:2078
static int query_formats(AVFilterContext *ctx)
Definition: vsrc_movie.c:184
NULL
Definition: eval.c:55
enum AVCodecID codec_id
Definition: avcodec.h:1067
main external API structure.
Definition: avcodec.h:1050
AVCodec * avcodec_find_decoder(enum AVCodecID id)
Find a registered decoder with a matching codec ID.
Definition: utils.c:1801
AVRational sample_aspect_ratio
Sample aspect ratio for the video frame, 0/1 if unknown/unspecified.
Definition: frame.h:206
#define OFFSET(x)
Definition: vsrc_movie.c:60
AVCodecContext * codec_ctx
Definition: vsrc_movie.c:53
Describe the class of an AVClass context structure.
Definition: log.h:33
Filter definition.
Definition: avfilter.h:421
static const AVFilterPad inputs[]
Definition: af_ashowinfo.c:221
int64_t seek_point
seekpoint in microseconds
Definition: vsrc_movie.c:46
const char * name
Filter name.
Definition: avfilter.h:425
int avcodec_open2(AVCodecContext *avctx, const AVCodec *codec, AVDictionary **options)
Initialize the AVCodecContext to use the given AVCodec.
Definition: utils.c:1003
int av_read_frame(AVFormatContext *s, AVPacket *pkt)
Return the next frame of a stream.
Definition: utils.c:989
int64_t pkt_pts
PTS copied from the AVPacket that was decoded to produce this frame.
Definition: frame.h:216
int64_t start_time
Position of the first frame of the component, in AV_TIME_BASE fractional seconds. ...
Definition: avformat.h:1007
int stream_index
Definition: vsrc_movie.c:50
int av_seek_frame(AVFormatContext *s, int stream_index, int64_t timestamp, int flags)
Seek to the keyframe at timestamp.
Definition: utils.c:1531
static const char * movie_get_name(void *ctx)
Definition: vsrc_movie.c:74
Main libavformat public API header.
static AVInputFormat * iformat
Definition: avprobe.c:53
int avformat_find_stream_info(AVFormatContext *ic, AVDictionary **options)
Read packets of a media file to get stream information.
Definition: utils.c:2052
#define FLAGS
Definition: vsrc_movie.c:61
int den
denominator
Definition: rational.h:45
void avformat_close_input(AVFormatContext **s)
Close an opened input AVFormatContext.
Definition: utils.c:2499
static const AVOption movie_options[]
Definition: vsrc_movie.c:63
AVFormatContext * format_ctx
Definition: vsrc_movie.c:52
int avcodec_decode_video2(AVCodecContext *avctx, AVFrame *picture, int *got_picture_ptr, AVPacket *avpkt)
Decode the video frame of size avpkt->size from avpkt->data into picture.
Definition: utils.c:1595
An instance of a filter.
Definition: avfilter.h:563
int stream_index
Definition: avcodec.h:975
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:741
static av_cold int init(AVFilterContext *ctx)
Definition: vsrc_movie.c:164
AVPixelFormat
Pixel format.
Definition: pixfmt.h:63
This structure stores compressed data.
Definition: avcodec.h:950
void av_register_all(void)
Initialize libavformat and register all the muxers, demuxers and protocols.
Definition: allformats.c:51
#define AV_NOPTS_VALUE
Undefined timestamp value.
Definition: avutil.h:228
static int movie_get_frame(AVFilterLink *outlink)
Definition: vsrc_movie.c:204