|
FFmpeg
|
#include <stdio.h>#include <inttypes.h>#include <stdatomic.h>#include "libavutil/internal.h"#include "libavutil/opt.h"#include "avfilter.h"#include "filters.h"#include "video.h"Go to the source code of this file.
Data Structures | |
| struct | BlackFrameContext |
| struct | ThreadData |
| Used for passing data between threads. More... | |
Macros | |
| #define | SET_META(key, format, value) |
| #define | OFFSET(x) offsetof(BlackFrameContext, x) |
| #define | FLAGS AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_FILTERING_PARAM |
Functions | |
| static int | blackframe_slice (AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs) |
| static int | filter_frame (AVFilterLink *inlink, AVFrame *frame) |
| AVFILTER_DEFINE_CLASS (blackframe) | |
Variables | |
| static enum AVPixelFormat | pix_fmts [] |
| static const AVOption | blackframe_options [] |
| static const AVFilterPad | avfilter_vf_blackframe_inputs [] |
| const FFFilter | ff_vf_blackframe |
Search for black frames to detect scene transitions. Ported from MPlayer libmpcodecs/vf_blackframe.c.
Definition in file vf_blackframe.c.
| #define OFFSET | ( | x | ) | offsetof(BlackFrameContext, x) |
Definition at line 130 of file vf_blackframe.c.
| #define FLAGS AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_FILTERING_PARAM |
Definition at line 131 of file vf_blackframe.c.
|
static |
Definition at line 68 of file vf_blackframe.c.
Referenced by filter_frame().
|
static |
Definition at line 88 of file vf_blackframe.c.
| AVFILTER_DEFINE_CLASS | ( | blackframe | ) |
|
static |
Definition at line 58 of file vf_blackframe.c.
|
static |
Definition at line 132 of file vf_blackframe.c.
|
static |
Definition at line 144 of file vf_blackframe.c.
| const FFFilter ff_vf_blackframe |
Definition at line 152 of file vf_blackframe.c.
1.8.17