FFmpeg
vf_photosensitivity.c
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2019 Vladimir Panteleev
3  *
4  * This file is part of FFmpeg.
5  *
6  * FFmpeg is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * FFmpeg is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with FFmpeg; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19  */
20 
21 #include <float.h>
22 
23 #include "libavutil/imgutils.h"
24 #include "libavutil/opt.h"
25 #include "libavutil/pixdesc.h"
26 #include "avfilter.h"
27 
28 #include "formats.h"
29 #include "internal.h"
30 #include "video.h"
31 
32 #define MAX_FRAMES 240
33 #define GRID_SIZE 8
34 #define NUM_CHANNELS 3
35 
36 typedef struct PhotosensitivityFrame {
39 
40 typedef struct PhotosensitivityContext {
41  const AVClass *class;
42 
43  int nb_frames;
44  int skip;
46  int bypass;
47 
49 
50  /* Circular buffer */
53 
57 
58 #define OFFSET(x) offsetof(PhotosensitivityContext, x)
59 #define FLAGS AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_FILTERING_PARAM
60 
62  { "frames", "set how many frames to use", OFFSET(nb_frames), AV_OPT_TYPE_INT, {.i64=30}, 2, MAX_FRAMES, FLAGS },
63  { "f", "set how many frames to use", OFFSET(nb_frames), AV_OPT_TYPE_INT, {.i64=30}, 2, MAX_FRAMES, FLAGS },
64  { "threshold", "set detection threshold factor (lower is stricter)", OFFSET(threshold_multiplier), AV_OPT_TYPE_FLOAT, {.dbl=1}, 0.1, FLT_MAX, FLAGS },
65  { "t", "set detection threshold factor (lower is stricter)", OFFSET(threshold_multiplier), AV_OPT_TYPE_FLOAT, {.dbl=1}, 0.1, FLT_MAX, FLAGS },
66  { "skip", "set pixels to skip when sampling frames", OFFSET(skip), AV_OPT_TYPE_INT, {.i64=1}, 1, 1024, FLAGS },
67  { "bypass", "leave frames unchanged", OFFSET(bypass), AV_OPT_TYPE_BOOL, {.i64=0}, 0, 1, FLAGS },
68  { NULL }
69 };
70 
71 AVFILTER_DEFINE_CLASS(photosensitivity);
72 
74 {
75  static const enum AVPixelFormat pixel_fmts[] = {
79  };
81  if (!formats)
82  return AVERROR(ENOMEM);
84 }
85 
87 {
90  int skip;
92 
93 #define NUM_CELLS (GRID_SIZE * GRID_SIZE)
94 
95 static int convert_frame_partial(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs)
96 {
97  int cell, gx, gy, x0, x1, y0, y1, x, y, c, area;
98  int sum[NUM_CHANNELS];
99  const uint8_t *p;
100 
102 
103  const int slice_start = (NUM_CELLS * jobnr) / nb_jobs;
104  const int slice_end = (NUM_CELLS * (jobnr+1)) / nb_jobs;
105 
106  int width = td->in->width, height = td->in->height, linesize = td->in->linesize[0], skip = td->skip;
107  const uint8_t *data = td->in->data[0];
108 
109  for (cell = slice_start; cell < slice_end; cell++) {
110  gx = cell % GRID_SIZE;
111  gy = cell / GRID_SIZE;
112 
113  x0 = width * gx / GRID_SIZE;
114  x1 = width * (gx+1) / GRID_SIZE;
115  y0 = height * gy / GRID_SIZE;
116  y1 = height * (gy+1) / GRID_SIZE;
117 
118  for (c = 0; c < NUM_CHANNELS; c++) {
119  sum[c] = 0;
120  }
121  for (y = y0; y < y1; y += skip) {
122  p = data + y * linesize + x0 * NUM_CHANNELS;
123  for (x = x0; x < x1; x += skip) {
124  //av_log(NULL, AV_LOG_VERBOSE, "%d %d %d : (%d,%d) (%d,%d) -> %d,%d | *%d\n", c, gx, gy, x0, y0, x1, y1, x, y, (int)row);
125  sum[0] += p[0];
126  sum[1] += p[1];
127  sum[2] += p[2];
128  p += NUM_CHANNELS * skip;
129  // TODO: variable size
130  }
131  }
132 
133  area = ((x1 - x0 + skip - 1) / skip) * ((y1 - y0 + skip - 1) / skip);
134  for (c = 0; c < NUM_CHANNELS; c++) {
135  if (area)
136  sum[c] /= area;
137  td->out->grid[gy][gx][c] = sum[c];
138  }
139  }
140  return 0;
141 }
142 
144 {
146  td.in = in;
147  td.out = out;
148  td.skip = skip;
150 }
151 
153 {
156  uint16_t s_mul;
158 
159 static int blend_frame_partial(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs)
160 {
161  int x, y;
162  uint8_t *t, *s;
163 
165  const uint16_t s_mul = td->s_mul;
166  const uint16_t t_mul = 0x100 - s_mul;
167  const int slice_start = (td->target->height * jobnr) / nb_jobs;
168  const int slice_end = (td->target->height * (jobnr+1)) / nb_jobs;
169  const int linesize = td->target->linesize[0];
170 
171  for (y = slice_start; y < slice_end; y++) {
172  t = td->target->data[0] + y * td->target->linesize[0];
173  s = td->source->data[0] + y * td->source->linesize[0];
174  for (x = 0; x < linesize; x++) {
175  *t = (*t * t_mul + *s * s_mul) >> 8;
176  t++; s++;
177  }
178  }
179  return 0;
180 }
181 
182 static void blend_frame(AVFilterContext *ctx, AVFrame *target, AVFrame *source, float factor)
183 {
185  td.target = target;
186  td.source = source;
187  td.s_mul = (uint16_t)(factor * 0x100);
188  ctx->internal->execute(ctx, blend_frame_partial, &td, NULL, FFMIN(ctx->outputs[0]->h, ff_filter_get_nb_threads(ctx)));
189 }
190 
192 {
193  int badness, x, y, c;
194  badness = 0;
195  for (c = 0; c < NUM_CHANNELS; c++) {
196  for (y = 0; y < GRID_SIZE; y++) {
197  for (x = 0; x < GRID_SIZE; x++) {
198  badness += abs((int)a->grid[y][x][c] - (int)b->grid[y][x][c]);
199  //av_log(NULL, AV_LOG_VERBOSE, "%d - %d -> %d \n", a->grid[y][x], b->grid[y][x], badness);
200  //av_log(NULL, AV_LOG_VERBOSE, "%d -> %d \n", abs((int)a->grid[y][x] - (int)b->grid[y][x]), badness);
201  }
202  }
203  }
204  return badness;
205 }
206 
208 {
209  /* const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(inlink->format); */
210  AVFilterContext *ctx = inlink->dst;
211  PhotosensitivityContext *s = ctx->priv;
212 
213  s->badness_threshold = (int)(GRID_SIZE * GRID_SIZE * 4 * 256 * s->nb_frames * s->threshold_multiplier / 128);
214 
215  return 0;
216 }
217 
219 {
220  int this_badness, current_badness, fixed_badness, new_badness, i, res;
222  AVFrame *src, *out;
223  int free_in = 0;
224  float factor;
225  AVDictionary **metadata;
226 
227  AVFilterContext *ctx = inlink->dst;
228  AVFilterLink *outlink = ctx->outputs[0];
229  PhotosensitivityContext *s = ctx->priv;
230 
231  /* weighted moving average */
232  current_badness = 0;
233  for (i = 1; i < s->nb_frames; i++)
234  current_badness += i * s->history[(s->history_pos + i) % s->nb_frames];
235  current_badness /= s->nb_frames;
236 
237  convert_frame(ctx, in, &ef, s->skip);
238  this_badness = get_badness(&ef, &s->last_frame_e);
239  new_badness = current_badness + this_badness;
240  av_log(s, AV_LOG_VERBOSE, "badness: %6d -> %6d / %6d (%3d%% - %s)\n",
241  current_badness, new_badness, s->badness_threshold,
242  100 * new_badness / s->badness_threshold, new_badness < s->badness_threshold ? "OK" : "EXCEEDED");
243 
244  fixed_badness = new_badness;
245  if (new_badness < s->badness_threshold || !s->last_frame_av || s->bypass) {
246  factor = 1; /* for metadata */
247  av_frame_free(&s->last_frame_av);
248  s->last_frame_av = src = in;
249  s->last_frame_e = ef;
250  s->history[s->history_pos] = this_badness;
251  } else {
252  factor = (float)(s->badness_threshold - current_badness) / (new_badness - current_badness);
253  if (factor <= 0) {
254  /* just duplicate the frame */
255  s->history[s->history_pos] = 0; /* frame was duplicated, thus, delta is zero */
256  } else {
257  res = av_frame_make_writable(s->last_frame_av);
258  if (res) {
259  av_frame_free(&in);
260  return res;
261  }
262  blend_frame(ctx, s->last_frame_av, in, factor);
263 
264  convert_frame(ctx, s->last_frame_av, &ef, s->skip);
265  this_badness = get_badness(&ef, &s->last_frame_e);
266  fixed_badness = current_badness + this_badness;
267  av_log(s, AV_LOG_VERBOSE, " fixed: %6d -> %6d / %6d (%3d%%) factor=%5.3f\n",
268  current_badness, fixed_badness, s->badness_threshold,
269  100 * new_badness / s->badness_threshold, factor);
270  s->last_frame_e = ef;
271  s->history[s->history_pos] = this_badness;
272  }
273  src = s->last_frame_av;
274  free_in = 1;
275  }
276  s->history_pos = (s->history_pos + 1) % s->nb_frames;
277 
278  out = ff_get_video_buffer(outlink, in->width, in->height);
279  if (!out) {
280  if (free_in == 1)
281  av_frame_free(&in);
282  return AVERROR(ENOMEM);
283  }
285  metadata = &out->metadata;
286  if (metadata) {
287  char value[128];
288 
289  snprintf(value, sizeof(value), "%f", (float)new_badness / s->badness_threshold);
290  av_dict_set(metadata, "lavfi.photosensitivity.badness", value, 0);
291 
292  snprintf(value, sizeof(value), "%f", (float)fixed_badness / s->badness_threshold);
293  av_dict_set(metadata, "lavfi.photosensitivity.fixed-badness", value, 0);
294 
295  snprintf(value, sizeof(value), "%f", (float)this_badness / s->badness_threshold);
296  av_dict_set(metadata, "lavfi.photosensitivity.frame-badness", value, 0);
297 
298  snprintf(value, sizeof(value), "%f", factor);
299  av_dict_set(metadata, "lavfi.photosensitivity.factor", value, 0);
300  }
302  if (free_in == 1)
303  av_frame_free(&in);
304  return ff_filter_frame(outlink, out);
305 }
306 
308 {
309  PhotosensitivityContext *s = ctx->priv;
310 
311  av_frame_free(&s->last_frame_av);
312 }
313 
314 static const AVFilterPad inputs[] = {
315  {
316  .name = "default",
317  .type = AVMEDIA_TYPE_VIDEO,
318  .filter_frame = filter_frame,
319  .config_props = config_input,
320  },
321  { NULL }
322 };
323 
324 static const AVFilterPad outputs[] = {
325  {
326  .name = "default",
327  .type = AVMEDIA_TYPE_VIDEO,
328  },
329  { NULL }
330 };
331 
333  .name = "photosensitivity",
334  .description = NULL_IF_CONFIG_SMALL("Filter out photosensitive epilepsy seizure-inducing flashes."),
335  .priv_size = sizeof(PhotosensitivityContext),
336  .priv_class = &photosensitivity_class,
337  .uninit = uninit,
339  .inputs = inputs,
340  .outputs = outputs,
341 };
formats
formats
Definition: signature.h:48
ff_get_video_buffer
AVFrame * ff_get_video_buffer(AVFilterLink *link, int w, int h)
Request a picture buffer with a specific set of permissions.
Definition: video.c:99
td
#define td
Definition: regdef.h:70
AVPixelFormat
AVPixelFormat
Pixel format.
Definition: pixfmt.h:64
AVFILTER_DEFINE_CLASS
AVFILTER_DEFINE_CLASS(photosensitivity)
AVERROR
Filter the word “frame” indicates either a video frame or a group of audio as stored in an AVFrame structure Format for each input and each output the list of supported formats For video that means pixel format For audio that means channel sample they are references to shared objects When the negotiation mechanism computes the intersection of the formats supported at each end of a all references to both lists are replaced with a reference to the intersection And when a single format is eventually chosen for a link amongst the remaining all references to the list are updated That means that if a filter requires that its input and output have the same format amongst a supported all it has to do is use a reference to the same list of formats query_formats can leave some formats unset and return AVERROR(EAGAIN) to cause the negotiation mechanism toagain later. That can be used by filters with complex requirements to use the format negotiated on one link to set the formats supported on another. Frame references ownership and permissions
opt.h
ff_make_format_list
AVFilterFormats * ff_make_format_list(const int *fmts)
Create a list of supported formats.
Definition: formats.c:286
config_input
static int config_input(AVFilterLink *inlink)
Definition: vf_photosensitivity.c:207
out
FILE * out
Definition: movenc.c:54
ff_filter_frame
int ff_filter_frame(AVFilterLink *link, AVFrame *frame)
Send a frame of data to the next filter.
Definition: avfilter.c:1096
PhotosensitivityContext
Definition: vf_photosensitivity.c:40
inlink
The exact code depends on how similar the blocks are and how related they are to the and needs to apply these operations to the correct inlink or outlink if there are several Macros are available to factor that when no extra processing is inlink
Definition: filter_design.txt:212
PhotosensitivityContext::history
int history[MAX_FRAMES]
Definition: vf_photosensitivity.c:51
PhotosensitivityContext::badness_threshold
int badness_threshold
Definition: vf_photosensitivity.c:48
av_frame_free
void av_frame_free(AVFrame **frame)
Free the frame and any dynamically allocated objects in it, e.g.
Definition: frame.c:203
AVFrame
This structure describes decoded (raw) audio or video data.
Definition: frame.h:318
av_frame_make_writable
int av_frame_make_writable(AVFrame *frame)
Ensure that the frame data is writable, avoiding data copy if possible.
Definition: frame.c:611
pixdesc.h
GRID_SIZE
#define GRID_SIZE
Definition: vf_photosensitivity.c:33
AVOption
AVOption.
Definition: opt.h:248
b
#define b
Definition: input.c:41
data
const char data[16]
Definition: mxf.c:142
query_formats
static int query_formats(AVFilterContext *ctx)
Definition: vf_photosensitivity.c:73
AV_LOG_VERBOSE
#define AV_LOG_VERBOSE
Detailed information.
Definition: log.h:210
float.h
AV_PIX_FMT_BGR24
@ AV_PIX_FMT_BGR24
packed RGB 8:8:8, 24bpp, BGRBGR...
Definition: pixfmt.h:69
AVDictionary
Definition: dict.c:30
AVFilter::name
const char * name
Filter name.
Definition: avfilter.h:149
video.h
AVFormatContext::internal
AVFormatInternal * internal
An opaque field for libavformat internal usage.
Definition: avformat.h:1699
convert_frame_partial
static int convert_frame_partial(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs)
Definition: vf_photosensitivity.c:95
AVFilterFormats
A list of supported formats for one end of a filter link.
Definition: formats.h:65
formats.h
ThreadData_blend_frame::target
AVFrame * target
Definition: vf_photosensitivity.c:154
uninit
static av_cold void uninit(AVFilterContext *ctx)
Definition: vf_photosensitivity.c:307
photosensitivity_options
static const AVOption photosensitivity_options[]
Definition: vf_photosensitivity.c:61
PhotosensitivityContext::last_frame_e
PhotosensitivityFrame last_frame_e
Definition: vf_photosensitivity.c:54
PhotosensitivityContext::last_frame_av
AVFrame * last_frame_av
Definition: vf_photosensitivity.c:55
ThreadData_convert_frame::skip
int skip
Definition: vf_photosensitivity.c:90
ff_vf_photosensitivity
AVFilter ff_vf_photosensitivity
Definition: vf_photosensitivity.c:332
AVFilterPad
A filter pad used for either input or output.
Definition: internal.h:54
av_cold
#define av_cold
Definition: attributes.h:90
ff_set_common_formats
int ff_set_common_formats(AVFilterContext *ctx, AVFilterFormats *formats)
A helper for query_formats() which sets all links to the same list of formats.
Definition: formats.c:587
width
#define width
s
#define s(width, name)
Definition: cbs_vp9.c:257
ThreadData_convert_frame
Definition: vf_photosensitivity.c:86
slice_end
static int slice_end(AVCodecContext *avctx, AVFrame *pict)
Handle slice ends.
Definition: mpeg12dec.c:2033
PhotosensitivityFrame::grid
uint8_t grid[GRID_SIZE][GRID_SIZE][4]
Definition: vf_photosensitivity.c:37
OFFSET
#define OFFSET(x)
Definition: vf_photosensitivity.c:58
outputs
static const AVFilterPad outputs[]
Definition: vf_photosensitivity.c:324
ctx
AVFormatContext * ctx
Definition: movenc.c:48
convert_frame
static void convert_frame(AVFilterContext *ctx, AVFrame *in, PhotosensitivityFrame *out, int skip)
Definition: vf_photosensitivity.c:143
arg
const char * arg
Definition: jacosubdec.c:66
AVClass
Describe the class of an AVClass context structure.
Definition: log.h:67
NULL
#define NULL
Definition: coverity.c:32
av_frame_copy_props
int av_frame_copy_props(AVFrame *dst, const AVFrame *src)
Copy only "metadata" fields from src to dst.
Definition: frame.c:658
FLAGS
#define FLAGS
Definition: vf_photosensitivity.c:59
ThreadData_convert_frame::out
PhotosensitivityFrame * out
Definition: vf_photosensitivity.c:89
src
#define src
Definition: vp8dsp.c:255
PhotosensitivityFrame
Definition: vf_photosensitivity.c:36
abs
#define abs(x)
Definition: cuda_runtime.h:35
c
Undefined Behavior In the C some operations are like signed integer dereferencing freed accessing outside allocated Undefined Behavior must not occur in a C it is not safe even if the output of undefined operations is unused The unsafety may seem nit picking but Optimizing compilers have in fact optimized code on the assumption that no undefined Behavior occurs Optimizing code based on wrong assumptions can and has in some cases lead to effects beyond the output of computations The signed integer overflow problem in speed critical code Code which is highly optimized and works with signed integers sometimes has the problem that often the output of the computation does not c
Definition: undefined.txt:32
PhotosensitivityContext::history_pos
int history_pos
Definition: vf_photosensitivity.c:52
source
these buffered frames must be flushed immediately if a new input produces new the filter must not call request_frame to get more It must just process the frame or queue it The task of requesting more frames is left to the filter s request_frame method or the application If a filter has several the filter must be ready for frames arriving randomly on any input any filter with several inputs will most likely require some kind of queuing mechanism It is perfectly acceptable to have a limited queue and to drop frames when the inputs are too unbalanced request_frame For filters that do not use the this method is called when a frame is wanted on an output For a source
Definition: filter_design.txt:255
AV_PIX_FMT_RGB24
@ AV_PIX_FMT_RGB24
packed RGB 8:8:8, 24bpp, RGBRGB...
Definition: pixfmt.h:68
NULL_IF_CONFIG_SMALL
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
Definition: internal.h:117
av_frame_copy
int av_frame_copy(AVFrame *dst, const AVFrame *src)
Copy the frame data from src to dst.
Definition: frame.c:799
filter_frame
static int filter_frame(AVFilterLink *inlink, AVFrame *in)
Definition: vf_photosensitivity.c:218
blend_frame
static void blend_frame(AVFilterContext *ctx, AVFrame *target, AVFrame *source, float factor)
Definition: vf_photosensitivity.c:182
height
#define height
a
The reader does not expect b to be semantically here and if the code is changed by maybe adding a a division or other the signedness will almost certainly be mistaken To avoid this confusion a new type was SUINT is the C unsigned type but it holds a signed int to use the same example SUINT a
Definition: undefined.txt:41
FFMIN
#define FFMIN(a, b)
Definition: common.h:105
internal.h
AV_OPT_TYPE_FLOAT
@ AV_OPT_TYPE_FLOAT
Definition: opt.h:228
PhotosensitivityContext::skip
int skip
Definition: vf_photosensitivity.c:44
in
uint8_t pi<< 24) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_U8, uint8_t,(*(const uint8_t *) pi - 0x80) *(1.0f/(1<< 7))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_U8, uint8_t,(*(const uint8_t *) pi - 0x80) *(1.0/(1<< 7))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S16, int16_t,(*(const int16_t *) pi >> 8)+0x80) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S16, int16_t, *(const int16_t *) pi *(1.0f/(1<< 15))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S16, int16_t, *(const int16_t *) pi *(1.0/(1<< 15))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S32, int32_t,(*(const int32_t *) pi >> 24)+0x80) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S32, int32_t, *(const int32_t *) pi *(1.0f/(1U<< 31))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S32, int32_t, *(const int32_t *) pi *(1.0/(1U<< 31))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_FLT, float, av_clip_uint8(lrintf(*(const float *) pi *(1<< 7))+0x80)) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_FLT, float, av_clip_int16(lrintf(*(const float *) pi *(1<< 15)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_FLT, float, av_clipl_int32(llrintf(*(const float *) pi *(1U<< 31)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_DBL, double, av_clip_uint8(lrint(*(const double *) pi *(1<< 7))+0x80)) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_DBL, double, av_clip_int16(lrint(*(const double *) pi *(1<< 15)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_DBL, double, av_clipl_int32(llrint(*(const double *) pi *(1U<< 31)))) #define SET_CONV_FUNC_GROUP(ofmt, ifmt) static void set_generic_function(AudioConvert *ac) { } void ff_audio_convert_free(AudioConvert **ac) { if(! *ac) return;ff_dither_free(&(*ac) ->dc);av_freep(ac);} AudioConvert *ff_audio_convert_alloc(AVAudioResampleContext *avr, enum AVSampleFormat out_fmt, enum AVSampleFormat in_fmt, int channels, int sample_rate, int apply_map) { AudioConvert *ac;int in_planar, out_planar;ac=av_mallocz(sizeof(*ac));if(!ac) return NULL;ac->avr=avr;ac->out_fmt=out_fmt;ac->in_fmt=in_fmt;ac->channels=channels;ac->apply_map=apply_map;if(avr->dither_method !=AV_RESAMPLE_DITHER_NONE &&av_get_packed_sample_fmt(out_fmt)==AV_SAMPLE_FMT_S16 &&av_get_bytes_per_sample(in_fmt) > 2) { ac->dc=ff_dither_alloc(avr, out_fmt, in_fmt, channels, sample_rate, apply_map);if(!ac->dc) { av_free(ac);return NULL;} return ac;} in_planar=ff_sample_fmt_is_planar(in_fmt, channels);out_planar=ff_sample_fmt_is_planar(out_fmt, channels);if(in_planar==out_planar) { ac->func_type=CONV_FUNC_TYPE_FLAT;ac->planes=in_planar ? ac->channels :1;} else if(in_planar) ac->func_type=CONV_FUNC_TYPE_INTERLEAVE;else ac->func_type=CONV_FUNC_TYPE_DEINTERLEAVE;set_generic_function(ac);if(ARCH_AARCH64) ff_audio_convert_init_aarch64(ac);if(ARCH_ARM) ff_audio_convert_init_arm(ac);if(ARCH_X86) ff_audio_convert_init_x86(ac);return ac;} int ff_audio_convert(AudioConvert *ac, AudioData *out, AudioData *in) { int use_generic=1;int len=in->nb_samples;int p;if(ac->dc) { av_log(ac->avr, AV_LOG_TRACE, "%d samples - audio_convert: %s to %s (dithered)\n", len, av_get_sample_fmt_name(ac->in_fmt), av_get_sample_fmt_name(ac->out_fmt));return ff_convert_dither(ac-> in
Definition: audio_convert.c:326
i
int i
Definition: input.c:407
NUM_CHANNELS
#define NUM_CHANNELS
Definition: vf_photosensitivity.c:34
ff_filter_get_nb_threads
int ff_filter_get_nb_threads(AVFilterContext *ctx)
Get number of threads for current filter instance.
Definition: avfilter.c:802
value
it s the only field you need to keep assuming you have a context There is some magic you don t need to care about around this just let it vf default value
Definition: writing_filters.txt:86
uint8_t
uint8_t
Definition: audio_convert.c:194
ThreadData_blend_frame::s_mul
uint16_t s_mul
Definition: vf_photosensitivity.c:156
AVFilterPad::name
const char * name
Pad name.
Definition: internal.h:60
PhotosensitivityContext::bypass
int bypass
Definition: vf_photosensitivity.c:46
AVFilter
Filter definition.
Definition: avfilter.h:145
ThreadData_blend_frame
Definition: vf_photosensitivity.c:152
ThreadData_blend_frame::source
AVFrame * source
Definition: vf_photosensitivity.c:155
MAX_FRAMES
#define MAX_FRAMES
Definition: vf_photosensitivity.c:32
blend_frame_partial
static int blend_frame_partial(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs)
Definition: vf_photosensitivity.c:159
AV_PIX_FMT_NONE
@ AV_PIX_FMT_NONE
Definition: pixfmt.h:65
AV_OPT_TYPE_INT
@ AV_OPT_TYPE_INT
Definition: opt.h:225
avfilter.h
AVFilterContext
An instance of a filter.
Definition: avfilter.h:341
factor
static const int factor[16]
Definition: vf_pp7.c:77
AVMEDIA_TYPE_VIDEO
@ AVMEDIA_TYPE_VIDEO
Definition: avutil.h:201
inputs
static const AVFilterPad inputs[]
Definition: vf_photosensitivity.c:314
AV_OPT_TYPE_BOOL
@ AV_OPT_TYPE_BOOL
Definition: opt.h:242
av_dict_set
int av_dict_set(AVDictionary **pm, const char *key, const char *value, int flags)
Set the given entry in *pm, overwriting an existing entry.
Definition: dict.c:70
imgutils.h
av_log
#define av_log(a,...)
Definition: tableprint_vlc.h:28
PhotosensitivityContext::nb_frames
int nb_frames
Definition: vf_photosensitivity.c:43
get_badness
static int get_badness(PhotosensitivityFrame *a, PhotosensitivityFrame *b)
Definition: vf_photosensitivity.c:191
NUM_CELLS
#define NUM_CELLS
Definition: vf_photosensitivity.c:93
int
int
Definition: ffmpeg_filter.c:170
snprintf
#define snprintf
Definition: snprintf.h:34
PhotosensitivityContext::threshold_multiplier
float threshold_multiplier
Definition: vf_photosensitivity.c:45
ThreadData_convert_frame::in
AVFrame * in
Definition: vf_photosensitivity.c:88