1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * TW5864 driver - H.264 headers generation functions
5 * Copyright (C) 2016 Bluecherry, LLC <maintainers@bluecherrydvr.com>
8 #include <linux/log2.h>
12 static u8 marker
[] = { 0x00, 0x00, 0x00, 0x01 };
15 * Exponential-Golomb coding functions
17 * These functions are used for generation of H.264 bitstream headers.
19 * This code is derived from tw5864 reference driver by manufacturers, which
20 * itself apparently was derived from x264 project.
23 /* Bitstream writing context */
25 u8
*buf
; /* pointer to buffer beginning */
26 u8
*buf_end
; /* pointer to buffer end */
27 u8
*ptr
; /* pointer to current byte in buffer */
28 unsigned int bits_left
; /* number of available bits in current byte */
31 static void bs_init(struct bs
*s
, void *buf
, int size
)
35 s
->buf_end
= s
->ptr
+ size
;
39 static int bs_len(struct bs
*s
)
41 return s
->ptr
- s
->buf
;
44 static void bs_write(struct bs
*s
, int count
, u32 bits
)
46 if (s
->ptr
>= s
->buf_end
- 4)
50 bits
&= (1 << count
) - 1;
51 if (count
< s
->bits_left
) {
52 *s
->ptr
= (*s
->ptr
<< count
) | bits
;
53 s
->bits_left
-= count
;
56 *s
->ptr
= (*s
->ptr
<< s
->bits_left
) |
57 (bits
>> (count
- s
->bits_left
));
58 count
-= s
->bits_left
;
64 static void bs_write1(struct bs
*s
, u32 bit
)
66 if (s
->ptr
< s
->buf_end
) {
70 if (s
->bits_left
== 0) {
77 static void bs_write_ue(struct bs
*s
, u32 val
)
83 bs_write(s
, 2 * fls(val
) - 1, val
);
87 static void bs_write_se(struct bs
*s
, int val
)
89 bs_write_ue(s
, val
<= 0 ? -val
* 2 : val
* 2 - 1);
92 static void bs_rbsp_trailing(struct bs
*s
)
95 if (s
->bits_left
!= 8)
96 bs_write(s
, s
->bits_left
, 0x00);
99 /* H.264 headers generation functions */
101 static int tw5864_h264_gen_sps_rbsp(u8
*buf
, size_t size
, int width
, int height
)
106 bs_init(s
, buf
, size
);
107 bs_write(s
, 8, 0x42); /* profile_idc, baseline */
108 bs_write(s
, 1, 1); /* constraint_set0_flag */
109 bs_write(s
, 1, 1); /* constraint_set1_flag */
110 bs_write(s
, 1, 0); /* constraint_set2_flag */
111 bs_write(s
, 5, 0); /* reserved_zero_5bits */
112 bs_write(s
, 8, 0x1e); /* level_idc */
113 bs_write_ue(s
, 0); /* seq_parameter_set_id */
114 bs_write_ue(s
, ilog2(MAX_GOP_SIZE
) - 4); /* log2_max_frame_num_minus4 */
115 bs_write_ue(s
, 0); /* pic_order_cnt_type */
116 /* log2_max_pic_order_cnt_lsb_minus4 */
117 bs_write_ue(s
, ilog2(MAX_GOP_SIZE
) - 4);
118 bs_write_ue(s
, 1); /* num_ref_frames */
119 bs_write(s
, 1, 0); /* gaps_in_frame_num_value_allowed_flag */
120 bs_write_ue(s
, width
/ 16 - 1); /* pic_width_in_mbs_minus1 */
121 bs_write_ue(s
, height
/ 16 - 1); /* pic_height_in_map_units_minus1 */
122 bs_write(s
, 1, 1); /* frame_mbs_only_flag */
123 bs_write(s
, 1, 0); /* direct_8x8_inference_flag */
124 bs_write(s
, 1, 0); /* frame_cropping_flag */
125 bs_write(s
, 1, 0); /* vui_parameters_present_flag */
130 static int tw5864_h264_gen_pps_rbsp(u8
*buf
, size_t size
, int qp
)
135 bs_init(s
, buf
, size
);
136 bs_write_ue(s
, 0); /* pic_parameter_set_id */
137 bs_write_ue(s
, 0); /* seq_parameter_set_id */
138 bs_write(s
, 1, 0); /* entropy_coding_mode_flag */
139 bs_write(s
, 1, 0); /* pic_order_present_flag */
140 bs_write_ue(s
, 0); /* num_slice_groups_minus1 */
141 bs_write_ue(s
, 0); /* i_num_ref_idx_l0_active_minus1 */
142 bs_write_ue(s
, 0); /* i_num_ref_idx_l1_active_minus1 */
143 bs_write(s
, 1, 0); /* weighted_pred_flag */
144 bs_write(s
, 2, 0); /* weighted_bipred_idc */
145 bs_write_se(s
, qp
- 26); /* pic_init_qp_minus26 */
146 bs_write_se(s
, qp
- 26); /* pic_init_qs_minus26 */
147 bs_write_se(s
, 0); /* chroma_qp_index_offset */
148 bs_write(s
, 1, 0); /* deblocking_filter_control_present_flag */
149 bs_write(s
, 1, 0); /* constrained_intra_pred_flag */
150 bs_write(s
, 1, 0); /* redundant_pic_cnt_present_flag */
155 static int tw5864_h264_gen_slice_head(u8
*buf
, size_t size
,
156 unsigned int idr_pic_id
,
157 unsigned int frame_gop_seqno
,
158 int *tail_nb_bits
, u8
*tail
)
161 int is_i_frame
= frame_gop_seqno
== 0;
164 bs_init(s
, buf
, size
);
165 bs_write_ue(s
, 0); /* first_mb_in_slice */
166 bs_write_ue(s
, is_i_frame
? 2 : 5); /* slice_type - I or P */
167 bs_write_ue(s
, 0); /* pic_parameter_set_id */
168 bs_write(s
, ilog2(MAX_GOP_SIZE
), frame_gop_seqno
); /* frame_num */
170 bs_write_ue(s
, idr_pic_id
);
172 /* pic_order_cnt_lsb */
173 bs_write(s
, ilog2(MAX_GOP_SIZE
), frame_gop_seqno
);
176 bs_write1(s
, 0); /* no_output_of_prior_pics_flag */
177 bs_write1(s
, 0); /* long_term_reference_flag */
179 bs_write1(s
, 0); /* num_ref_idx_active_override_flag */
180 bs_write1(s
, 0); /* ref_pic_list_reordering_flag_l0 */
181 bs_write1(s
, 0); /* adaptive_ref_pic_marking_mode_flag */
184 bs_write_se(s
, 0); /* slice_qp_delta */
186 if (s
->bits_left
!= 8) {
187 *tail
= ((s
->ptr
[0]) << s
->bits_left
);
188 *tail_nb_bits
= 8 - s
->bits_left
;
197 void tw5864_h264_put_stream_header(u8
**buf
, size_t *space_left
, int qp
,
198 int width
, int height
)
203 memcpy(*buf
, marker
, sizeof(marker
));
207 **buf
= 0x67; /* SPS NAL header */
211 nal_len
= tw5864_h264_gen_sps_rbsp(*buf
, *space_left
, width
, height
);
213 *space_left
-= nal_len
;
216 memcpy(*buf
, marker
, sizeof(marker
));
220 **buf
= 0x68; /* PPS NAL header */
224 nal_len
= tw5864_h264_gen_pps_rbsp(*buf
, *space_left
, qp
);
226 *space_left
-= nal_len
;
229 void tw5864_h264_put_slice_header(u8
**buf
, size_t *space_left
,
230 unsigned int idr_pic_id
,
231 unsigned int frame_gop_seqno
,
232 int *tail_nb_bits
, u8
*tail
)
236 memcpy(*buf
, marker
, sizeof(marker
));
240 /* Frame NAL header */
241 **buf
= (frame_gop_seqno
== 0) ? 0x25 : 0x21;
245 nal_len
= tw5864_h264_gen_slice_head(*buf
, *space_left
, idr_pic_id
,
246 frame_gop_seqno
, tail_nb_bits
,
249 *space_left
-= nal_len
;