]> git.sesse.net Git - ffmpeg/blob - libavfilter/src_movie.c
libavfilter: include needed header for AVDictionary
[ffmpeg] / libavfilter / src_movie.c
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 /* #define DEBUG */
31
32 #include <float.h>
33 #include "libavutil/avstring.h"
34 #include "libavutil/avassert.h"
35 #include "libavutil/opt.h"
36 #include "libavutil/imgutils.h"
37 #include "libavutil/timestamp.h"
38 #include "libavformat/avformat.h"
39 #include "audio.h"
40 #include "avcodec.h"
41 #include "avfilter.h"
42 #include "formats.h"
43 #include "internal.h"
44 #include "video.h"
45
46 typedef struct {
47     AVStream *st;
48     int done;
49 } MovieStream;
50
51 typedef struct {
52     /* common A/V fields */
53     const AVClass *class;
54     int64_t seek_point;   ///< seekpoint in microseconds
55     double seek_point_d;
56     char *format_name;
57     char *file_name;
58     char *stream_specs; /**< user-provided list of streams, separated by + */
59     int stream_index; /**< for compatibility */
60     int loop_count;
61
62     AVFormatContext *format_ctx;
63     int eof;
64     AVPacket pkt, pkt0;
65     AVFrame *frame;   ///< video frame to store the decoded images in
66
67     int max_stream_index; /**< max stream # actually used for output */
68     MovieStream *st; /**< array of all streams, one per output */
69     int *out_index; /**< stream number -> output number map, or -1 */
70 } MovieContext;
71
72 #define OFFSET(x) offsetof(MovieContext, x)
73 #define F AV_OPT_FLAG_FILTERING_PARAM
74
75 static const AVOption movie_options[]= {
76 {"format_name",  "set format name",         OFFSET(format_name),  AV_OPT_TYPE_STRING, {.str =  0},  CHAR_MIN, CHAR_MAX, F },
77 {"f",            "set format name",         OFFSET(format_name),  AV_OPT_TYPE_STRING, {.str =  0},  CHAR_MIN, CHAR_MAX, F },
78 {"streams",      "set streams",             OFFSET(stream_specs), AV_OPT_TYPE_STRING, {.str =  0},  CHAR_MAX, CHAR_MAX, F },
79 {"s",            "set streams",             OFFSET(stream_specs), AV_OPT_TYPE_STRING, {.str =  0},  CHAR_MAX, CHAR_MAX, F },
80 {"si",           "set stream index",        OFFSET(stream_index), AV_OPT_TYPE_INT,    {.i64 = -1},  -1,       INT_MAX, F },
81 {"stream_index", "set stream index",        OFFSET(stream_index), AV_OPT_TYPE_INT,    {.i64 = -1},  -1,       INT_MAX, F },
82 {"seek_point",   "set seekpoint (seconds)", OFFSET(seek_point_d), AV_OPT_TYPE_DOUBLE, {.dbl =  0},  0,        (INT64_MAX-1) / 1000000, F },
83 {"sp",           "set seekpoint (seconds)", OFFSET(seek_point_d), AV_OPT_TYPE_DOUBLE, {.dbl =  0},  0,        (INT64_MAX-1) / 1000000, F },
84 {"loop",         "set loop count",          OFFSET(loop_count),   AV_OPT_TYPE_INT,    {.i64 =  1},  0,        INT_MAX, F },
85 {NULL},
86 };
87
88 static int movie_config_output_props(AVFilterLink *outlink);
89 static int movie_request_frame(AVFilterLink *outlink);
90
91 static AVStream *find_stream(void *log, AVFormatContext *avf, const char *spec)
92 {
93     int i, ret, already = 0, stream_id = -1;
94     char type_char, dummy;
95     AVStream *found = NULL;
96     enum AVMediaType type;
97
98     ret = sscanf(spec, "d%[av]%d%c", &type_char, &stream_id, &dummy);
99     if (ret >= 1 && ret <= 2) {
100         type = type_char == 'v' ? AVMEDIA_TYPE_VIDEO : AVMEDIA_TYPE_AUDIO;
101         ret = av_find_best_stream(avf, type, stream_id, -1, NULL, 0);
102         if (ret < 0) {
103             av_log(log, AV_LOG_ERROR, "No %s stream with index '%d' found\n",
104                    av_get_media_type_string(type), stream_id);
105             return NULL;
106         }
107         return avf->streams[ret];
108     }
109     for (i = 0; i < avf->nb_streams; i++) {
110         ret = avformat_match_stream_specifier(avf, avf->streams[i], spec);
111         if (ret < 0) {
112             av_log(log, AV_LOG_ERROR,
113                    "Invalid stream specifier \"%s\"\n", spec);
114             return NULL;
115         }
116         if (!ret)
117             continue;
118         if (avf->streams[i]->discard != AVDISCARD_ALL) {
119             already++;
120             continue;
121         }
122         if (found) {
123             av_log(log, AV_LOG_WARNING,
124                    "Ambiguous stream specifier \"%s\", using #%d\n", spec, i);
125             break;
126         }
127         found = avf->streams[i];
128     }
129     if (!found) {
130         av_log(log, AV_LOG_WARNING, "Stream specifier \"%s\" %s\n", spec,
131                already ? "matched only already used streams" :
132                          "did not match any stream");
133         return NULL;
134     }
135     if (found->codec->codec_type != AVMEDIA_TYPE_VIDEO &&
136         found->codec->codec_type != AVMEDIA_TYPE_AUDIO) {
137         av_log(log, AV_LOG_ERROR, "Stream specifier \"%s\" matched a %s stream,"
138                "currently unsupported by libavfilter\n", spec,
139                av_get_media_type_string(found->codec->codec_type));
140         return NULL;
141     }
142     return found;
143 }
144
145 static int open_stream(void *log, MovieStream *st)
146 {
147     AVCodec *codec;
148     int ret;
149
150     codec = avcodec_find_decoder(st->st->codec->codec_id);
151     if (!codec) {
152         av_log(log, AV_LOG_ERROR, "Failed to find any codec\n");
153         return AVERROR(EINVAL);
154     }
155
156     if ((ret = avcodec_open2(st->st->codec, codec, NULL)) < 0) {
157         av_log(log, AV_LOG_ERROR, "Failed to open codec\n");
158         return ret;
159     }
160
161     return 0;
162 }
163
164 static int guess_channel_layout(MovieStream *st, int st_index, void *log_ctx)
165 {
166     AVCodecContext *dec_ctx = st->st->codec;
167     char buf[256];
168     int64_t chl = av_get_default_channel_layout(dec_ctx->channels);
169
170     if (!chl) {
171         av_log(log_ctx, AV_LOG_ERROR,
172                "Channel layout is not set in stream %d, and could not "
173                "be guessed from the number of channels (%d)\n",
174                st_index, dec_ctx->channels);
175         return AVERROR(EINVAL);
176     }
177
178     av_get_channel_layout_string(buf, sizeof(buf), dec_ctx->channels, chl);
179     av_log(log_ctx, AV_LOG_WARNING,
180            "Channel layout is not set in output stream %d, "
181            "guessed channel layout is '%s'\n",
182            st_index, buf);
183     dec_ctx->channel_layout = chl;
184     return 0;
185 }
186
187 static av_cold int movie_common_init(AVFilterContext *ctx, const char *args, const AVClass *class)
188 {
189     MovieContext *movie = ctx->priv;
190     AVInputFormat *iformat = NULL;
191     int64_t timestamp;
192     int nb_streams, ret, i;
193     char default_streams[16], *stream_specs, *spec, *cursor;
194     char name[16];
195     AVStream *st;
196
197     movie->class = class;
198     av_opt_set_defaults(movie);
199
200     if (args)
201         movie->file_name = av_get_token(&args, ":");
202     if (!movie->file_name || !*movie->file_name) {
203         av_log(ctx, AV_LOG_ERROR, "No filename provided!\n");
204         return AVERROR(EINVAL);
205     }
206
207     if (*args++ == ':' && (ret = av_set_options_string(movie, args, "=", ":")) < 0)
208         return ret;
209
210     movie->seek_point = movie->seek_point_d * 1000000 + 0.5;
211
212     stream_specs = movie->stream_specs;
213     if (!stream_specs) {
214         snprintf(default_streams, sizeof(default_streams), "d%c%d",
215                  !strcmp(ctx->filter->name, "amovie") ? 'a' : 'v',
216                  movie->stream_index);
217         stream_specs = default_streams;
218     }
219     for (cursor = stream_specs, nb_streams = 1; *cursor; cursor++)
220         if (*cursor == '+')
221             nb_streams++;
222
223     if (movie->loop_count != 1 && nb_streams != 1) {
224         av_log(ctx, AV_LOG_ERROR,
225                "Loop with several streams is currently unsupported\n");
226         return AVERROR_PATCHWELCOME;
227     }
228
229     av_register_all();
230
231     // Try to find the movie format (container)
232     iformat = movie->format_name ? av_find_input_format(movie->format_name) : NULL;
233
234     movie->format_ctx = NULL;
235     if ((ret = avformat_open_input(&movie->format_ctx, movie->file_name, iformat, NULL)) < 0) {
236         av_log(ctx, AV_LOG_ERROR,
237                "Failed to avformat_open_input '%s'\n", movie->file_name);
238         return ret;
239     }
240     if ((ret = avformat_find_stream_info(movie->format_ctx, NULL)) < 0)
241         av_log(ctx, AV_LOG_WARNING, "Failed to find stream info\n");
242
243     // if seeking requested, we execute it
244     if (movie->seek_point > 0) {
245         timestamp = movie->seek_point;
246         // add the stream start time, should it exist
247         if (movie->format_ctx->start_time != AV_NOPTS_VALUE) {
248             if (timestamp > INT64_MAX - movie->format_ctx->start_time) {
249                 av_log(ctx, AV_LOG_ERROR,
250                        "%s: seek value overflow with start_time:%"PRId64" seek_point:%"PRId64"\n",
251                        movie->file_name, movie->format_ctx->start_time, movie->seek_point);
252                 return AVERROR(EINVAL);
253             }
254             timestamp += movie->format_ctx->start_time;
255         }
256         if ((ret = av_seek_frame(movie->format_ctx, -1, timestamp, AVSEEK_FLAG_BACKWARD)) < 0) {
257             av_log(ctx, AV_LOG_ERROR, "%s: could not seek to position %"PRId64"\n",
258                    movie->file_name, timestamp);
259             return ret;
260         }
261     }
262
263     for (i = 0; i < movie->format_ctx->nb_streams; i++)
264         movie->format_ctx->streams[i]->discard = AVDISCARD_ALL;
265
266     movie->st = av_calloc(nb_streams, sizeof(*movie->st));
267     if (!movie->st)
268         return AVERROR(ENOMEM);
269
270     for (i = 0; i < nb_streams; i++) {
271         spec = av_strtok(stream_specs, "+", &cursor);
272         if (!spec)
273             return AVERROR_BUG;
274         stream_specs = NULL; /* for next strtok */
275         st = find_stream(ctx, movie->format_ctx, spec);
276         if (!st)
277             return AVERROR(EINVAL);
278         st->discard = AVDISCARD_DEFAULT;
279         movie->st[i].st = st;
280         movie->max_stream_index = FFMAX(movie->max_stream_index, st->index);
281     }
282     if (av_strtok(NULL, "+", &cursor))
283         return AVERROR_BUG;
284
285     movie->out_index = av_calloc(movie->max_stream_index + 1,
286                                  sizeof(*movie->out_index));
287     if (!movie->out_index)
288         return AVERROR(ENOMEM);
289     for (i = 0; i <= movie->max_stream_index; i++)
290         movie->out_index[i] = -1;
291     for (i = 0; i < nb_streams; i++)
292         movie->out_index[movie->st[i].st->index] = i;
293
294     for (i = 0; i < nb_streams; i++) {
295         AVFilterPad pad = { 0 };
296         snprintf(name, sizeof(name), "out%d", i);
297         pad.type          = movie->st[i].st->codec->codec_type;
298         pad.name          = av_strdup(name);
299         pad.config_props  = movie_config_output_props;
300         pad.request_frame = movie_request_frame;
301         ff_insert_outpad(ctx, i, &pad);
302         ret = open_stream(ctx, &movie->st[i]);
303         if (ret < 0)
304             return ret;
305         if ( movie->st[i].st->codec->codec->type == AVMEDIA_TYPE_AUDIO &&
306             !movie->st[i].st->codec->channel_layout) {
307             ret = guess_channel_layout(&movie->st[i], i, ctx);
308             if (ret < 0)
309                 return ret;
310         }
311     }
312
313     if (!(movie->frame = avcodec_alloc_frame()) ) {
314         av_log(log, AV_LOG_ERROR, "Failed to alloc frame\n");
315         return AVERROR(ENOMEM);
316     }
317
318     av_log(ctx, AV_LOG_VERBOSE, "seek_point:%"PRIi64" format_name:%s file_name:%s stream_index:%d\n",
319            movie->seek_point, movie->format_name, movie->file_name,
320            movie->stream_index);
321
322     return 0;
323 }
324
325 static av_cold void movie_uninit(AVFilterContext *ctx)
326 {
327     MovieContext *movie = ctx->priv;
328     int i;
329
330     for (i = 0; i < ctx->nb_outputs; i++) {
331         av_freep(&ctx->output_pads[i].name);
332         if (movie->st[i].st)
333             avcodec_close(movie->st[i].st->codec);
334     }
335     av_opt_free(movie);
336     av_freep(&movie->file_name);
337     av_freep(&movie->st);
338     av_freep(&movie->out_index);
339     avcodec_free_frame(&movie->frame);
340     if (movie->format_ctx)
341         avformat_close_input(&movie->format_ctx);
342 }
343
344 static int movie_query_formats(AVFilterContext *ctx)
345 {
346     MovieContext *movie = ctx->priv;
347     int list[] = { 0, -1 };
348     int64_t list64[] = { 0, -1 };
349     int i;
350
351     for (i = 0; i < ctx->nb_outputs; i++) {
352         MovieStream *st = &movie->st[i];
353         AVCodecContext *c = st->st->codec;
354         AVFilterLink *outlink = ctx->outputs[i];
355
356         switch (c->codec_type) {
357         case AVMEDIA_TYPE_VIDEO:
358             list[0] = c->pix_fmt;
359             ff_formats_ref(ff_make_format_list(list), &outlink->in_formats);
360             break;
361         case AVMEDIA_TYPE_AUDIO:
362             list[0] = c->sample_fmt;
363             ff_formats_ref(ff_make_format_list(list), &outlink->in_formats);
364             list[0] = c->sample_rate;
365             ff_formats_ref(ff_make_format_list(list), &outlink->in_samplerates);
366             list64[0] = c->channel_layout;
367             ff_channel_layouts_ref(avfilter_make_format64_list(list64),
368                                    &outlink->in_channel_layouts);
369             break;
370         }
371     }
372
373     return 0;
374 }
375
376 static int movie_config_output_props(AVFilterLink *outlink)
377 {
378     AVFilterContext *ctx = outlink->src;
379     MovieContext *movie  = ctx->priv;
380     unsigned out_id = FF_OUTLINK_IDX(outlink);
381     MovieStream *st = &movie->st[out_id];
382     AVCodecContext *c = st->st->codec;
383
384     outlink->time_base = st->st->time_base;
385
386     switch (c->codec_type) {
387     case AVMEDIA_TYPE_VIDEO:
388         outlink->w          = c->width;
389         outlink->h          = c->height;
390         outlink->frame_rate = st->st->r_frame_rate;
391         break;
392     case AVMEDIA_TYPE_AUDIO:
393         break;
394     }
395
396     return 0;
397 }
398
399 static AVFilterBufferRef *frame_to_buf(enum AVMediaType type, AVFrame *frame,
400                                        AVFilterLink *outlink)
401 {
402     AVFilterBufferRef *buf, *copy;
403
404     buf = avfilter_get_buffer_ref_from_frame(type, frame,
405                                              AV_PERM_WRITE |
406                                              AV_PERM_PRESERVE |
407                                              AV_PERM_REUSE2);
408     if (!buf)
409         return NULL;
410     buf->pts = av_frame_get_best_effort_timestamp(frame);
411     copy = ff_copy_buffer_ref(outlink, buf);
412     if (!copy)
413         return NULL;
414     buf->buf->data[0] = NULL; /* it belongs to the frame */
415     avfilter_unref_buffer(buf);
416     return copy;
417 }
418
419 static char *describe_bufref_to_str(char *dst, size_t dst_size,
420                                     AVFilterBufferRef *buf,
421                                     AVFilterLink *link)
422 {
423     switch (buf->type) {
424     case AVMEDIA_TYPE_VIDEO:
425         snprintf(dst, dst_size,
426                  "video pts:%s time:%s pos:%"PRId64" size:%dx%d aspect:%d/%d",
427                  av_ts2str(buf->pts), av_ts2timestr(buf->pts, &link->time_base),
428                  buf->pos, buf->video->w, buf->video->h,
429                  buf->video->sample_aspect_ratio.num,
430                  buf->video->sample_aspect_ratio.den);
431                  break;
432     case AVMEDIA_TYPE_AUDIO:
433         snprintf(dst, dst_size,
434                  "audio pts:%s time:%s pos:%"PRId64" samples:%d",
435                  av_ts2str(buf->pts), av_ts2timestr(buf->pts, &link->time_base),
436                  buf->pos, buf->audio->nb_samples);
437                  break;
438     default:
439         snprintf(dst, dst_size, "%s BUG", av_get_media_type_string(buf->type));
440         break;
441     }
442     return dst;
443 }
444
445 #define describe_bufref(buf, link) \
446     describe_bufref_to_str((char[1024]){0}, 1024, buf, link)
447
448 static int rewind_file(AVFilterContext *ctx)
449 {
450     MovieContext *movie = ctx->priv;
451     int64_t timestamp = movie->seek_point;
452     int ret, i;
453
454     if (movie->format_ctx->start_time != AV_NOPTS_VALUE)
455         timestamp += movie->format_ctx->start_time;
456     ret = av_seek_frame(movie->format_ctx, -1, timestamp, AVSEEK_FLAG_BACKWARD);
457     if (ret < 0) {
458         av_log(ctx, AV_LOG_ERROR, "Unable to loop: %s\n", av_err2str(ret));
459         movie->loop_count = 1; /* do not try again */
460         return ret;
461     }
462
463     for (i = 0; i < ctx->nb_outputs; i++) {
464         avcodec_flush_buffers(movie->st[i].st->codec);
465         movie->st[i].done = 0;
466     }
467     movie->eof = 0;
468     return 0;
469 }
470
471 /**
472  * Try to push a frame to the requested output.
473  *
474  * @param ctx     filter context
475  * @param out_id  number of output where a frame is wanted;
476  *                if the frame is read from file, used to set the return value;
477  *                if the codec is being flushed, flush the corresponding stream
478  * @return  1 if a frame was pushed on the requested output,
479  *          0 if another attempt is possible,
480  *          <0 AVERROR code
481  */
482 static int movie_push_frame(AVFilterContext *ctx, unsigned out_id)
483 {
484     MovieContext *movie = ctx->priv;
485     AVPacket *pkt = &movie->pkt;
486     MovieStream *st;
487     int ret, got_frame = 0, pkt_out_id;
488     AVFilterLink *outlink;
489     AVFilterBufferRef *buf;
490
491     if (!pkt->size) {
492         if (movie->eof) {
493             if (movie->st[out_id].done) {
494                 if (movie->loop_count != 1) {
495                     ret = rewind_file(ctx);
496                     if (ret < 0)
497                         return ret;
498                     movie->loop_count -= movie->loop_count > 1;
499                     av_log(ctx, AV_LOG_VERBOSE, "Stream finished, looping.\n");
500                     return 0; /* retry */
501                 }
502                 return AVERROR_EOF;
503             }
504             pkt->stream_index = movie->st[out_id].st->index;
505             /* packet is already ready for flushing */
506         } else {
507             ret = av_read_frame(movie->format_ctx, &movie->pkt0);
508             if (ret < 0) {
509                 av_init_packet(&movie->pkt0); /* ready for flushing */
510                 *pkt = movie->pkt0;
511                 if (ret == AVERROR_EOF) {
512                     movie->eof = 1;
513                     return 0; /* start flushing */
514                 }
515                 return ret;
516             }
517             *pkt = movie->pkt0;
518         }
519     }
520
521     pkt_out_id = pkt->stream_index > movie->max_stream_index ? -1 :
522                  movie->out_index[pkt->stream_index];
523     if (pkt_out_id < 0) {
524         av_free_packet(&movie->pkt0);
525         pkt->size = 0; /* ready for next run */
526         pkt->data = NULL;
527         return 0;
528     }
529     st = &movie->st[pkt_out_id];
530     outlink = ctx->outputs[pkt_out_id];
531
532     switch (st->st->codec->codec_type) {
533     case AVMEDIA_TYPE_VIDEO:
534         ret = avcodec_decode_video2(st->st->codec, movie->frame, &got_frame, pkt);
535         break;
536     case AVMEDIA_TYPE_AUDIO:
537         ret = avcodec_decode_audio4(st->st->codec, movie->frame, &got_frame, pkt);
538         break;
539     default:
540         ret = AVERROR(ENOSYS);
541         break;
542     }
543     if (ret < 0) {
544         av_log(ctx, AV_LOG_WARNING, "Decode error: %s\n", av_err2str(ret));
545         return 0;
546     }
547     if (!ret)
548         ret = pkt->size;
549
550     pkt->data += ret;
551     pkt->size -= ret;
552     if (pkt->size <= 0) {
553         av_free_packet(&movie->pkt0);
554         pkt->size = 0; /* ready for next run */
555         pkt->data = NULL;
556     }
557     if (!got_frame) {
558         if (!ret)
559             st->done = 1;
560         return 0;
561     }
562
563     buf = frame_to_buf(st->st->codec->codec_type, movie->frame, outlink);
564     if (!buf)
565         return AVERROR(ENOMEM);
566     av_dlog(ctx, "movie_push_frame(): file:'%s' %s\n", movie->file_name,
567             describe_bufref(buf, outlink));
568     switch (st->st->codec->codec_type) {
569     case AVMEDIA_TYPE_VIDEO:
570         if (!movie->frame->sample_aspect_ratio.num)
571             buf->video->sample_aspect_ratio = st->st->sample_aspect_ratio;
572         ff_start_frame(outlink, buf);
573         ff_draw_slice(outlink, 0, outlink->h, 1);
574         ff_end_frame(outlink);
575         break;
576     case AVMEDIA_TYPE_AUDIO:
577         ff_filter_samples(outlink, buf);
578         break;
579     }
580
581     return pkt_out_id == out_id;
582 }
583
584 static int movie_request_frame(AVFilterLink *outlink)
585 {
586     AVFilterContext *ctx = outlink->src;
587     unsigned out_id = FF_OUTLINK_IDX(outlink);
588     int ret;
589
590     while (1) {
591         ret = movie_push_frame(ctx, out_id);
592         if (ret)
593             return FFMIN(ret, 0);
594     }
595 }
596
597 #if CONFIG_MOVIE_FILTER
598
599 AVFILTER_DEFINE_CLASS(movie);
600
601 static av_cold int movie_init(AVFilterContext *ctx, const char *args)
602 {
603     return movie_common_init(ctx, args, &movie_class);
604 }
605
606 AVFilter avfilter_avsrc_movie = {
607     .name          = "movie",
608     .description   = NULL_IF_CONFIG_SMALL("Read from a movie source."),
609     .priv_size     = sizeof(MovieContext),
610     .init          = movie_init,
611     .uninit        = movie_uninit,
612     .query_formats = movie_query_formats,
613
614     .inputs    = NULL,
615     .outputs   = (const AVFilterPad[]) {{ .name = NULL }},
616     .priv_class = &movie_class,
617 };
618
619 #endif  /* CONFIG_MOVIE_FILTER */
620
621 #if CONFIG_AMOVIE_FILTER
622
623 #define amovie_options movie_options
624 AVFILTER_DEFINE_CLASS(amovie);
625
626 static av_cold int amovie_init(AVFilterContext *ctx, const char *args)
627 {
628     return movie_common_init(ctx, args, &amovie_class);
629 }
630
631 AVFilter avfilter_avsrc_amovie = {
632     .name          = "amovie",
633     .description   = NULL_IF_CONFIG_SMALL("Read audio from a movie source."),
634     .priv_size     = sizeof(MovieContext),
635     .init          = amovie_init,
636     .uninit        = movie_uninit,
637     .query_formats = movie_query_formats,
638
639     .inputs    = (const AVFilterPad[]) {{ .name = NULL }},
640     .outputs   = (const AVFilterPad[]) {{ .name = NULL }},
641     .priv_class = &amovie_class,
642 };
643
644 #endif /* CONFIG_AMOVIE_FILTER */