/src/ffmpeg/libavutil/dovi_meta.c
Line | Count | Source |
1 | | /* |
2 | | * Copyright (c) 2020 Jun Zhao<barryjzhao@tencent.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 <string.h> |
22 | | |
23 | | #include "dovi_meta.h" |
24 | | #include "mem.h" |
25 | | |
26 | | AVDOVIDecoderConfigurationRecord *av_dovi_alloc(size_t *size) |
27 | 20.2k | { |
28 | 20.2k | AVDOVIDecoderConfigurationRecord *dovi = |
29 | 20.2k | av_mallocz(sizeof(AVDOVIDecoderConfigurationRecord)); |
30 | 20.2k | if (!dovi) |
31 | 0 | return NULL; |
32 | | |
33 | 20.2k | if (size) |
34 | 20.2k | *size = sizeof(*dovi); |
35 | | |
36 | 20.2k | return dovi; |
37 | 20.2k | } |
38 | | |
39 | | typedef struct AVDOVIMetadataInternal { |
40 | | AVDOVIMetadata metadata; |
41 | | AVDOVIRpuDataHeader header; |
42 | | AVDOVIDataMapping mapping; |
43 | | AVDOVIColorMetadata color; |
44 | | AVDOVIDmData ext_blocks[AV_DOVI_MAX_EXT_BLOCKS]; |
45 | | } AVDOVIMetadataInternal; |
46 | | |
47 | | AVDOVIMetadata *av_dovi_metadata_alloc(size_t *size) |
48 | 7 | { |
49 | 7 | AVDOVIMetadataInternal *dovi = av_mallocz(sizeof(AVDOVIMetadataInternal)); |
50 | 7 | if (!dovi) |
51 | 0 | return NULL; |
52 | | |
53 | 7 | if (size) |
54 | 7 | *size = sizeof(*dovi); |
55 | | |
56 | 7 | dovi->metadata = (struct AVDOVIMetadata) { |
57 | 7 | .header_offset = offsetof(AVDOVIMetadataInternal, header), |
58 | 7 | .mapping_offset = offsetof(AVDOVIMetadataInternal, mapping), |
59 | 7 | .color_offset = offsetof(AVDOVIMetadataInternal, color), |
60 | 7 | .ext_block_offset = offsetof(AVDOVIMetadataInternal, ext_blocks), |
61 | 7 | .ext_block_size = sizeof(AVDOVIDmData), |
62 | 7 | }; |
63 | | |
64 | 7 | return &dovi->metadata; |
65 | 7 | } |
66 | | |
67 | | AVDOVIDmData *av_dovi_find_level(const AVDOVIMetadata *data, uint8_t level) |
68 | 0 | { |
69 | 0 | for (int i = 0; i < data->num_ext_blocks; i++) { |
70 | 0 | AVDOVIDmData *ext = av_dovi_get_ext(data, i); |
71 | 0 | if (ext->level == level) |
72 | 0 | return ext; |
73 | 0 | } |
74 | | |
75 | 0 | return NULL; |
76 | 0 | } |