FFmpeg coverage


Directory: ../../../ffmpeg/
File: src/libavutil/ambient_viewing_environment.c
Date: 2024-04-19 17:50:32
Exec Total Coverage
Lines: 6 13 46.2%
Functions: 1 2 50.0%
Branches: 2 6 33.3%

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 14 AVAmbientViewingEnvironment *av_ambient_viewing_environment_alloc(size_t *size)
25 {
26 AVAmbientViewingEnvironment *env =
27 14 av_mallocz(sizeof(AVAmbientViewingEnvironment));
28
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 14 times.
14 if (!env)
29 return NULL;
30
31
1/2
✓ Branch 0 taken 14 times.
✗ Branch 1 not taken.
14 if (size)
32 14 *size = sizeof(*env);
33
34 14 return env;
35 }
36
37 AVAmbientViewingEnvironment *av_ambient_viewing_environment_create_side_data(AVFrame *frame)
38 {
39 AVFrameSideData *side_data =
40 av_frame_new_side_data(frame,
41 AV_FRAME_DATA_AMBIENT_VIEWING_ENVIRONMENT,
42 sizeof(AVAmbientViewingEnvironment));
43 if (!side_data)
44 return NULL;
45
46 memset(side_data->data, 0, side_data->size);
47
48 return (AVAmbientViewingEnvironment *)side_data->data;
49 }
50