FFmpeg coverage


Directory: ../../../ffmpeg/
File: src/libavutil/ambient_viewing_environment.c
Date: 2026-08-28 05:02:41
Exec Total Coverage
Lines: 20 20 100.0%
Functions: 3 3 100.0%
Branches: 8 8 100.0%

Line Branch Exec Source
1 /*
2 * Copyright (c) 2023 Jan Ekström <jeebjp@gmail.com>
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 "ambient_viewing_environment.h"
22 #include "mem.h"
23
24 18 static void get_defaults(AVAmbientViewingEnvironment *env)
25 {
26 18 env->ambient_illuminance =
27 18 env->ambient_light_x =
28 18 env->ambient_light_y = (AVRational) { 0, 1 };
29 18 }
30
31 19 AVAmbientViewingEnvironment *av_ambient_viewing_environment_alloc(size_t *size)
32 {
33 AVAmbientViewingEnvironment *env =
34 19 av_mallocz(sizeof(AVAmbientViewingEnvironment));
35
36
2/2
✓ Branch 0 taken 16 times.
✓ Branch 1 taken 3 times.
19 if (size)
37
2/2
✓ Branch 0 taken 15 times.
✓ Branch 1 taken 1 times.
16 *size = env ? sizeof(*env) : 0;
38
39
2/2
✓ Branch 0 taken 2 times.
✓ Branch 1 taken 17 times.
19 if (!env)
40 2 return NULL;
41
42 17 get_defaults(env);
43
44 17 return env;
45 }
46
47 2 AVAmbientViewingEnvironment *av_ambient_viewing_environment_create_side_data(AVFrame *frame)
48 {
49 AVFrameSideData *side_data =
50 2 av_frame_new_side_data(frame,
51 AV_FRAME_DATA_AMBIENT_VIEWING_ENVIRONMENT,
52 sizeof(AVAmbientViewingEnvironment));
53
2/2
✓ Branch 0 taken 1 times.
✓ Branch 1 taken 1 times.
2 if (!side_data)
54 1 return NULL;
55
56 1 memset(side_data->data, 0, side_data->size);
57 1 get_defaults((AVAmbientViewingEnvironment *)side_data->data);
58
59 1 return (AVAmbientViewingEnvironment *)side_data->data;
60 }
61