/src/libheif/libheif/codecs/vvc_dec.cc
Line | Count | Source (jump to first uncovered line) |
1 | | /* |
2 | | * HEIF codec. |
3 | | * Copyright (c) 2024 Dirk Farin <dirk.farin@gmail.com> |
4 | | * |
5 | | * This file is part of libheif. |
6 | | * |
7 | | * libheif is free software: you can redistribute it and/or modify |
8 | | * it under the terms of the GNU Lesser General Public License as |
9 | | * published by the Free Software Foundation, either version 3 of |
10 | | * the License, or (at your option) any later version. |
11 | | * |
12 | | * libheif 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 Lesser General Public License for more details. |
16 | | * |
17 | | * You should have received a copy of the GNU Lesser General Public License |
18 | | * along with libheif. If not, see <http://www.gnu.org/licenses/>. |
19 | | */ |
20 | | |
21 | | #include "vvc_dec.h" |
22 | | #include "vvc_boxes.h" |
23 | | #include "error.h" |
24 | | #include "context.h" |
25 | | |
26 | | #include <string> |
27 | | |
28 | | |
29 | | Result<std::vector<uint8_t>> Decoder_VVC::read_bitstream_configuration_data() const |
30 | 0 | { |
31 | 0 | std::vector<uint8_t> data; |
32 | 0 | if (!m_vvcC->get_headers(&data)) { |
33 | 0 | return Error{heif_error_Invalid_input, |
34 | 0 | heif_suberror_No_item_data}; |
35 | 0 | } |
36 | | |
37 | 0 | return data; |
38 | 0 | } |
39 | | |
40 | | |
41 | | int Decoder_VVC::get_luma_bits_per_pixel() const |
42 | 0 | { |
43 | 0 | const Box_vvcC::configuration& config = m_vvcC->get_configuration(); |
44 | 0 | if (config.ptl_present_flag) { |
45 | 0 | return config.bit_depth_minus8 + 8; |
46 | 0 | } |
47 | 0 | else { |
48 | 0 | return 8; // TODO: what shall we do if the bit-depth is unknown? Use PIXI? |
49 | 0 | } |
50 | 0 | } |
51 | | |
52 | | |
53 | | int Decoder_VVC::get_chroma_bits_per_pixel() const |
54 | 0 | { |
55 | 0 | return get_luma_bits_per_pixel(); |
56 | 0 | } |
57 | | |
58 | | |
59 | | Error Decoder_VVC::get_coded_image_colorspace(heif_colorspace* out_colorspace, heif_chroma* out_chroma) const |
60 | 0 | { |
61 | 0 | *out_chroma = (heif_chroma) (m_vvcC->get_configuration().chroma_format_idc); |
62 | |
|
63 | 0 | if (*out_chroma == heif_chroma_monochrome) { |
64 | 0 | *out_colorspace = heif_colorspace_monochrome; |
65 | 0 | } |
66 | 0 | else { |
67 | 0 | *out_colorspace = heif_colorspace_YCbCr; |
68 | 0 | } |
69 | |
|
70 | 0 | return Error::Ok; |
71 | 0 | } |