FFmpeg
Classes | Macros | Typedefs | Functions | Variables
vf_bbox.c File Reference

bounding box detection filter More...

#include "libavutil/opt.h"
#include "libavutil/pixdesc.h"
#include "libavutil/timestamp.h"
#include "avfilter.h"
#include "bbox.h"
#include "internal.h"

Classes

struct  BBoxContext
 

Macros

#define OFFSET(x)   offsetof(BBoxContext, x)
 
#define FLAGS   AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_FILTERING_PARAM
 
#define SET_META(key, value)   av_dict_set_int(metadata, key, value, 0);
 

Typedefs

typedef struct BBoxContext BBoxContext
 

Functions

 AVFILTER_DEFINE_CLASS (bbox)
 

Variables

AVFilter ff_vf_bbox
 

Detailed Description

bounding box detection filter

Variable Documentation

§ ff_vf_bbox

AVFilter ff_vf_bbox
Initial value:
= {
.name = "bbox",
.description = NULL_IF_CONFIG_SMALL("Compute bounding box for each frame."),
.priv_size = sizeof(BBoxContext),
.priv_class = &bbox_class,
.query_formats = query_formats,
.inputs = bbox_inputs,
.outputs = bbox_outputs,
}
#define AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC
Some filters support a generic "enable" expression option that can be used to enable or disable a fil...
Definition: avfilter.h:125
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:186
Definition: vf_bbox.c:33