#include <float.h>
#include "libavutil/avstring.h"
#include "libavutil/opt.h"
#include "libavutil/imgutils.h"
#include "libavformat/avformat.h"
#include "avcodec.h"
#include "avfilter.h"
Go to the source code of this file.
Data Structures | |
| struct | MovieContext |
Defines | |
| #define | OFFSET(x) offsetof(MovieContext, x) |
Functions | |
| static const char * | movie_get_name (void *ctx) |
| static av_cold int | movie_common_init (AVFilterContext *ctx, const char *args, void *opaque, enum AVMediaType type) |
| static av_cold void | movie_common_uninit (AVFilterContext *ctx) |
Variables | |
| static const AVOption | movie_options [] |
| static const AVClass | movie_class |
support a PTS correction mechanism
support more than one output stream
Definition in file src_movie.c.
| #define OFFSET | ( | x | ) | offsetof(MovieContext, x) |
Definition at line 67 of file src_movie.c.
| static av_cold int movie_common_init | ( | AVFilterContext * | ctx, | |
| const char * | args, | |||
| void * | opaque, | |||
| enum AVMediaType | type | |||
| ) | [static] |
Definition at line 90 of file src_movie.c.
| static av_cold void movie_common_uninit | ( | AVFilterContext * | ctx | ) | [static] |
Definition at line 182 of file src_movie.c.
| static const char* movie_get_name | ( | void * | ctx | ) | [static] |
Definition at line 79 of file src_movie.c.
const AVClass movie_class [static] |
Initial value:
{
"MovieContext",
movie_get_name,
movie_options
}
Definition at line 84 of file src_movie.c.
const AVOption movie_options[] [static] |
Initial value:
{
{"format_name", "set format name", OFFSET(format_name), AV_OPT_TYPE_STRING, {.str = 0}, CHAR_MIN, CHAR_MAX },
{"f", "set format name", OFFSET(format_name), AV_OPT_TYPE_STRING, {.str = 0}, CHAR_MIN, CHAR_MAX },
{"stream_index", "set stream index", OFFSET(stream_index), AV_OPT_TYPE_INT, {.dbl = -1}, -1, INT_MAX },
{"si", "set stream index", OFFSET(stream_index), AV_OPT_TYPE_INT, {.dbl = -1}, -1, INT_MAX },
{"seek_point", "set seekpoint (seconds)", OFFSET(seek_point_d), AV_OPT_TYPE_DOUBLE, {.dbl = 0}, 0, (INT64_MAX-1) / 1000000 },
{"sp", "set seekpoint (seconds)", OFFSET(seek_point_d), AV_OPT_TYPE_DOUBLE, {.dbl = 0}, 0, (INT64_MAX-1) / 1000000 },
{NULL},
}
Definition at line 69 of file src_movie.c.
1.5.8