/src/libheif/libheif/codecs/avc_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 "avc_dec.h" |
22 | | #include "avc_boxes.h" |
23 | | #include "error.h" |
24 | | #include "context.h" |
25 | | |
26 | | #include <string> |
27 | | |
28 | | |
29 | | Result<std::vector<uint8_t>> Decoder_AVC::read_bitstream_configuration_data() const |
30 | 0 | { |
31 | 0 | std::vector<uint8_t> data; |
32 | 0 | m_avcC->get_header_nals(data); |
33 | |
|
34 | 0 | return data; |
35 | 0 | } |
36 | | |
37 | | |
38 | | int Decoder_AVC::get_luma_bits_per_pixel() const |
39 | 0 | { |
40 | 0 | return m_avcC->get_configuration().bit_depth_luma; |
41 | 0 | } |
42 | | |
43 | | |
44 | | int Decoder_AVC::get_chroma_bits_per_pixel() const |
45 | 0 | { |
46 | 0 | return m_avcC->get_configuration().bit_depth_chroma; |
47 | 0 | } |
48 | | |
49 | | |
50 | | Error Decoder_AVC::get_coded_image_colorspace(heif_colorspace* out_colorspace, heif_chroma* out_chroma) const |
51 | 0 | { |
52 | 0 | *out_chroma = m_avcC->get_configuration().chroma_format; |
53 | |
|
54 | 0 | if (*out_chroma == heif_chroma_monochrome) { |
55 | 0 | *out_colorspace = heif_colorspace_monochrome; |
56 | 0 | } |
57 | 0 | else { |
58 | 0 | *out_colorspace = heif_colorspace_YCbCr; |
59 | 0 | } |
60 | |
|
61 | 0 | return Error::Ok; |
62 | 0 | } |