FFmpeg
|
#include <float.h>
#include <stdio.h>
#include <string.h>
#include "libavutil/imgutils.h"
#include "libavutil/internal.h"
#include "libavutil/intreadwrite.h"
#include "libavutil/opt.h"
#include "libavutil/pixdesc.h"
#include "avfilter.h"
#include "colorspace.h"
#include "formats.h"
#include "internal.h"
#include "video.h"
Go to the source code of this file.
Data Structures | |
struct | TonemapContext |
struct | ThreadData |
Used for passing data between threads. More... | |
Macros | |
#define | MIX(x, y, a) (x) * (1 - (a)) + (y) * (a) |
#define | OFFSET(x) offsetof(TonemapContext, x) |
#define | FLAGS AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_FILTERING_PARAM |
Functions | |
static av_cold int | init (AVFilterContext *ctx) |
static float | hable (float in) |
static float | mobius (float in, float j, double peak) |
static void | tonemap (TonemapContext *s, AVFrame *out, const AVFrame *in, const AVPixFmtDescriptor *desc, int x, int y, double peak) |
static int | tonemap_slice (AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs) |
static int | filter_frame (AVFilterLink *link, AVFrame *in) |
AVFILTER_DEFINE_CLASS (tonemap) | |
Variables | |
static const struct LumaCoefficients | luma_coefficients [AVCOL_SPC_NB] |
static const AVOption | tonemap_options [] |
static const AVFilterPad | tonemap_inputs [] |
static const AVFilterPad | tonemap_outputs [] |
const AVFilter | ff_vf_tonemap |
tonemap algorithms
Definition in file vf_tonemap.c.
Definition at line 118 of file vf_tonemap.c.
#define OFFSET | ( | x | ) | offsetof(TonemapContext, x) |
Definition at line 292 of file vf_tonemap.c.
#define FLAGS AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_FILTERING_PARAM |
Definition at line 293 of file vf_tonemap.c.
enum TonemapAlgorithm |
Definition at line 42 of file vf_tonemap.c.
|
static |
Definition at line 74 of file vf_tonemap.c.
|
static |
Definition at line 99 of file vf_tonemap.c.
Referenced by tonemap().
|
static |
Definition at line 105 of file vf_tonemap.c.
Referenced by tonemap().
|
static |
Definition at line 119 of file vf_tonemap.c.
Referenced by tonemap_slice().
|
static |
Definition at line 190 of file vf_tonemap.c.
Referenced by filter_frame().
|
static |
Definition at line 208 of file vf_tonemap.c.
AVFILTER_DEFINE_CLASS | ( | tonemap | ) |
|
static |
Definition at line 53 of file vf_tonemap.c.
Referenced by filter_frame().
|
static |
Definition at line 294 of file vf_tonemap.c.
|
static |
Definition at line 311 of file vf_tonemap.c.
|
static |
Definition at line 319 of file vf_tonemap.c.
const AVFilter ff_vf_tonemap |
Definition at line 326 of file vf_tonemap.c.