forked from Red54/libvdpau-va-gl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
h264-parse.c
604 lines (533 loc) · 22.9 KB
/
h264-parse.c
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
/*
* Copyright 2013 Rinat Ibragimov
*
* This file is part of libvdpau-va-gl
*
* libvdpau-va-gl distributed under the terms of LGPLv3. See COPYING for details.
*/
#define _GNU_SOURCE
#include <assert.h>
#include <stdio.h>
#include <stdlib.h>
#include "h264-parse.h"
#define NOT_IMPLEMENTED(str) assert(0 && "not implemented" && str)
#define DESCRIBE(xparam, format) fprintf(stderr, #xparam " = %" #format "\n", xparam)
struct slice_parameters {
int nal_ref_idc;
int nal_unit_type;
int first_mb_in_slice;
int slice_type;
int pic_parameter_set_id;
int frame_num;
int field_pic_flag;
int bottom_field_flag;
int idr_pic_id;
int pic_order_cnt_lsb;
int delta_pic_order_cnt_bottom;
int delta_pic_order_cnt[2];
int redundant_pic_cnt;
int direct_spatial_mv_pred_flag;
int num_ref_idx_active_override_flag;
int num_ref_idx_l0_active_minus1;
int num_ref_idx_l1_active_minus1;
int luma_log2_weight_denom;
int chroma_log2_weight_denom;
unsigned int luma_weight_l0_flag;
int luma_weight_l0[32];
int luma_offset_l0[32];
unsigned int chroma_weight_l0_flag;
int chroma_weight_l0[32][2];
int chroma_offset_l0[32][2];
unsigned int luma_weight_l1_flag;
int luma_weight_l1[32];
int luma_offset_l1[32];
unsigned int chroma_weight_l1_flag;
int chroma_weight_l1[32][2];
int chroma_offset_l1[32][2];
unsigned int no_output_of_prior_pics_flag;
unsigned int long_term_reference_flag;
unsigned int cabac_init_idc;
int slice_qp_delta;
unsigned int sp_for_switch_flag;
int slice_qs_delta;
unsigned int disable_deblocking_filter_idc;
int slice_alpha_c0_offset_div2;
int slice_beta_offset_div2;
VAPictureH264 RefPicList0[32];
VAPictureH264 RefPicList1[32];
};
static
void
parse_ref_pic_list_modification(rbsp_state_t *st, const VAPictureParameterBufferH264 *vapp,
struct slice_parameters *sp);
static
void
parse_pred_weight_table(rbsp_state_t *st, const int ChromaArrayType, struct slice_parameters *sp);
static
void
parse_dec_ref_pic_marking(rbsp_state_t *st, struct slice_parameters *sp);
static
void
do_fill_va_slice_parameter_buffer(struct slice_parameters const * const sp,
VASliceParameterBufferH264 *vasp, int bit_offset)
{
vasp->slice_data_bit_offset = bit_offset;
vasp->first_mb_in_slice = sp->first_mb_in_slice;
vasp->slice_type = sp->slice_type;
vasp->direct_spatial_mv_pred_flag = sp->direct_spatial_mv_pred_flag;
vasp->num_ref_idx_l0_active_minus1 = sp->num_ref_idx_l0_active_minus1;
vasp->num_ref_idx_l1_active_minus1 = sp->num_ref_idx_l1_active_minus1;
vasp->cabac_init_idc = sp->cabac_init_idc;
vasp->slice_qp_delta = sp->slice_qp_delta;
vasp->disable_deblocking_filter_idc = sp->disable_deblocking_filter_idc;
vasp->slice_alpha_c0_offset_div2 = sp->slice_alpha_c0_offset_div2;
vasp->slice_beta_offset_div2 = sp->slice_beta_offset_div2;
for (int k = 0; k < 32; k ++) {
vasp->RefPicList0[k] = sp->RefPicList0[k];
vasp->RefPicList1[k] = sp->RefPicList1[k];
}
vasp->luma_log2_weight_denom = sp->luma_log2_weight_denom;
vasp->chroma_log2_weight_denom = sp->chroma_log2_weight_denom;
vasp->luma_weight_l0_flag = sp->luma_weight_l0_flag;
for (int k = 0; k < 32; k ++) vasp->luma_weight_l0[k] = sp->luma_weight_l0[k];
for (int k = 0; k < 32; k ++) vasp->luma_offset_l0[k] = sp->luma_offset_l0[k];
vasp->chroma_weight_l0_flag = sp->chroma_weight_l0_flag;
for (int k = 0; k < 32; k ++) vasp->chroma_weight_l0[k][0] = sp->chroma_weight_l0[k][0];
for (int k = 0; k < 32; k ++) vasp->chroma_weight_l0[k][1] = sp->chroma_weight_l0[k][1];
for (int k = 0; k < 32; k ++) vasp->chroma_offset_l0[k][0] = sp->chroma_offset_l0[k][0];
for (int k = 0; k < 32; k ++) vasp->chroma_offset_l0[k][1] = sp->chroma_offset_l0[k][1];
vasp->luma_weight_l1_flag = sp->luma_weight_l1_flag;
for (int k = 0; k < 32; k ++) vasp->luma_weight_l1[k] = sp->luma_weight_l1[k];
for (int k = 0; k < 32; k ++) vasp->luma_offset_l1[k] = sp->luma_offset_l1[k];
vasp->chroma_weight_l1_flag = sp->chroma_weight_l1_flag;
for (int k = 0; k < 32; k ++) vasp->chroma_weight_l1[k][0] = sp->chroma_weight_l1[k][0];
for (int k = 0; k < 32; k ++) vasp->chroma_weight_l1[k][1] = sp->chroma_weight_l1[k][1];
for (int k = 0; k < 32; k ++) vasp->chroma_offset_l1[k][0] = sp->chroma_offset_l1[k][0];
for (int k = 0; k < 32; k ++) vasp->chroma_offset_l1[k][1] = sp->chroma_offset_l1[k][1];
}
void
reset_va_picture_h264(VAPictureH264 *p)
{
p->picture_id = VA_INVALID_SURFACE;
p->frame_idx = 0;
p->flags = VA_PICTURE_H264_INVALID;
p->TopFieldOrderCnt = 0;
p->BottomFieldOrderCnt = 0;
}
static
int
comparison_function_1(const void *p1, const void *p2, void *context)
{
const int idx_1 = *(const int *)p1;
const int idx_2 = *(const int *)p2;
struct {
int descending;
int what;
const VAPictureH264 *ReferenceFrames;
} *ctx = context;
int value1 = 0, value2 = 0;
switch (ctx->what) {
case 1: // top field
value1 = ctx->ReferenceFrames[idx_1].TopFieldOrderCnt;
value2 = ctx->ReferenceFrames[idx_2].TopFieldOrderCnt;
break;
case 2: // bottom field
value1 = ctx->ReferenceFrames[idx_1].BottomFieldOrderCnt;
value2 = ctx->ReferenceFrames[idx_2].BottomFieldOrderCnt;
break;
case 3: // frame_idx
value1 = ctx->ReferenceFrames[idx_1].frame_idx;
value2 = ctx->ReferenceFrames[idx_2].frame_idx;
break;
default:
assert(0 && "wrong what field");
}
int result;
if (value1 < value2)
result = -1;
else if (value1 > value2)
result = 1;
else
result = 0;
if (ctx->descending) return -result;
return result;
}
static
void
fill_ref_pic_list(struct slice_parameters *sp, const VAPictureParameterBufferH264 *vapp)
{
int idcs_asc[32], idcs_desc[32];
struct {
int descending;
int what;
const VAPictureH264 *ReferenceFrames;
} ctx;
if (SLICE_TYPE_I == sp->slice_type || SLICE_TYPE_SI == sp->slice_type)
return;
ctx.ReferenceFrames = vapp->ReferenceFrames;
int frame_count = 0;
for (int k = 0; k < vapp->num_ref_frames; k ++) {
if (vapp->ReferenceFrames[k].flags & VA_PICTURE_H264_INVALID)
continue;
sp->RefPicList0[frame_count] = vapp->ReferenceFrames[k];
idcs_asc[frame_count] = idcs_desc[frame_count] = k;
frame_count ++;
}
if (SLICE_TYPE_P == sp->slice_type || SLICE_TYPE_SP == sp->slice_type) {
// TODO: implement interlaced P slices
ctx.what = 1;
ctx.descending = 0;
qsort_r(idcs_asc, frame_count, sizeof(idcs_asc[0]), &comparison_function_1, &ctx);
ctx.descending = 1;
qsort_r(idcs_desc, frame_count, sizeof(idcs_desc[0]), &comparison_function_1, &ctx);
int ptr = 0;
for (int k = 0; k < frame_count; k ++)
if (vapp->ReferenceFrames[idcs_desc[k]].flags & VA_PICTURE_H264_SHORT_TERM_REFERENCE)
sp->RefPicList0[ptr++] = vapp->ReferenceFrames[idcs_desc[k]];
for (int k = 0; k < frame_count; k ++)
if (vapp->ReferenceFrames[idcs_asc[k]].flags & VA_PICTURE_H264_LONG_TERM_REFERENCE)
sp->RefPicList0[ptr++] = vapp->ReferenceFrames[idcs_asc[k]];
} else if (SLICE_TYPE_B == sp->slice_type && !vapp->pic_fields.bits.field_pic_flag) {
ctx.what = 1;
ctx.descending = 0;
qsort_r(idcs_asc, frame_count, sizeof(idcs_asc[0]), &comparison_function_1, &ctx);
ctx.descending = 1;
qsort_r(idcs_desc, frame_count, sizeof(idcs_desc[0]), &comparison_function_1, &ctx);
int ptr0 = 0;
int ptr1 = 0;
for (int k = 0; k < frame_count; k ++) {
const VAPictureH264 *rf = &vapp->ReferenceFrames[idcs_desc[k]];
if (rf->flags & VA_PICTURE_H264_SHORT_TERM_REFERENCE)
if (rf->TopFieldOrderCnt < vapp->CurrPic.TopFieldOrderCnt)
sp->RefPicList0[ptr0++] = *rf;
rf = &vapp->ReferenceFrames[idcs_asc[k]];
if (rf->flags & VA_PICTURE_H264_SHORT_TERM_REFERENCE)
if (rf->TopFieldOrderCnt >= vapp->CurrPic.TopFieldOrderCnt)
sp->RefPicList1[ptr1++] = *rf;
}
for (int k = 0; k < frame_count; k ++) {
const VAPictureH264 *rf = &vapp->ReferenceFrames[idcs_asc[k]];
if (rf->flags & VA_PICTURE_H264_SHORT_TERM_REFERENCE)
if (rf->TopFieldOrderCnt >= vapp->CurrPic.TopFieldOrderCnt)
sp->RefPicList0[ptr0++] = *rf;
rf = &vapp->ReferenceFrames[idcs_desc[k]];
if (rf->flags & VA_PICTURE_H264_SHORT_TERM_REFERENCE)
if (rf->TopFieldOrderCnt < vapp->CurrPic.TopFieldOrderCnt)
sp->RefPicList1[ptr1++] = *rf;
}
for (int k = 0; k < frame_count; k ++) {
const VAPictureH264 *rf = &vapp->ReferenceFrames[idcs_asc[k]];
if (rf->flags & VA_PICTURE_H264_LONG_TERM_REFERENCE) {
sp->RefPicList0[ptr0++] = *rf;
sp->RefPicList1[ptr1++] = *rf;
}
}
} else {
// TODO: implement interlaced B slices
assert(0 && "not implemeted: interlaced SLICE_TYPE_B sorting");
}
}
void
parse_slice_header(rbsp_state_t *st, const VAPictureParameterBufferH264 *vapp,
const int ChromaArrayType, unsigned int p_num_ref_idx_l0_active_minus1,
unsigned int p_num_ref_idx_l1_active_minus1, VASliceParameterBufferH264 *vasp)
{
struct slice_parameters sp;
for (int k = 0; k < 32; k ++) {
reset_va_picture_h264(&sp.RefPicList0[k]);
reset_va_picture_h264(&sp.RefPicList1[k]);
}
rbsp_get_u(st, 1); // forbidden_zero_bit
sp.nal_ref_idc = rbsp_get_u(st, 2);
sp.nal_unit_type = rbsp_get_u(st, 5);
if (14 == sp.nal_unit_type || 20 == sp.nal_unit_type) {
NOT_IMPLEMENTED("nal unit types 14 and 20");
}
sp.first_mb_in_slice = rbsp_get_uev(st);
sp.slice_type = rbsp_get_uev(st);
if (sp.slice_type > 4) sp.slice_type -= 5; // wrap 5-9 to 0-4
// as now we know slice_type, time to fill RefPicListX
fill_ref_pic_list(&sp, vapp);
sp.pic_parameter_set_id = rbsp_get_uev(st);
// TODO: separate_colour_plane_flag is 0 for all but YUV444. Now ok, but should detect properly.
// See 7.3.3
sp.frame_num = rbsp_get_u(st, vapp->seq_fields.bits.log2_max_frame_num_minus4 + 4);
sp.field_pic_flag = 0;
sp.bottom_field_flag = 0;
if (!vapp->seq_fields.bits.frame_mbs_only_flag) {
sp.field_pic_flag = rbsp_get_u(st, 1);
if (sp.field_pic_flag) {
sp.bottom_field_flag = rbsp_get_u(st, 1);
}
}
sp.idr_pic_id = 0;
if (NAL_IDR_SLICE == sp.nal_unit_type) // IDR picture
sp.idr_pic_id = rbsp_get_uev(st);
sp.pic_order_cnt_lsb = 0;
sp.delta_pic_order_cnt_bottom = 0;
if (0 == vapp->seq_fields.bits.pic_order_cnt_type) {
sp.pic_order_cnt_lsb =
rbsp_get_u(st, vapp->seq_fields.bits.log2_max_pic_order_cnt_lsb_minus4 + 4);
if (vapp->pic_fields.bits.pic_order_present_flag &&
!vapp->pic_fields.bits.field_pic_flag)
{
sp.delta_pic_order_cnt_bottom = rbsp_get_sev(st);
}
}
sp.delta_pic_order_cnt[0] = sp.delta_pic_order_cnt[1] = 0;
if (1 == vapp->seq_fields.bits.pic_order_cnt_type &&
!vapp->seq_fields.bits.delta_pic_order_always_zero_flag)
{
sp.delta_pic_order_cnt[0] = rbsp_get_sev(st);
if (vapp->pic_fields.bits.pic_order_present_flag && !vapp->pic_fields.bits.field_pic_flag)
sp.delta_pic_order_cnt[1] = rbsp_get_sev(st);
}
sp.redundant_pic_cnt = 0;
if (vapp->pic_fields.bits.redundant_pic_cnt_present_flag)
sp.redundant_pic_cnt = rbsp_get_uev(st);
sp.direct_spatial_mv_pred_flag = 0;
if (SLICE_TYPE_B == sp.slice_type)
sp.direct_spatial_mv_pred_flag = rbsp_get_u(st, 1);
sp.num_ref_idx_active_override_flag = 0;
sp.num_ref_idx_l0_active_minus1 = 0;
sp.num_ref_idx_l1_active_minus1 = 0;
if (SLICE_TYPE_P == sp.slice_type || SLICE_TYPE_SP == sp.slice_type ||
SLICE_TYPE_B == sp.slice_type)
{
sp.num_ref_idx_l0_active_minus1 = p_num_ref_idx_l0_active_minus1;
sp.num_ref_idx_l1_active_minus1 = p_num_ref_idx_l1_active_minus1;
sp.num_ref_idx_active_override_flag = rbsp_get_u(st, 1);
if (sp.num_ref_idx_active_override_flag) {
sp.num_ref_idx_l0_active_minus1 = rbsp_get_uev(st);
if (SLICE_TYPE_B == sp.slice_type)
sp.num_ref_idx_l1_active_minus1 = rbsp_get_uev(st);
}
}
if (20 == sp.nal_unit_type) {
NOT_IMPLEMENTED("nal unit type 20");
} else {
parse_ref_pic_list_modification(st, vapp, &sp);
}
// here fields {luma,chroma}_weight_l{0,1}_flag differ from same-named flags from
// H.264 recommendation. Each of those flags should be set to 1 if any of
// weight tables differ from default
sp.luma_weight_l0_flag = 0;
sp.luma_weight_l1_flag = 0;
sp.chroma_weight_l0_flag = 0;
sp.chroma_weight_l1_flag = 0;
if ((vapp->pic_fields.bits.weighted_pred_flag &&
(SLICE_TYPE_P == sp.slice_type || SLICE_TYPE_SP == sp.slice_type)) ||
(1 == vapp->pic_fields.bits.weighted_bipred_idc && SLICE_TYPE_B == sp.slice_type))
{
parse_pred_weight_table(st, ChromaArrayType, &sp);
}
if (sp.nal_ref_idc != 0) {
parse_dec_ref_pic_marking(st, &sp);
}
sp.cabac_init_idc = 0;
if (vapp->pic_fields.bits.entropy_coding_mode_flag &&
SLICE_TYPE_I != sp.slice_type && SLICE_TYPE_SI != sp.slice_type)
sp.cabac_init_idc = rbsp_get_uev(st);
sp.slice_qp_delta = rbsp_get_sev(st);
sp.sp_for_switch_flag = 0;
sp.slice_qs_delta = 0;
if (SLICE_TYPE_SP == sp.slice_type || SLICE_TYPE_SI == sp.slice_type) {
if (SLICE_TYPE_SP == sp.slice_type)
sp.sp_for_switch_flag = rbsp_get_u(st, 1);
sp.slice_qs_delta = rbsp_get_sev(st);
}
sp.disable_deblocking_filter_idc = 0;
sp.slice_alpha_c0_offset_div2 = 0;
sp.slice_beta_offset_div2 = 0;
if (vapp->pic_fields.bits.deblocking_filter_control_present_flag) {
sp.disable_deblocking_filter_idc = rbsp_get_uev(st);
if (1 != sp.disable_deblocking_filter_idc) {
sp.slice_alpha_c0_offset_div2 = rbsp_get_sev(st);
sp.slice_beta_offset_div2 = rbsp_get_sev(st);
}
}
if (vapp->num_slice_groups_minus1 > 0 && vapp->slice_group_map_type >= 3 &&
vapp->slice_group_map_type <= 5)
{
NOT_IMPLEMENTED("don't know what length to consume\n");
}
do_fill_va_slice_parameter_buffer(&sp, vasp, st->bits_eaten);
}
static
void
parse_ref_pic_list_modification(rbsp_state_t *st, const VAPictureParameterBufferH264 *vapp,
struct slice_parameters *sp)
{
const int MaxFrameNum = 1 << (vapp->seq_fields.bits.log2_max_frame_num_minus4 + 4);
const int MaxPicNum = (vapp->pic_fields.bits.field_pic_flag) ? 2*MaxFrameNum : MaxFrameNum;
if (2 != sp->slice_type && 4 != sp->slice_type) {
int ref_pic_list_modification_flag_l0 = rbsp_get_u(st, 1);
if (ref_pic_list_modification_flag_l0) {
int modification_of_pic_nums_idc;
int refIdxL0 = 0;
unsigned int picNumL0 = vapp->frame_num;
do {
modification_of_pic_nums_idc = rbsp_get_uev(st);
if (modification_of_pic_nums_idc < 2) {
int abs_diff_pic_num_minus1 = rbsp_get_uev(st);
if (0 == modification_of_pic_nums_idc) {
picNumL0 -= (abs_diff_pic_num_minus1 + 1);
} else { // 1 == modification_of_pic_nums_idc
picNumL0 += (abs_diff_pic_num_minus1 + 1);
}
// wrap picNumL0
picNumL0 &= (MaxPicNum - 1);
// there is no need to subtract MaxPicNum as in (8-36) in 8.2.4.3.1
// because frame_num already wrapped
int j;
for (j = 0; j < vapp->num_ref_frames; j ++) {
if (vapp->ReferenceFrames[j].flags & VA_PICTURE_H264_INVALID)
continue;
if (vapp->ReferenceFrames[j].frame_idx == picNumL0 &&
(vapp->ReferenceFrames[j].flags & VA_PICTURE_H264_SHORT_TERM_REFERENCE))
break;
}
assert (j < vapp->num_ref_frames);
VAPictureH264 swp = vapp->ReferenceFrames[j];
for (int k = sp->num_ref_idx_l0_active_minus1; k > refIdxL0; k --)
sp->RefPicList0[k] = sp->RefPicList0[k-1];
sp->RefPicList0[refIdxL0 ++] = swp;
j = refIdxL0;
for (int k = refIdxL0; k <= sp->num_ref_idx_l0_active_minus1 + 1; k ++) {
if (sp->RefPicList0[k].frame_idx != picNumL0 &&
(sp->RefPicList0[k].flags & VA_PICTURE_H264_SHORT_TERM_REFERENCE))
sp->RefPicList0[j++] = sp->RefPicList0[k];
}
} else if (2 == modification_of_pic_nums_idc) {
NOT_IMPLEMENTED("long");
fprintf(stderr, "long_term_pic_num = %d\n", rbsp_get_uev(st));
}
} while (modification_of_pic_nums_idc != 3);
}
}
if (1 == sp->slice_type) {
int ref_pic_list_modification_flag_l1 = rbsp_get_u(st, 1);
if (ref_pic_list_modification_flag_l1) {
NOT_IMPLEMENTED("ref pic list modification 1"); // TODO: implement this
int modification_of_pic_nums_idc;
do {
modification_of_pic_nums_idc = rbsp_get_uev(st);
if (0 == modification_of_pic_nums_idc ||
1 == modification_of_pic_nums_idc)
{
fprintf(stderr, "abs_diff_pic_num_minus1 = %d\n", rbsp_get_uev(st));
} else if (2 == modification_of_pic_nums_idc) {
fprintf(stderr, "long_term_pic_num = %d\n", rbsp_get_uev(st));
}
} while (modification_of_pic_nums_idc != 3);
}
}
}
static
void
fill_default_pred_weight_table(struct slice_parameters *sp)
{
const int default_luma_weight = (1 << sp->luma_log2_weight_denom);
const int default_chroma_weight = (1 << sp->chroma_log2_weight_denom);
for (int k = 0; k < sp->num_ref_idx_l0_active_minus1 + 1; k ++) {
sp->luma_weight_l0[k] = default_luma_weight;
sp->luma_offset_l0[k] = 0;
sp->chroma_weight_l0[k][0] = sp->chroma_weight_l0[k][1] = default_chroma_weight;
sp->chroma_offset_l0[k][0] = sp->chroma_offset_l0[k][1] = 0;
}
for (int k = 0; k < sp->num_ref_idx_l1_active_minus1 + 1; k ++) {
sp->luma_weight_l1[k] = default_luma_weight;
sp->luma_offset_l1[k] = 0;
sp->chroma_weight_l1[k][0] = sp->chroma_weight_l1[k][1] = default_chroma_weight;
sp->chroma_offset_l1[k][0] = sp->chroma_offset_l1[k][1] = 0;
}
}
static
void
parse_pred_weight_table(rbsp_state_t *st, const int ChromaArrayType, struct slice_parameters *sp)
{
sp->luma_log2_weight_denom = rbsp_get_uev(st);
sp->chroma_log2_weight_denom = 0;
if (0 != ChromaArrayType)
sp->chroma_log2_weight_denom = rbsp_get_uev(st);
fill_default_pred_weight_table(sp);
const int default_luma_weight = (1 << sp->luma_log2_weight_denom);
const int default_chroma_weight = (1 << sp->chroma_log2_weight_denom);
for (int k = 0; k <= sp->num_ref_idx_l0_active_minus1; k ++) {
int luma_weight_l0_flag = rbsp_get_u(st, 1);
if (luma_weight_l0_flag) {
sp->luma_weight_l0[k] = rbsp_get_sev(st);
sp->luma_offset_l0[k] = rbsp_get_sev(st);
if (default_luma_weight != sp->luma_weight_l0[k])
sp->luma_weight_l0_flag = 1;
}
if (0 != ChromaArrayType) {
int chroma_weight_l0_flag = rbsp_get_u(st, 1);
if (chroma_weight_l0_flag) {
for (int j = 0; j < 2; j ++) {
sp->chroma_weight_l0[k][j] = rbsp_get_sev(st);
sp->chroma_offset_l0[k][j] = rbsp_get_sev(st);
if (default_chroma_weight != sp->chroma_weight_l0[k][j])
sp->chroma_weight_l0_flag = 1;
}
}
}
}
if (1 == sp->slice_type) {
for (int k = 0; k <= sp->num_ref_idx_l1_active_minus1; k ++) {
int luma_weight_l1_flag = rbsp_get_u(st, 1);
if (luma_weight_l1_flag) {
sp->luma_weight_l1[k] = rbsp_get_sev(st);
sp->luma_offset_l1[k] = rbsp_get_sev(st);
if (default_luma_weight != sp->luma_weight_l1[k])
sp->luma_weight_l1_flag = 1;
}
if (0 != ChromaArrayType) {
int chroma_weight_l1_flag = rbsp_get_u(st, 1);
if (chroma_weight_l1_flag) {
for (int j = 0; j < 2; j ++) {
sp->chroma_weight_l1[k][j] = rbsp_get_sev(st);
sp->chroma_offset_l1[k][j] = rbsp_get_sev(st);
if (default_chroma_weight != sp->chroma_weight_l1[k][j])
sp->chroma_weight_l1_flag = 1;
}
}
}
}
}
}
static
void
parse_dec_ref_pic_marking(rbsp_state_t *st, struct slice_parameters *sp)
{
if (NAL_IDR_SLICE == sp->nal_unit_type) {
sp->no_output_of_prior_pics_flag = rbsp_get_u(st, 1);
sp->long_term_reference_flag = rbsp_get_u(st, 1);
} else {
int adaptive_ref_pic_marking_mode_flag = rbsp_get_u(st, 1);
if (adaptive_ref_pic_marking_mode_flag) {
// no need to do any action, just consume bits. All management should be done
// on client side
int memory_management_control_operation;
do {
memory_management_control_operation = rbsp_get_uev(st);
if (1 == memory_management_control_operation ||
3 == memory_management_control_operation)
{
rbsp_get_uev(st); // difference_of_pic_nums_minus1
}
if (2 == memory_management_control_operation) {
rbsp_get_uev(st); // long_term_pic_num
}
if (3 == memory_management_control_operation ||
6 == memory_management_control_operation)
{
rbsp_get_uev(st); // long_term_frame_idx
}
if (4 == memory_management_control_operation) {
rbsp_get_uev(st); // max_long_term_frame_idx_plus1
}
} while (memory_management_control_operation != 0);
}
}
}