FFmpeg
|
#include <stdio.h>
#include <inttypes.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 |
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 | 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 AVFilter | 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 95 of file vf_blackframe.c.
#define FLAGS AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_FILTERING_PARAM |
Definition at line 96 of file vf_blackframe.c.
|
static |
Definition at line 58 of file vf_blackframe.c.
AVFILTER_DEFINE_CLASS | ( | blackframe | ) |
|
static |
Definition at line 48 of file vf_blackframe.c.
|
static |
Definition at line 97 of file vf_blackframe.c.
|
static |
Definition at line 109 of file vf_blackframe.c.
const AVFilter ff_vf_blackframe |
Definition at line 117 of file vf_blackframe.c.