|
FFmpeg
|
#include "config_components.h"#include <float.h>#include <stdint.h>#include "libavutil/attributes.h"#include "libavutil/avstring.h"#include "libavutil/channel_layout.h"#include "libavutil/opt.h"#include "libavutil/imgutils.h"#include "libavutil/internal.h"#include "libavutil/timestamp.h"#include "libavcodec/avcodec.h"#include "libavformat/avformat.h"#include "audio.h"#include "avfilter.h"#include "filters.h"#include "formats.h"#include "internal.h"#include "video.h"Go to the source code of this file.
Data Structures | |
| struct | MovieStream |
| struct | MovieContext |
Macros | |
| #define | OFFSET(x) offsetof(MovieContext, x) |
| #define | FLAGS AV_OPT_FLAG_FILTERING_PARAM | AV_OPT_FLAG_AUDIO_PARAM | AV_OPT_FLAG_VIDEO_PARAM |
Functions | |
| static int | movie_config_output_props (AVFilterLink *outlink) |
| static AVStream * | find_stream (void *log, AVFormatContext *avf, const char *spec) |
| static int | get_buffer (AVCodecContext *avctx, AVFrame *frame, int flags) |
| static int | open_stream (AVFilterContext *ctx, MovieStream *st, int dec_threads) |
| static int | guess_channel_layout (MovieStream *st, int st_index, void *log_ctx) |
| static av_cold int | movie_common_init (AVFilterContext *ctx) |
| static av_cold void | movie_uninit (AVFilterContext *ctx) |
| static int | movie_query_formats (AVFilterContext *ctx) |
| static int | rewind_file (AVFilterContext *ctx) |
| static int | flush_decoder (AVFilterContext *ctx, int i) |
| static int | decode_packet (AVFilterContext *ctx, int i) |
| static int | activate (AVFilterContext *ctx) |
| static int | process_command (AVFilterContext *ctx, const char *cmd, const char *args, char *res, int res_len, int flags) |
| AVFILTER_DEFINE_CLASS_EXT (movie, "(a)movie", movie_options) | |
Variables | |
| static const AVOption | movie_options [] |
| #define OFFSET | ( | x | ) | offsetof(MovieContext, x) |
Definition at line 87 of file src_movie.c.
| #define FLAGS AV_OPT_FLAG_FILTERING_PARAM | AV_OPT_FLAG_AUDIO_PARAM | AV_OPT_FLAG_VIDEO_PARAM |
Definition at line 88 of file src_movie.c.
|
static |
Definition at line 453 of file src_movie.c.
Referenced by movie_common_init().
|
static |
Definition at line 109 of file src_movie.c.
Referenced by movie_common_init().
|
static |
Definition at line 163 of file src_movie.c.
Referenced by open_stream().
|
static |
Definition at line 213 of file src_movie.c.
Referenced by movie_common_init().
|
static |
Definition at line 246 of file src_movie.c.
Referenced by movie_common_init().
|
static |
Definition at line 270 of file src_movie.c.
|
static |
Definition at line 400 of file src_movie.c.
|
static |
Definition at line 417 of file src_movie.c.
|
static |
Definition at line 478 of file src_movie.c.
Referenced by activate().
|
static |
Definition at line 499 of file src_movie.c.
Referenced by activate().
|
static |
Definition at line 507 of file src_movie.c.
Referenced by activate().
|
static |
Definition at line 561 of file src_movie.c.
|
static |
Definition at line 632 of file src_movie.c.
| AVFILTER_DEFINE_CLASS_EXT | ( | movie | , |
| "(a)movie" | , | ||
| movie_options | |||
| ) |
|
static |
Definition at line 90 of file src_movie.c.
1.8.17