FFmpeg coverage


Directory: ../../../ffmpeg/
File: src/libavfilter/x86/vf_eq_init.c
Date: 2026-08-26 01:27:24
Exec Total Coverage
Lines: 14 14 100.0%
Functions: 2 2 100.0%
Branches: 4 4 100.0%

Line Branch Exec Source
1 /*
2 *
3 * Original MPlayer filters by Richard Felker.
4 *
5 * This file is part of FFmpeg.
6 *
7 * FFmpeg is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * FFmpeg is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License along
18 * with FFmpeg; if not, write to the Free Software Foundation, Inc.,
19 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20 */
21
22 #include "libavutil/attributes.h"
23 #include "libavutil/cpu.h"
24 #include "libavutil/x86/cpu.h"
25 #include "libavfilter/vf_eq.h"
26
27 extern void ff_process_one_line_sse2(const uint8_t *src, uint8_t *dst, short contrast,
28 short brightness, int w);
29
30 2 static void process_sse2(EQParameters *param, uint8_t *dst, int dst_stride,
31 const uint8_t *src, int src_stride, int w, int h)
32 {
33 2 short contrast = (short) (param->contrast * 256 * 16);
34 2 short brightness = ((short) (100.0 * param->brightness + 100.0) * 511)
35 2 / 200 - 128 - contrast / 32;
36
37
2/2
✓ Branch 0 taken 512 times.
✓ Branch 1 taken 2 times.
514 while (h--) {
38 512 ff_process_one_line_sse2(src, dst, contrast, brightness, w);
39 512 src += src_stride;
40 512 dst += dst_stride;
41 }
42 2 }
43
44 14 av_cold void ff_eq_init_x86(EQContext *eq)
45 {
46 14 int cpu_flags = av_get_cpu_flags();
47
2/2
✓ Branch 0 taken 10 times.
✓ Branch 1 taken 4 times.
14 if (EXTERNAL_SSE2(cpu_flags)) {
48 10 eq->process = process_sse2;
49 }
50 14 }
51