1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
|
/*
* Copyright (C) 2023 Mikhail Burakov. This file is part of streamer.
*
* streamer is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* streamer is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with streamer. If not, see <https://www.gnu.org/licenses/>.
*/
#ifndef STREAMER_HEVC_H_
#define STREAMER_HEVC_H_
#include <stdbool.h>
#include <va/va.h>
// Table 7-1
enum NalUnitType {
BLA_W_LP = 16,
IDR_W_RADL = 19,
IDR_N_LP = 20,
RSV_IRAP_VCL23 = 23,
VPS_NUT = 32,
SPS_NUT = 33,
PPS_NUT = 34,
};
// Table 7-7
enum SliceType {
B = 0,
P = 1,
I = 2,
};
struct Bitstream;
struct MoreVideoParameters {
uint32_t max_b_depth;
uint32_t time_base_num;
uint32_t time_base_den;
};
struct MoreSeqParameters {
uint32_t crop_width;
uint32_t crop_height;
// TODO(mburakov): Why ffmpeg ignores vui section in seq?
bool video_signal_type_present_flag;
bool video_full_range_flag;
bool colour_description_present_flag;
uint8_t colour_primaries;
uint8_t transfer_characteristics;
uint8_t matrix_coeffs;
bool chroma_loc_info_present_flag;
uint32_t chroma_sample_loc_type_top_field;
uint32_t chroma_sample_loc_type_bottom_field;
};
struct MoreSliceParamerters {
bool first_slice_segment_in_pic_flag;
};
void PackVideoParameterSetNalUnit(struct Bitstream* bitstream,
const VAEncSequenceParameterBufferHEVC* seq,
const struct MoreVideoParameters* mvp);
void PackSeqParameterSetNalUnit(struct Bitstream* bitstream,
const VAEncSequenceParameterBufferHEVC* seq,
const struct MoreVideoParameters* mvp,
const struct MoreSeqParameters* msp);
void PackPicParameterSetNalUnit(struct Bitstream* bitstream,
const VAEncPictureParameterBufferHEVC* pic);
void PackSliceSegmentHeaderNalUnit(struct Bitstream* bitstream,
const VAEncSequenceParameterBufferHEVC* seq,
const VAEncPictureParameterBufferHEVC* pic,
const VAEncSliceParameterBufferHEVC* slice,
const struct MoreSliceParamerters* msp);
#endif // STREAMER_HEVC_H_
|