| FFmpeg
    | 
#include <float.h>#include <stdint.h>#include "libavutil/attributes.h"#include "libavutil/avstring.h"#include "libavutil/avassert.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 "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 int | movie_request_frame (AVFilterLink *outlink) | 
| static AVStream * | find_stream (void *log, AVFormatContext *avf, const char *spec) | 
| static int | open_stream (AVFilterContext *ctx, MovieStream *st) | 
| 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 char * | describe_frame_to_str (char *dst, size_t dst_size, AVFrame *frame, enum AVMediaType frame_type, AVFilterLink *link) | 
| static int | rewind_file (AVFilterContext *ctx) | 
| static int | movie_push_frame (AVFilterContext *ctx, unsigned out_id) | 
| Try to push a frame to the requested output.  More... | |
| static int | process_command (AVFilterContext *ctx, const char *cmd, const char *args, char *res, int res_len, int flags) | 
| Variables | |
| static const AVOption | movie_options [] | 
movie video source
use direct rendering (no allocation of a new frame)
support a PTS correction mechanism
Definition in file src_movie.c.
| #define OFFSET | ( | x | ) | offsetof(MovieContext, x) | 
Definition at line 81 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 82 of file src_movie.c.
| 
 | static | 
Definition at line 389 of file src_movie.c.
Referenced by movie_common_init().
| 
 | static | 
Definition at line 600 of file src_movie.c.
Referenced by movie_common_init().
| 
 | static | 
Definition at line 102 of file src_movie.c.
Referenced by movie_common_init().
| 
 | static | 
Definition at line 156 of file src_movie.c.
Referenced by movie_common_init().
| 
 | static | 
Definition at line 186 of file src_movie.c.
Referenced by movie_common_init().
| 
 | static | 
Definition at line 209 of file src_movie.c.
| 
 | static | 
Definition at line 337 of file src_movie.c.
| 
 | static | 
Definition at line 353 of file src_movie.c.
| 
 | static | 
Definition at line 412 of file src_movie.c.
Referenced by movie_push_frame().
| 
 | static | 
Definition at line 438 of file src_movie.c.
Referenced by movie_push_frame().
| 
 | static | 
Try to push a frame to the requested output.
| ctx | filter context | 
| 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 | 
Definition at line 472 of file src_movie.c.
Referenced by movie_request_frame().
| 
 | static | 
Definition at line 613 of file src_movie.c.
| 
 | static | 
Definition at line 84 of file src_movie.c.
 1.8.17
 1.8.17