FFmpeg
|
#include <math.h>
#include "libavutil/eval.h"
#include "libavutil/imgutils.h"
#include "libavutil/pixdesc.h"
#include "libavutil/opt.h"
#include "libavutil/video_enc_params.h"
#include "avfilter.h"
#include "formats.h"
#include "internal.h"
#include "video.h"
Go to the source code of this file.
Data Structures | |
struct | QPContext |
Macros | |
#define | OFFSET(x) offsetof(QPContext, x) |
#define | FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM |
#define | BLOCK_QP_DELTA(block_idx) (par_in ? av_video_enc_params_block(par_in, block_idx)->delta_qp : 0) |
Functions | |
AVFILTER_DEFINE_CLASS (qp) | |
static int | config_input (AVFilterLink *inlink) |
static int | filter_frame (AVFilterLink *inlink, AVFrame *in) |
Variables | |
static const char *const | var_names [] = { "known", "qp", "x", "y", "w", "h", NULL } |
static const AVOption | qp_options [] |
static const AVFilterPad | qp_inputs [] |
static const AVFilterPad | qp_outputs [] |
const AVFilter | ff_vf_qp |
#define FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM |
#define BLOCK_QP_DELTA | ( | block_idx | ) | (par_in ? av_video_enc_params_block(par_in, block_idx)->delta_qp : 0) |
AVFILTER_DEFINE_CLASS | ( | qp | ) |
|
static |
|
static |
Definition at line 41 of file vf_qp.c.
Referenced by config_input(), and filter_frame().
|
static |
|
static |
|
static |
const AVFilter ff_vf_qp |