FFmpeg coverage


Directory: ../../../ffmpeg/
File: src/libavformat/dovi_isom.c
Date: 2024-04-25 15:36:26
Exec Total Coverage
Lines: 49 54 90.7%
Functions: 2 2 100.0%
Branches: 8 14 57.1%

Line Branch Exec Source
1 /*
2 * DOVI ISO Media common code
3 *
4 * Copyright (c) 2020 Vacing Fang <vacingfang@tencent.com>
5 * Copyright (c) 2021 quietvoid
6 *
7 * This file is part of FFmpeg.
8 *
9 * FFmpeg is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Lesser General Public
11 * License as published by the Free Software Foundation; either
12 * version 2.1 of the License, or (at your option) any later version.
13 *
14 * FFmpeg is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * Lesser General Public License for more details.
18 *
19 * You should have received a copy of the GNU Lesser General Public
20 * License along with FFmpeg; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
22 */
23
24 #include "libavutil/dovi_meta.h"
25 #include "libavutil/mem.h"
26
27 #include "libavcodec/put_bits.h"
28
29 #include "avformat.h"
30 #include "dovi_isom.h"
31
32 8 int ff_isom_parse_dvcc_dvvc(void *logctx, AVStream *st,
33 const uint8_t *buf_ptr, uint64_t size)
34 {
35 uint32_t buf;
36 AVDOVIDecoderConfigurationRecord *dovi;
37 size_t dovi_size;
38
39
2/4
✓ Branch 0 taken 8 times.
✗ Branch 1 not taken.
✗ Branch 2 not taken.
✓ Branch 3 taken 8 times.
8 if (size > (1 << 30) || size < 4)
40 return AVERROR_INVALIDDATA;
41
42 8 dovi = av_dovi_alloc(&dovi_size);
43
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 8 times.
8 if (!dovi)
44 return AVERROR(ENOMEM);
45
46 8 dovi->dv_version_major = *buf_ptr++; // 8 bits
47 8 dovi->dv_version_minor = *buf_ptr++; // 8 bits
48
49 8 buf = *buf_ptr++ << 8;
50 8 buf |= *buf_ptr++;
51
52 8 dovi->dv_profile = (buf >> 9) & 0x7f; // 7 bits
53 8 dovi->dv_level = (buf >> 3) & 0x3f; // 6 bits
54 8 dovi->rpu_present_flag = (buf >> 2) & 0x01; // 1 bit
55 8 dovi->el_present_flag = (buf >> 1) & 0x01; // 1 bit
56 8 dovi->bl_present_flag = buf & 0x01; // 1 bit
57
58 // Has enough remaining data
59
1/2
✓ Branch 0 taken 8 times.
✗ Branch 1 not taken.
8 if (size >= 5) {
60 8 dovi->dv_bl_signal_compatibility_id = ((*buf_ptr++) >> 4) & 0x0f; // 4 bits
61 } else {
62 // 0 stands for None
63 // Dolby Vision V1.2.93 profiles and levels
64 dovi->dv_bl_signal_compatibility_id = 0;
65 }
66
67
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 8 times.
8 if (!av_packet_side_data_add(&st->codecpar->coded_side_data, &st->codecpar->nb_coded_side_data,
68 AV_PKT_DATA_DOVI_CONF, (uint8_t *)dovi, dovi_size, 0)) {
69 av_free(dovi);
70 return AVERROR(ENOMEM);
71 }
72
73 8 av_log(logctx, AV_LOG_TRACE, "DOVI in dvcC/dvvC/dvwC box, version: %d.%d, profile: %d, level: %d, "
74 "rpu flag: %d, el flag: %d, bl flag: %d, compatibility id: %d\n",
75 8 dovi->dv_version_major, dovi->dv_version_minor,
76 8 dovi->dv_profile, dovi->dv_level,
77 8 dovi->rpu_present_flag,
78 8 dovi->el_present_flag,
79 8 dovi->bl_present_flag,
80 8 dovi->dv_bl_signal_compatibility_id);
81
82 8 return 0;
83 }
84
85 2 void ff_isom_put_dvcc_dvvc(void *logctx, uint8_t out[ISOM_DVCC_DVVC_SIZE],
86 const AVDOVIDecoderConfigurationRecord *dovi)
87 {
88 PutBitContext pb;
89
90 2 init_put_bits(&pb, out, ISOM_DVCC_DVVC_SIZE);
91
92 2 put_bits(&pb, 8, dovi->dv_version_major);
93 2 put_bits(&pb, 8, dovi->dv_version_minor);
94 2 put_bits(&pb, 7, dovi->dv_profile & 0x7f);
95 2 put_bits(&pb, 6, dovi->dv_level & 0x3f);
96 2 put_bits(&pb, 1, !!dovi->rpu_present_flag);
97 2 put_bits(&pb, 1, !!dovi->el_present_flag);
98 2 put_bits(&pb, 1, !!dovi->bl_present_flag);
99 2 put_bits(&pb, 4, dovi->dv_bl_signal_compatibility_id & 0x0f);
100
101 2 put_bits(&pb, 28, 0); /* reserved */
102 2 put_bits32(&pb, 0); /* reserved */
103 2 put_bits32(&pb, 0); /* reserved */
104 2 put_bits32(&pb, 0); /* reserved */
105 2 put_bits32(&pb, 0); /* reserved */
106
107 2 flush_put_bits(&pb);
108
109 2 av_log(logctx, AV_LOG_DEBUG,
110 "DOVI in %s box, version: %d.%d, profile: %d, level: %d, "
111 "rpu flag: %d, el flag: %d, bl flag: %d, compatibility id: %d\n",
112
2/2
✓ Branch 0 taken 1 times.
✓ Branch 1 taken 1 times.
2 dovi->dv_profile > 10 ? "dvwC" : (dovi->dv_profile > 7 ? "dvvC" : "dvcC"),
113 2 dovi->dv_version_major, dovi->dv_version_minor,
114 2 dovi->dv_profile, dovi->dv_level,
115 2 dovi->rpu_present_flag,
116 2 dovi->el_present_flag,
117 2 dovi->bl_present_flag,
118
1/2
✓ Branch 0 taken 2 times.
✗ Branch 1 not taken.
2 dovi->dv_bl_signal_compatibility_id);
119 2 }
120