Go to the documentation of this file.
22 #include "config_components.h"
36 #define OFFSET(x) offsetof(ConvolutionContext, x)
37 #define FLAGS AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_RUNTIME_PARAM
68 static const int same5x5[25] = {0, 0, 0, 0, 0,
74 static const int same7x7[49] = {0, 0, 0, 0, 0, 0, 0,
110 const uint8_t *
c[],
int peak,
int radius,
113 uint16_t *
dst = (uint16_t *)dstp;
116 for (x = 0; x <
width; x++) {
128 const uint8_t *
c[],
int peak,
int radius,
131 uint16_t *
dst = (uint16_t *)dstp;
134 for (x = 0; x <
width; x++) {
144 const uint8_t *
c[],
int peak,
int radius,
147 uint16_t *
dst = (uint16_t *)dstp;
150 for (x = 0; x <
width; x++) {
164 const uint8_t *
c[],
int peak,
int radius,
167 uint16_t *
dst = (uint16_t *)dstp;
168 const uint16_t *c0 = (
const uint16_t *)
c[0], *
c1 = (
const uint16_t *)
c[1], *
c2 = (
const uint16_t *)
c[2];
169 const uint16_t *c3 = (
const uint16_t *)
c[3], *c5 = (
const uint16_t *)
c[5];
170 const uint16_t *c6 = (
const uint16_t *)
c[6], *c7 = (
const uint16_t *)
c[7], *c8 = (
const uint16_t *)
c[8];
173 for (x = 0; x <
width; x++) {
174 int sum0 = c0[x] * 5 +
c1[x] * 5 +
c2[x] * 5 +
175 c3[x] * -3 + c5[x] * -3 +
176 c6[x] * -3 + c7[x] * -3 + c8[x] * -3;
177 int sum1 = c0[x] * -3 +
c1[x] * 5 +
c2[x] * 5 +
178 c3[x] * 5 + c5[x] * -3 +
179 c6[x] * -3 + c7[x] * -3 + c8[x] * -3;
180 int sum2 = c0[x] * -3 +
c1[x] * -3 +
c2[x] * 5 +
181 c3[x] * 5 + c5[x] * 5 +
182 c6[x] * -3 + c7[x] * -3 + c8[x] * -3;
183 int sum3 = c0[x] * -3 +
c1[x] * -3 +
c2[x] * -3 +
184 c3[x] * 5 + c5[x] * 5 +
185 c6[x] * 5 + c7[x] * -3 + c8[x] * -3;
186 int sum4 = c0[x] * -3 +
c1[x] * -3 +
c2[x] * -3 +
187 c3[x] * -3 + c5[x] * 5 +
188 c6[x] * 5 + c7[x] * 5 + c8[x] * -3;
189 int sum5 = c0[x] * -3 +
c1[x] * -3 +
c2[x] * -3 +
190 c3[x] * -3 + c5[x] * -3 +
191 c6[x] * 5 + c7[x] * 5 + c8[x] * 5;
192 int sum6 = c0[x] * 5 +
c1[x] * -3 +
c2[x] * -3 +
193 c3[x] * -3 + c5[x] * -3 +
194 c6[x] * -3 + c7[x] * 5 + c8[x] * 5;
195 int sum7 = c0[x] * 5 +
c1[x] * 5 +
c2[x] * -3 +
196 c3[x] * -3 + c5[x] * -3 +
197 c6[x] * -3 + c7[x] * -3 + c8[x] * 5;
199 sum0 =
FFMAX(sum0, sum1);
200 sum2 =
FFMAX(sum2, sum3);
201 sum4 =
FFMAX(sum4, sum5);
202 sum6 =
FFMAX(sum6, sum7);
203 sum0 =
FFMAX(sum0, sum2);
204 sum4 =
FFMAX(sum4, sum6);
205 sum0 =
FFMAX(sum0, sum4);
213 const uint8_t *
c[],
int peak,
int radius,
216 const uint8_t *c0 =
c[0], *
c1 =
c[1], *
c2 =
c[2];
217 const uint8_t *c3 =
c[3], *c5 =
c[5];
218 const uint8_t *c6 =
c[6], *c7 =
c[7], *c8 =
c[8];
221 for (x = 0; x <
width; x++) {
222 float suma = c0[x] * -1 +
c1[x] * -1 +
c2[x] * -1 +
223 c6[x] * 1 + c7[x] * 1 + c8[x] * 1;
224 float sumb = c0[x] * -1 +
c2[x] * 1 + c3[x] * -1 +
225 c5[x] * 1 + c6[x] * -1 + c8[x] * 1;
233 const uint8_t *
c[],
int peak,
int radius,
238 for (x = 0; x <
width; x++) {
239 float suma =
c[0][x] * 1 +
c[1][x] * -1;
240 float sumb =
c[4][x] * 1 +
c[3][x] * -1;
248 const uint8_t *
c[],
int peak,
int radius,
251 const uint8_t *c0 =
c[0], *
c1 =
c[1], *
c2 =
c[2];
252 const uint8_t *c3 =
c[3], *c5 =
c[5];
253 const uint8_t *c6 =
c[6], *c7 =
c[7], *c8 =
c[8];
256 for (x = 0; x <
width; x++) {
257 float suma = c0[x] * -47 +
c1[x] * -162 +
c2[x] * -47 +
258 c6[x] * 47 + c7[x] * 162 + c8[x] * 47;
259 float sumb = c0[x] * -47 +
c2[x] * 47 + c3[x] * -162 +
260 c5[x] * 162 + c6[x] * -47 + c8[x] * 47;
270 const uint8_t *
c[],
int peak,
int radius,
273 const uint8_t *c0 =
c[0], *
c1 =
c[1], *
c2 =
c[2];
274 const uint8_t *c3 =
c[3], *c5 =
c[5];
275 const uint8_t *c6 =
c[6], *c7 =
c[7], *c8 =
c[8];
278 for (x = 0; x <
width; x++) {
279 int sum0 = c0[x] * 5 +
c1[x] * 5 +
c2[x] * 5 +
280 c3[x] * -3 + c5[x] * -3 +
281 c6[x] * -3 + c7[x] * -3 + c8[x] * -3;
282 int sum1 = c0[x] * -3 +
c1[x] * 5 +
c2[x] * 5 +
283 c3[x] * 5 + c5[x] * -3 +
284 c6[x] * -3 + c7[x] * -3 + c8[x] * -3;
285 int sum2 = c0[x] * -3 +
c1[x] * -3 +
c2[x] * 5 +
286 c3[x] * 5 + c5[x] * 5 +
287 c6[x] * -3 + c7[x] * -3 + c8[x] * -3;
288 int sum3 = c0[x] * -3 +
c1[x] * -3 +
c2[x] * -3 +
289 c3[x] * 5 + c5[x] * 5 +
290 c6[x] * 5 + c7[x] * -3 + c8[x] * -3;
291 int sum4 = c0[x] * -3 +
c1[x] * -3 +
c2[x] * -3 +
292 c3[x] * -3 + c5[x] * 5 +
293 c6[x] * 5 + c7[x] * 5 + c8[x] * -3;
294 int sum5 = c0[x] * -3 +
c1[x] * -3 +
c2[x] * -3 +
295 c3[x] * -3 + c5[x] * -3 +
296 c6[x] * 5 + c7[x] * 5 + c8[x] * 5;
297 int sum6 = c0[x] * 5 +
c1[x] * -3 +
c2[x] * -3 +
298 c3[x] * -3 + c5[x] * -3 +
299 c6[x] * -3 + c7[x] * 5 + c8[x] * 5;
300 int sum7 = c0[x] * 5 +
c1[x] * 5 +
c2[x] * -3 +
301 c3[x] * -3 + c5[x] * -3 +
302 c6[x] * -3 + c7[x] * -3 + c8[x] * 5;
304 sum0 =
FFMAX(sum0, sum1);
305 sum2 =
FFMAX(sum2, sum3);
306 sum4 =
FFMAX(sum4, sum5);
307 sum6 =
FFMAX(sum6, sum7);
308 sum0 =
FFMAX(sum0, sum2);
309 sum4 =
FFMAX(sum4, sum6);
310 sum0 =
FFMAX(sum0, sum4);
317 float rdiv,
float bias,
const int *
const matrix,
318 const uint8_t *
c[],
int peak,
int radius,
321 uint16_t *
dst = (uint16_t *)dstp;
324 for (x = 0; x <
width; x++) {
334 sum = (int)(sum * rdiv +
bias + 0.5
f);
340 float rdiv,
float bias,
const int *
const matrix,
341 const uint8_t *
c[],
int peak,
int radius,
344 uint16_t *
dst = (uint16_t *)dstp;
347 for (x = 0; x <
width; x++) {
350 for (
i = 0;
i < 25;
i++)
353 sum = (int)(sum * rdiv +
bias + 0.5
f);
359 float rdiv,
float bias,
const int *
const matrix,
360 const uint8_t *
c[],
int peak,
int radius,
363 uint16_t *
dst = (uint16_t *)dstp;
366 for (x = 0; x <
width; x++) {
369 for (
i = 0;
i < 49;
i++)
372 sum = (int)(sum * rdiv +
bias + 0.5
f);
378 float rdiv,
float bias,
const int *
const matrix,
379 const uint8_t *
c[],
int peak,
int radius,
382 uint16_t *
dst = (uint16_t *)dstp;
385 for (x = 0; x <
width; x++) {
388 for (
i = 0;
i < 2 * radius + 1;
i++)
391 sum = (int)(sum * rdiv +
bias + 0.5
f);
397 float rdiv,
float bias,
const int *
const matrix,
398 const uint8_t *
c[],
int peak,
int radius,
402 uint16_t *
dst = (uint16_t *)dstp;
405 for (
int y = 0; y <
height; y++) {
407 memset(sum, 0,
sizeof(sum));
408 for (
int i = 0;
i < 2 * radius + 1;
i++) {
409 for (
int off16 = 0; off16 <
width; off16++)
413 for (
int off16 = 0; off16 <
width; off16++) {
414 sum[off16] = (int)(sum[off16] * rdiv +
bias + 0.5
f);
422 float rdiv,
float bias,
const int *
const matrix,
423 const uint8_t *
c[],
int peak,
int radius,
428 for (x = 0; x <
width; x++) {
431 for (
i = 0;
i < 49;
i++)
434 sum = (int)(sum * rdiv +
bias + 0.5
f);
440 float rdiv,
float bias,
const int *
const matrix,
441 const uint8_t *
c[],
int peak,
int radius,
446 for (x = 0; x <
width; x++) {
449 for (
i = 0;
i < 25;
i++)
452 sum = (int)(sum * rdiv +
bias + 0.5
f);
458 float rdiv,
float bias,
const int *
const matrix,
459 const uint8_t *
c[],
int peak,
int radius,
462 const uint8_t *c0 =
c[0], *
c1 =
c[1], *
c2 =
c[2];
463 const uint8_t *c3 =
c[3], *c4 =
c[4], *c5 =
c[5];
464 const uint8_t *c6 =
c[6], *c7 =
c[7], *c8 =
c[8];
467 for (x = 0; x <
width; x++) {
471 sum = (int)(sum * rdiv +
bias + 0.5
f);
477 float rdiv,
float bias,
const int *
const matrix,
478 const uint8_t *
c[],
int peak,
int radius,
483 for (x = 0; x <
width; x++) {
486 for (
i = 0;
i < 2 * radius + 1;
i++)
489 sum = (int)(sum * rdiv +
bias + 0.5
f);
495 float rdiv,
float bias,
const int *
const matrix,
496 const uint8_t *
c[],
int peak,
int radius,
501 for (
int y = 0; y <
height; y++) {
502 memset(sum, 0,
sizeof(sum));
504 for (
int i = 0;
i < 2 * radius + 1;
i++) {
505 for (
int off16 = 0; off16 < 16; off16++)
509 for (
int off16 = 0; off16 < 16; off16++) {
510 sum[off16] = (int)(sum[off16] * rdiv +
bias + 0.5
f);
518 int x,
int w,
int y,
int h,
int bpc)
522 for (
i = 0;
i < 25;
i++) {
523 int xoff =
FFABS(x + ((
i % 5) - 2));
524 int yoff =
FFABS(y + (
i / 5) - 2);
526 xoff = xoff >=
w ? 2 *
w - 1 - xoff : xoff;
527 yoff = yoff >=
h ? 2 *
h - 1 - yoff : yoff;
534 int x,
int w,
int y,
int h,
int bpc)
538 for (
i = 0;
i < 49;
i++) {
539 int xoff =
FFABS(x + ((
i % 7) - 3));
540 int yoff =
FFABS(y + (
i / 7) - 3);
542 xoff = xoff >=
w ? 2 *
w - 1 - xoff : xoff;
543 yoff = yoff >=
h ? 2 *
h - 1 - yoff : yoff;
550 int x,
int w,
int y,
int h,
int bpc)
554 for (
i = 0;
i < radius * 2 + 1;
i++) {
555 int xoff =
FFABS(x +
i - radius);
557 xoff = xoff >=
w ? 2 *
w - 1 - xoff : xoff;
564 int x,
int w,
int y,
int h,
int bpc)
568 for (
i = 0;
i < radius * 2 + 1;
i++) {
569 int xoff =
FFABS(x +
i - radius);
571 xoff = xoff >=
h ? 2 *
h - 1 - xoff : xoff;
585 for (plane = 0; plane <
s->nb_planes; plane++) {
586 const int mode =
s->mode[plane];
587 const int bpc =
s->bpc;
588 const int radius =
s->size[plane] / 2;
589 const int height =
s->planeheight[plane];
590 const int width =
s->planewidth[plane];
592 const int dstride =
out->linesize[plane];
596 const int slice_end = (sizeh * (jobnr+1)) / nb_jobs;
597 const float rdiv =
s->rdiv[plane];
598 const float bias =
s->bias[plane];
599 const uint8_t *
src = in->
data[plane];
601 uint8_t *
dst =
out->data[plane] + dst_pos;
602 const int *
matrix =
s->matrix[plane];
604 const uint8_t *
c[49];
607 if (
s->copy[plane]) {
620 for (x = 0; x < radius; x++) {
625 s->filter[plane](
dst + yoff + xoff, 1, rdiv,
630 s->filter[plane](
dst + yoff + xoff, sizew - 2 * radius,
633 for (x = sizew - radius; x < sizew; x++) {
638 s->filter[plane](
dst + yoff + xoff, 1, rdiv,
657 s->depth =
desc->comp[0].depth;
658 s->max = (1 <<
s->depth) - 1;
661 s->planewidth[0] =
s->planewidth[3] =
inlink->w;
663 s->planeheight[0] =
s->planeheight[3] =
inlink->h;
667 s->bpc = (
s->depth + 7) / 8;
669 if (!strcmp(
ctx->filter->name,
"convolution")) {
670 for (
i = 0;
i < 4;
i++) {
672 char *orig, *p, *
arg, *saveptr =
NULL;
677 s->matrix_length[
i] = 0;
678 s->rdiv[
i] =
s->user_rdiv[
i];
681 while (
s->matrix_length[
i] < 49) {
688 s->matrix_length[
i]++;
692 if (!(
s->matrix_length[
i] & 1)) {
701 s->size[
i] =
s->matrix_length[
i];
705 s->size[
i] =
s->matrix_length[
i];
706 }
else if (
s->matrix_length[
i] == 9) {
716 }
else if (
s->matrix_length[
i] == 25) {
725 }
else if (
s->matrix_length[
i] == 49) {
741 s->rdiv[
i] = 1. / sum;
743 if (
s->copy[
i] && (
s->rdiv[
i] != 1. ||
s->bias[
i] != 0.))
746 }
else if (!strcmp(
ctx->filter->name,
"prewitt")) {
747 for (
i = 0;
i < 4;
i++) {
749 s->copy[
i] = !((1 <<
i) &
s->planes);
752 s->rdiv[
i] =
s->scale;
753 s->bias[
i] =
s->delta;
755 }
else if (!strcmp(
ctx->filter->name,
"roberts")) {
756 for (
i = 0;
i < 4;
i++) {
758 s->copy[
i] = !((1 <<
i) &
s->planes);
761 s->rdiv[
i] =
s->scale;
762 s->bias[
i] =
s->delta;
764 #if CONFIG_SOBEL_FILTER
765 }
else if (!strcmp(
ctx->filter->name,
"sobel")) {
768 }
else if (!strcmp(
ctx->filter->name,
"kirsch")) {
769 for (
i = 0;
i < 4;
i++) {
771 s->copy[
i] = !((1 <<
i) &
s->planes);
774 s->rdiv[
i] =
s->scale;
775 s->bias[
i] =
s->delta;
777 }
else if (!strcmp(
ctx->filter->name,
"scharr")) {
778 for (
i = 0;
i < 4;
i++) {
780 s->copy[
i] = !((1 <<
i) &
s->planes);
783 s->rdiv[
i] =
s->scale;
784 s->bias[
i] =
s->delta;
788 if (!strcmp(
ctx->filter->name,
"convolution")) {
790 for (p = 0; p <
s->nb_planes; p++) {
795 else if (
s->size[p] == 3)
797 else if (
s->size[p] == 5)
799 else if (
s->size[p] == 7)
803 #if CONFIG_CONVOLUTION_FILTER && ARCH_X86_64
806 }
else if (!strcmp(
ctx->filter->name,
"prewitt")) {
808 for (p = 0; p <
s->nb_planes; p++)
810 }
else if (!strcmp(
ctx->filter->name,
"roberts")) {
812 for (p = 0; p <
s->nb_planes; p++)
814 }
else if (!strcmp(
ctx->filter->name,
"kirsch")) {
816 for (p = 0; p <
s->nb_planes; p++)
818 }
else if (!strcmp(
ctx->filter->name,
"scharr")) {
820 for (p = 0; p <
s->nb_planes; p++)
851 FFMIN3(
s->planeheight[1],
s->planewidth[1],
s->nb_threads));
858 char *res,
int res_len,
int flags)
878 #if CONFIG_CONVOLUTION_FILTER
881 .
name =
"convolution",
884 .priv_class = &convolution_class,
904 #if CONFIG_PREWITT_FILTER
910 .priv_class = &common_class,
920 #if CONFIG_SOBEL_FILTER
926 .priv_class = &common_class,
936 #if CONFIG_ROBERTS_FILTER
942 .priv_class = &common_class,
952 #if CONFIG_KIRSCH_FILTER
958 .priv_class = &common_class,
968 #if CONFIG_SCHARR_FILTER
974 .priv_class = &common_class,
AVFrame * ff_get_video_buffer(AVFilterLink *link, int w, int h)
Request a picture buffer with a specific set of permissions.
#define AV_PIX_FMT_YUVA422P16
#define AV_PIX_FMT_GBRAP16
static void setup_3x3(int radius, const uint8_t *c[], const uint8_t *src, int stride, int x, int w, int y, int h, int bpc)
AVPixelFormat
Pixel format.
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
#define FILTER_PIXFMTS_ARRAY(array)
static void filter_prewitt(uint8_t *dst, int width, float scale, float delta, const int *const matrix, const uint8_t *c[], int peak, int radius, int dstride, int stride, int size)
int ff_filter_frame(AVFilterLink *link, AVFrame *frame)
Send a frame of data to the next filter.
const AVPixFmtDescriptor * av_pix_fmt_desc_get(enum AVPixelFormat pix_fmt)
const AVFilter ff_vf_scharr
const AVFilter ff_vf_roberts
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
void av_frame_free(AVFrame **frame)
Free the frame and any dynamically allocated objects in it, e.g.
#define AV_PIX_FMT_YUVA422P9
#define FILTER_INPUTS(array)
This structure describes decoded (raw) audio or video data.
trying all byte sequences megabyte in length and selecting the best looking sequence will yield cases to try But a word about which is also called distortion Distortion can be quantified by almost any quality measurement one chooses the sum of squared differences is used but more complex methods that consider psychovisual effects can be used as well It makes no difference in this discussion First step
#define AV_PIX_FMT_YUVA420P16
#define AV_PIX_FMT_YUVA420P10
const AVFilter ff_vf_kirsch
#define AV_PIX_FMT_YUV420P10
const AVFilter ff_vf_prewitt
@ AV_PIX_FMT_YUV440P
planar YUV 4:4:0 (1 Cr & Cb sample per 1x2 Y samples)
static int filter_frame(AVFilterLink *inlink, AVFrame *in)
const char * name
Filter name.
static void filter16_7x7(uint8_t *dstp, int width, float rdiv, float bias, const int *const matrix, const uint8_t *c[], int peak, int radius, int dstride, int stride, int size)
static void filter16_scharr(uint8_t *dstp, int width, float scale, float delta, const int *const matrix, const uint8_t *c[], int peak, int radius, int dstride, int stride, int size)
A link between two filters.
#define AV_PIX_FMT_YUVA422P10
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
void av_image_copy_plane(uint8_t *dst, int dst_linesize, const uint8_t *src, int src_linesize, int bytewidth, int height)
Copy image plane from src to dst.
static int filter_slice(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs)
static void setup_row(int radius, const uint8_t *c[], const uint8_t *src, int stride, int x, int w, int y, int h, int bpc)
static const int same3x3[9]
int av_pix_fmt_count_planes(enum AVPixelFormat pix_fmt)
#define AV_PIX_FMT_YUVA420P9
#define AV_PIX_FMT_GBRP14
static int slice_end(AVCodecContext *avctx, AVFrame *pict, int *got_output)
Handle slice ends.
@ AV_PIX_FMT_GBRAP
planar GBRA 4:4:4:4 32bpp
#define AV_PIX_FMT_GBRP10
#define AV_PIX_FMT_YUVA444P16
#define AV_PIX_FMT_YUV422P9
#define AV_PIX_FMT_GRAY16
A filter pad used for either input or output.
AVFILTER_DEFINE_CLASS(convolution)
static const AVFilterPad convolution_inputs[]
#define AV_PIX_FMT_YUV444P10
@ AV_PIX_FMT_YUVJ411P
planar YUV 4:1:1, 12bpp, (1 Cr & Cb sample per 4x1 Y samples) full scale (JPEG), deprecated in favor ...
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
#define AV_PIX_FMT_YUV422P16
const AVFilterPad ff_video_default_filterpad[1]
An AVFilterPad array whose only entry has name "default" and is of type AVMEDIA_TYPE_VIDEO.
@ AV_PIX_FMT_YUVJ422P
planar YUV 4:2:2, 16bpp, full scale (JPEG), deprecated in favor of AV_PIX_FMT_YUV422P and setting col...
#define AV_PIX_FMT_GBRAP10
#define AV_PIX_FMT_GBRAP12
@ AV_PIX_FMT_YUVA420P
planar YUV 4:2:0, 20bpp, (1 Cr & Cb sample per 2x2 Y & A samples)
#define AV_PIX_FMT_YUV444P16
#define AV_CEIL_RSHIFT(a, b)
char * av_strtok(char *s, const char *delim, char **saveptr)
Split the string into several tokens which can be accessed by successive calls to av_strtok().
#define AV_PIX_FMT_YUVA444P12
#define AV_PIX_FMT_YUV420P9
#define AV_PIX_FMT_YUV420P16
static int process_command(AVFilterContext *ctx, const char *cmd, const char *args, char *res, int res_len, int flags)
#define AV_PIX_FMT_GRAY14
@ AV_PIX_FMT_YUV420P
planar YUV 4:2:0, 12bpp, (1 Cr & Cb sample per 2x2 Y samples)
#define FILTER_OUTPUTS(array)
@ AV_PIX_FMT_YUVJ444P
planar YUV 4:4:4, 24bpp, full scale (JPEG), deprecated in favor of AV_PIX_FMT_YUV444P and setting col...
#define FFABS(a)
Absolute value, Note, INT_MIN / INT64_MIN result in undefined behavior as they are not representable ...
#define AV_PIX_FMT_GRAY10
#define AV_PIX_FMT_GBRP16
static const struct @465 planes[]
int av_frame_copy_props(AVFrame *dst, const AVFrame *src)
Copy only "metadata" fields from src to dst.
static int bias(int x, int c)
@ AV_PIX_FMT_YUVJ420P
planar YUV 4:2:0, 12bpp, full scale (JPEG), deprecated in favor of AV_PIX_FMT_YUV420P and setting col...
static __device__ float sqrtf(float a)
static enum AVPixelFormat pix_fmts[]
#define AV_PIX_FMT_YUV422P10
static const AVOption common_options[]
@ AV_PIX_FMT_GRAY8
Y , 8bpp.
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
static void filter16_3x3(uint8_t *dstp, int width, float rdiv, float bias, const int *const matrix, const uint8_t *c[], int peak, int radius, int dstride, int stride, int size)
const AVFilter ff_vf_convolution
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
#define DECLARE_ALIGNED(n, t, v)
uint8_t ptrdiff_t const uint8_t ptrdiff_t int intptr_t intptr_t int int16_t * dst
static const AVOption convolution_options[]
#define AV_PIX_FMT_YUV422P12
static void filter16_prewitt(uint8_t *dstp, int width, float scale, float delta, const int *const matrix, const uint8_t *c[], int peak, int radius, int dstride, int stride, int size)
#define AV_PIX_FMT_YUV444P12
static void filter16_column(uint8_t *dstp, int height, float rdiv, float bias, const int *const matrix, const uint8_t *c[], int peak, int radius, int dstride, int stride, int size)
static void setup_5x5(int radius, const uint8_t *c[], const uint8_t *src, int stride, int x, int w, int y, int h, int bpc)
static void filter16_roberts(uint8_t *dstp, int width, float scale, float delta, const int *const matrix, const uint8_t *c[], int peak, int radius, int dstride, int stride, int size)
int ff_filter_process_command(AVFilterContext *ctx, const char *cmd, const char *arg, char *res, int res_len, int flags)
Generic processing of user supplied commands that are set in the same way as the filter options.
static int config_input(AVFilterLink *inlink)
@ AV_PIX_FMT_YUVA444P
planar YUV 4:4:4 32bpp, (1 Cr & Cb sample per 1x1 Y & A samples)
#define AV_PIX_FMT_YUVA444P10
static void filter_row(uint8_t *dst, int width, float rdiv, float bias, const int *const matrix, const uint8_t *c[], int peak, int radius, int dstride, int stride, int size)
static const int same5x5[25]
#define AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC
Some filters support a generic "enable" expression option that can be used to enable or disable a fil...
@ AV_OPT_TYPE_FLOAT
Underlying C type is float.
#define i(width, name, range_min, range_max)
static void filter_kirsch(uint8_t *dst, int width, float scale, float delta, const int *const matrix, const uint8_t *c[], int peak, int radius, int dstride, int stride, int size)
static int param_init(AVFilterContext *ctx)
int w
agreed upon image width
#define AV_PIX_FMT_GBRP12
int ff_filter_get_nb_threads(AVFilterContext *ctx)
Get number of threads for current filter instance.
Used for passing data between threads.
static const int same7x7[49]
@ AV_PIX_FMT_YUVJ440P
planar YUV 4:4:0 full scale (JPEG), deprecated in favor of AV_PIX_FMT_YUV440P and setting color_range
const char * name
Pad name.
static void setup_7x7(int radius, const uint8_t *c[], const uint8_t *src, int stride, int x, int w, int y, int h, int bpc)
#define AV_PIX_FMT_YUV444P9
static void filter_scharr(uint8_t *dst, int width, float scale, float delta, const int *const matrix, const uint8_t *c[], int peak, int radius, int dstride, int stride, int size)
static void setup_column(int radius, const uint8_t *c[], const uint8_t *src, int stride, int x, int w, int y, int h, int bpc)
static int slice_start(SliceContext *sc, VVCContext *s, VVCFrameContext *fc, const CodedBitstreamUnit *unit, const int is_first_slice)
static void filter_3x3(uint8_t *dst, int width, float rdiv, float bias, const int *const matrix, const uint8_t *c[], int peak, int radius, int dstride, int stride, int size)
static void filter_7x7(uint8_t *dst, int width, float rdiv, float bias, const int *const matrix, const uint8_t *c[], int peak, int radius, int dstride, int stride, int size)
#define AV_PIX_FMT_YUVA444P9
static void filter_column(uint8_t *dst, int height, float rdiv, float bias, const int *const matrix, const uint8_t *c[], int peak, int radius, int dstride, int stride, int size)
#define AV_PIX_FMT_YUV420P12
static void filter_roberts(uint8_t *dst, int width, float scale, float delta, const int *const matrix, const uint8_t *c[], int peak, int radius, int dstride, int stride, int size)
#define AV_PIX_FMT_YUV422P14
int h
agreed upon image height
int ff_filter_execute(AVFilterContext *ctx, avfilter_action_func *func, void *arg, int *ret, int nb_jobs)
AVFILTER_DEFINE_CLASS_EXT(common, "kirsch/prewitt/roberts/scharr/sobel", common_options)
#define AV_PIX_FMT_YUVA422P12
@ AV_OPT_TYPE_INT
Underlying C type is int.
static void filter16_5x5(uint8_t *dstp, int width, float rdiv, float bias, const int *const matrix, const uint8_t *c[], int peak, int radius, int dstride, int stride, int size)
static void filter_5x5(uint8_t *dst, int width, float rdiv, float bias, const int *const matrix, const uint8_t *c[], int peak, int radius, int dstride, int stride, int size)
@ AV_PIX_FMT_YUV444P
planar YUV 4:4:4, 24bpp, (1 Cr & Cb sample per 1x1 Y samples)
const AVFilter ff_vf_sobel
@ AV_PIX_FMT_GBRP
planar GBR 4:4:4 24bpp
#define AVFILTER_FLAG_SLICE_THREADS
The filter supports multithreading by splitting frames into multiple parts and processing them concur...
char * av_strdup(const char *s)
Duplicate a string.
@ AV_PIX_FMT_YUV422P
planar YUV 4:2:2, 16bpp, (1 Cr & Cb sample per 2x1 Y samples)
Descriptor that unambiguously describes how the bits of a pixel are stored in the up to 4 data planes...
void ff_convolution_init_x86(ConvolutionContext *s)
static void ff_sobel_init(ConvolutionContext *s, int depth, int nb_planes)
static void scale(int *out, const int *in, const int w, const int h, const int shift)
@ AV_PIX_FMT_YUV411P
planar YUV 4:1:1, 12bpp, (1 Cr & Cb sample per 4x1 Y samples)
static void filter16_kirsch(uint8_t *dstp, int width, float scale, float delta, const int *const matrix, const uint8_t *c[], int peak, int radius, int dstride, int stride, int size)
#define flags(name, subs,...)
int linesize[AV_NUM_DATA_POINTERS]
For video, a positive or negative value, which is typically indicating the size in bytes of each pict...
@ AV_PIX_FMT_YUV410P
planar YUV 4:1:0, 9bpp, (1 Cr & Cb sample per 4x4 Y samples)
#define AV_PIX_FMT_YUV440P12
#define AV_PIX_FMT_YUV444P14
@ AV_OPT_TYPE_STRING
Underlying C type is a uint8_t* that is either NULL or points to a C string allocated with the av_mal...
#define AV_PIX_FMT_GRAY12
@ AV_OPT_TYPE_CONST
Special option type for declaring named constants.
static void filter16_row(uint8_t *dstp, int width, float rdiv, float bias, const int *const matrix, const uint8_t *c[], int peak, int radius, int dstride, int stride, int size)
@ AV_PIX_FMT_YUVA422P
planar YUV 4:2:2 24bpp, (1 Cr & Cb sample per 2x1 Y & A samples)
#define AV_PIX_FMT_YUV420P14