]> git.sesse.net Git - ffmpeg/blob - libavcodec/hevc.h
vp9: add fate sample for parallelmode.
[ffmpeg] / libavcodec / hevc.h
1 /*
2  * HEVC video decoder
3  *
4  * Copyright (C) 2012 - 2013 Guillaume Martres
5  *
6  * This file is part of FFmpeg.
7  *
8  * FFmpeg is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public
10  * License as published by the Free Software Foundation; either
11  * version 2.1 of the License, or (at your option) any later version.
12  *
13  * FFmpeg is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with FFmpeg; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21  */
22
23 #ifndef AVCODEC_HEVC_H
24 #define AVCODEC_HEVC_H
25
26 #include "libavutil/buffer.h"
27 #include "libavutil/md5.h"
28
29 #include "avcodec.h"
30 #include "cabac.h"
31 #include "dsputil.h"
32 #include "get_bits.h"
33 #include "hevcpred.h"
34 #include "hevcdsp.h"
35 #include "internal.h"
36 #include "thread.h"
37 #include "videodsp.h"
38
39 #define MAX_DPB_SIZE 16 // A.4.1
40 #define MAX_REFS 16
41
42 #define MAX_NB_THREADS 16
43 #define SHIFT_CTB_WPP 2
44
45 /**
46  * 7.4.2.1
47  */
48 #define MAX_SUB_LAYERS 7
49 #define MAX_VPS_COUNT 16
50 #define MAX_SPS_COUNT 32
51 #define MAX_PPS_COUNT 256
52 #define MAX_SHORT_TERM_RPS_COUNT 64
53 #define MAX_CU_SIZE 128
54
55 //TODO: check if this is really the maximum
56 #define MAX_TRANSFORM_DEPTH 5
57
58 #define MAX_TB_SIZE 32
59 #define MAX_PB_SIZE 64
60 #define MAX_LOG2_CTB_SIZE 6
61 #define MAX_QP 51
62 #define DEFAULT_INTRA_TC_OFFSET 2
63
64 #define HEVC_CONTEXTS 183
65
66 #define MRG_MAX_NUM_CANDS     5
67
68 #define L0 0
69 #define L1 1
70
71 #define EPEL_EXTRA_BEFORE 1
72 #define EPEL_EXTRA_AFTER  2
73 #define EPEL_EXTRA        3
74
75 /**
76  * Value of the luma sample at position (x, y) in the 2D array tab.
77  */
78 #define SAMPLE(tab, x, y) ((tab)[(y) * s->sps->width + (x)])
79 #define SAMPLE_CTB(tab, x, y) ((tab)[(y) * min_cb_width + (x)])
80 #define SAMPLE_CBF(tab, x, y) ((tab)[((y) & ((1<<log2_trafo_size)-1)) * MAX_CU_SIZE + ((x) & ((1<<log2_trafo_size)-1))])
81
82 #define IS_IDR(s) (s->nal_unit_type == NAL_IDR_W_RADL || s->nal_unit_type == NAL_IDR_N_LP)
83 #define IS_BLA(s) (s->nal_unit_type == NAL_BLA_W_RADL || s->nal_unit_type == NAL_BLA_W_LP || \
84                    s->nal_unit_type == NAL_BLA_N_LP)
85 #define IS_IRAP(s) (s->nal_unit_type >= 16 && s->nal_unit_type <= 23)
86
87 /**
88  * Table 7-3: NAL unit type codes
89  */
90 enum NALUnitType {
91     NAL_TRAIL_N    = 0,
92     NAL_TRAIL_R    = 1,
93     NAL_TSA_N      = 2,
94     NAL_TSA_R      = 3,
95     NAL_STSA_N     = 4,
96     NAL_STSA_R     = 5,
97     NAL_RADL_N     = 6,
98     NAL_RADL_R     = 7,
99     NAL_RASL_N     = 8,
100     NAL_RASL_R     = 9,
101     NAL_BLA_W_LP   = 16,
102     NAL_BLA_W_RADL = 17,
103     NAL_BLA_N_LP   = 18,
104     NAL_IDR_W_RADL = 19,
105     NAL_IDR_N_LP   = 20,
106     NAL_CRA_NUT    = 21,
107     NAL_VPS        = 32,
108     NAL_SPS        = 33,
109     NAL_PPS        = 34,
110     NAL_AUD        = 35,
111     NAL_EOS_NUT    = 36,
112     NAL_EOB_NUT    = 37,
113     NAL_FD_NUT     = 38,
114     NAL_SEI_PREFIX = 39,
115     NAL_SEI_SUFFIX = 40,
116 };
117
118 enum RPSType {
119     ST_CURR_BEF = 0,
120     ST_CURR_AFT,
121     ST_FOLL,
122     LT_CURR,
123     LT_FOLL,
124     NB_RPS_TYPE,
125 };
126
127 enum SliceType {
128     B_SLICE = 0,
129     P_SLICE = 1,
130     I_SLICE = 2,
131 };
132
133 enum SyntaxElement {
134     SAO_MERGE_FLAG = 0,
135     SAO_TYPE_IDX,
136     SAO_EO_CLASS,
137     SAO_BAND_POSITION,
138     SAO_OFFSET_ABS,
139     SAO_OFFSET_SIGN,
140     END_OF_SLICE_FLAG,
141     SPLIT_CODING_UNIT_FLAG,
142     CU_TRANSQUANT_BYPASS_FLAG,
143     SKIP_FLAG,
144     CU_QP_DELTA,
145     PRED_MODE_FLAG,
146     PART_MODE,
147     PCM_FLAG,
148     PREV_INTRA_LUMA_PRED_FLAG,
149     MPM_IDX,
150     REM_INTRA_LUMA_PRED_MODE,
151     INTRA_CHROMA_PRED_MODE,
152     MERGE_FLAG,
153     MERGE_IDX,
154     INTER_PRED_IDC,
155     REF_IDX_L0,
156     REF_IDX_L1,
157     ABS_MVD_GREATER0_FLAG,
158     ABS_MVD_GREATER1_FLAG,
159     ABS_MVD_MINUS2,
160     MVD_SIGN_FLAG,
161     MVP_LX_FLAG,
162     NO_RESIDUAL_DATA_FLAG,
163     SPLIT_TRANSFORM_FLAG,
164     CBF_LUMA,
165     CBF_CB_CR,
166     TRANSFORM_SKIP_FLAG,
167     LAST_SIGNIFICANT_COEFF_X_PREFIX,
168     LAST_SIGNIFICANT_COEFF_Y_PREFIX,
169     LAST_SIGNIFICANT_COEFF_X_SUFFIX,
170     LAST_SIGNIFICANT_COEFF_Y_SUFFIX,
171     SIGNIFICANT_COEFF_GROUP_FLAG,
172     SIGNIFICANT_COEFF_FLAG,
173     COEFF_ABS_LEVEL_GREATER1_FLAG,
174     COEFF_ABS_LEVEL_GREATER2_FLAG,
175     COEFF_ABS_LEVEL_REMAINING,
176     COEFF_SIGN_FLAG,
177 };
178
179 enum PartMode {
180     PART_2Nx2N = 0,
181     PART_2NxN  = 1,
182     PART_Nx2N  = 2,
183     PART_NxN   = 3,
184     PART_2NxnU = 4,
185     PART_2NxnD = 5,
186     PART_nLx2N = 6,
187     PART_nRx2N = 7,
188 };
189
190 enum PredMode {
191     MODE_INTER = 0,
192     MODE_INTRA,
193     MODE_SKIP,
194 };
195
196 enum InterPredIdc {
197     PRED_L0 = 0,
198     PRED_L1,
199     PRED_BI,
200 };
201
202 enum IntraPredMode {
203     INTRA_PLANAR = 0,
204     INTRA_DC,
205     INTRA_ANGULAR_2,
206     INTRA_ANGULAR_3,
207     INTRA_ANGULAR_4,
208     INTRA_ANGULAR_5,
209     INTRA_ANGULAR_6,
210     INTRA_ANGULAR_7,
211     INTRA_ANGULAR_8,
212     INTRA_ANGULAR_9,
213     INTRA_ANGULAR_10,
214     INTRA_ANGULAR_11,
215     INTRA_ANGULAR_12,
216     INTRA_ANGULAR_13,
217     INTRA_ANGULAR_14,
218     INTRA_ANGULAR_15,
219     INTRA_ANGULAR_16,
220     INTRA_ANGULAR_17,
221     INTRA_ANGULAR_18,
222     INTRA_ANGULAR_19,
223     INTRA_ANGULAR_20,
224     INTRA_ANGULAR_21,
225     INTRA_ANGULAR_22,
226     INTRA_ANGULAR_23,
227     INTRA_ANGULAR_24,
228     INTRA_ANGULAR_25,
229     INTRA_ANGULAR_26,
230     INTRA_ANGULAR_27,
231     INTRA_ANGULAR_28,
232     INTRA_ANGULAR_29,
233     INTRA_ANGULAR_30,
234     INTRA_ANGULAR_31,
235     INTRA_ANGULAR_32,
236     INTRA_ANGULAR_33,
237     INTRA_ANGULAR_34,
238 };
239
240 enum SAOType {
241     SAO_NOT_APPLIED = 0,
242     SAO_BAND,
243     SAO_EDGE,
244 };
245
246 enum SAOEOClass {
247     SAO_EO_HORIZ = 0,
248     SAO_EO_VERT,
249     SAO_EO_135D,
250     SAO_EO_45D,
251 };
252
253 enum ScanType {
254     SCAN_DIAG = 0,
255     SCAN_HORIZ,
256     SCAN_VERT,
257 };
258
259 typedef struct ShortTermRPS {
260     int num_negative_pics;
261     int num_delta_pocs;
262     int32_t delta_poc[32];
263     uint8_t used[32];
264 } ShortTermRPS;
265
266 typedef struct LongTermRPS {
267     int     poc[32];
268     uint8_t used[32];
269     uint8_t nb_refs;
270 } LongTermRPS;
271
272 typedef struct RefPicList {
273     struct HEVCFrame *ref[MAX_REFS];
274     int list[MAX_REFS];
275     int isLongTerm[MAX_REFS];
276     int nb_refs;
277 } RefPicList;
278
279 typedef struct RefPicListTab {
280     RefPicList refPicList[2];
281 } RefPicListTab;
282
283 typedef struct HEVCWindow {
284     int left_offset;
285     int right_offset;
286     int top_offset;
287     int bottom_offset;
288 } HEVCWindow;
289
290 typedef struct VUI {
291     AVRational sar;
292
293     int overscan_info_present_flag;
294     int overscan_appropriate_flag;
295
296     int video_signal_type_present_flag;
297     int video_format;
298     int video_full_range_flag;
299     int colour_description_present_flag;
300     uint8_t colour_primaries;
301     uint8_t transfer_characteristic;
302     uint8_t matrix_coeffs;
303
304     int chroma_loc_info_present_flag;
305     int chroma_sample_loc_type_top_field;
306     int chroma_sample_loc_type_bottom_field;
307     int neutra_chroma_indication_flag;
308
309     int field_seq_flag;
310     int frame_field_info_present_flag;
311
312     int default_display_window_flag;
313     HEVCWindow def_disp_win;
314
315     int vui_timing_info_present_flag;
316     uint32_t vui_num_units_in_tick;
317     uint32_t vui_time_scale;
318     int vui_poc_proportional_to_timing_flag;
319     int vui_num_ticks_poc_diff_one_minus1;
320     int vui_hrd_parameters_present_flag;
321
322     int bitstream_restriction_flag;
323     int tiles_fixed_structure_flag;
324     int motion_vectors_over_pic_boundaries_flag;
325     int restricted_ref_pic_lists_flag;
326     int min_spatial_segmentation_idc;
327     int max_bytes_per_pic_denom;
328     int max_bits_per_min_cu_denom;
329     int log2_max_mv_length_horizontal;
330     int log2_max_mv_length_vertical;
331 } VUI;
332
333 typedef struct ProfileTierLevel {
334     int profile_space;
335     uint8_t tier_flag;
336     int profile_idc;
337     int profile_compatibility_flag[32];
338     int level_idc;
339     int progressive_source_flag;
340     int interlaced_source_flag;
341     int non_packed_constraint_flag;
342     int frame_only_constraint_flag;
343 } ProfileTierLevel;
344
345 typedef struct PTL {
346     ProfileTierLevel general_PTL;
347     ProfileTierLevel sub_layer_PTL[MAX_SUB_LAYERS];
348
349     uint8_t sub_layer_profile_present_flag[MAX_SUB_LAYERS];
350     uint8_t sub_layer_level_present_flag[MAX_SUB_LAYERS];
351
352     int sub_layer_profile_space[MAX_SUB_LAYERS];
353     uint8_t sub_layer_tier_flag[MAX_SUB_LAYERS];
354     int sub_layer_profile_idc[MAX_SUB_LAYERS];
355     uint8_t sub_layer_profile_compatibility_flags[MAX_SUB_LAYERS][32];
356     int sub_layer_level_idc[MAX_SUB_LAYERS];
357 } PTL;
358
359 typedef struct HEVCVPS {
360     uint8_t vps_temporal_id_nesting_flag;
361     int vps_max_layers;
362     int vps_max_sub_layers; ///< vps_max_temporal_layers_minus1 + 1
363
364     PTL ptl;
365     int vps_sub_layer_ordering_info_present_flag;
366     unsigned int vps_max_dec_pic_buffering[MAX_SUB_LAYERS];
367     unsigned int vps_num_reorder_pics[MAX_SUB_LAYERS];
368     unsigned int vps_max_latency_increase[MAX_SUB_LAYERS];
369     int vps_max_layer_id;
370     int vps_num_layer_sets; ///< vps_num_layer_sets_minus1 + 1
371     uint8_t vps_timing_info_present_flag;
372     uint32_t vps_num_units_in_tick;
373     uint32_t vps_time_scale;
374     uint8_t vps_poc_proportional_to_timing_flag;
375     int vps_num_ticks_poc_diff_one; ///< vps_num_ticks_poc_diff_one_minus1 + 1
376     int vps_num_hrd_parameters;
377
378     int vps_extension_flag;
379 } HEVCVPS;
380
381 typedef struct ScalingList {
382     /* This is a little wasteful, since sizeID 0 only needs 8 coeffs,
383      * and size ID 3 only has 2 arrays, not 6. */
384     uint8_t sl[4][6][64];
385     uint8_t sl_dc[2][6];
386 } ScalingList;
387
388 typedef struct HEVCSPS {
389     int vps_id;
390     int chroma_format_idc;
391     uint8_t separate_colour_plane_flag;
392
393     ///< output (i.e. cropped) values
394     int output_width, output_height;
395     HEVCWindow output_window;
396
397     HEVCWindow pic_conf_win;
398
399     int bit_depth;
400     int pixel_shift;
401     enum AVPixelFormat pix_fmt;
402
403     unsigned int log2_max_poc_lsb;
404     int pcm_enabled_flag;
405
406     int max_sub_layers;
407     struct {
408         int max_dec_pic_buffering;
409         int num_reorder_pics;
410         int max_latency_increase;
411     } temporal_layer[MAX_SUB_LAYERS];
412
413     VUI vui;
414     PTL ptl;
415
416     uint8_t scaling_list_enable_flag;
417     ScalingList scaling_list;
418
419     unsigned int nb_st_rps;
420     ShortTermRPS st_rps[MAX_SHORT_TERM_RPS_COUNT];
421
422     uint8_t amp_enabled_flag;
423     uint8_t sao_enabled;
424
425     uint8_t long_term_ref_pics_present_flag;
426     uint16_t lt_ref_pic_poc_lsb_sps[32];
427     uint8_t used_by_curr_pic_lt_sps_flag[32];
428     uint8_t num_long_term_ref_pics_sps;
429
430     struct {
431         uint8_t bit_depth;
432         uint8_t bit_depth_chroma;
433         unsigned int log2_min_pcm_cb_size;
434         unsigned int log2_max_pcm_cb_size;
435         uint8_t loop_filter_disable_flag;
436     } pcm;
437     uint8_t sps_temporal_mvp_enabled_flag;
438     uint8_t sps_strong_intra_smoothing_enable_flag;
439
440     unsigned int log2_min_cb_size;
441     unsigned int log2_diff_max_min_coding_block_size;
442     unsigned int log2_min_tb_size;
443     unsigned int log2_max_trafo_size;
444     unsigned int log2_ctb_size;
445     unsigned int log2_min_pu_size;
446
447     int max_transform_hierarchy_depth_inter;
448     int max_transform_hierarchy_depth_intra;
449
450     ///< coded frame dimension in various units
451     int width;
452     int height;
453     int ctb_width;
454     int ctb_height;
455     int ctb_size;
456     int min_cb_width;
457     int min_cb_height;
458     int min_tb_width;
459     int min_tb_height;
460     int min_pu_width;
461     int min_pu_height;
462
463     int hshift[3];
464     int vshift[3];
465
466     int qp_bd_offset;
467 } HEVCSPS;
468
469 typedef struct HEVCPPS {
470     int sps_id; ///< seq_parameter_set_id
471
472     uint8_t sign_data_hiding_flag;
473
474     uint8_t cabac_init_present_flag;
475
476     int num_ref_idx_l0_default_active; ///< num_ref_idx_l0_default_active_minus1 + 1
477     int num_ref_idx_l1_default_active; ///< num_ref_idx_l1_default_active_minus1 + 1
478     int pic_init_qp_minus26;
479
480     uint8_t constrained_intra_pred_flag;
481     uint8_t transform_skip_enabled_flag;
482
483     uint8_t cu_qp_delta_enabled_flag;
484     int diff_cu_qp_delta_depth;
485
486     int cb_qp_offset;
487     int cr_qp_offset;
488     uint8_t pic_slice_level_chroma_qp_offsets_present_flag;
489     uint8_t weighted_pred_flag;
490     uint8_t weighted_bipred_flag;
491     uint8_t output_flag_present_flag;
492     uint8_t transquant_bypass_enable_flag;
493
494     uint8_t dependent_slice_segments_enabled_flag;
495     uint8_t tiles_enabled_flag;
496     uint8_t entropy_coding_sync_enabled_flag;
497
498     int num_tile_columns;   ///< num_tile_columns_minus1 + 1
499     int num_tile_rows;      ///< num_tile_rows_minus1 + 1
500     uint8_t uniform_spacing_flag;
501     uint8_t loop_filter_across_tiles_enabled_flag;
502
503     uint8_t seq_loop_filter_across_slices_enabled_flag;
504
505     uint8_t deblocking_filter_control_present_flag;
506     uint8_t deblocking_filter_override_enabled_flag;
507     uint8_t disable_dbf;
508     int beta_offset;    ///< beta_offset_div2 * 2
509     int tc_offset;      ///< tc_offset_div2 * 2
510
511     int scaling_list_data_present_flag;
512     ScalingList scaling_list;
513
514     uint8_t lists_modification_present_flag;
515     int log2_parallel_merge_level; ///< log2_parallel_merge_level_minus2 + 2
516     int num_extra_slice_header_bits;
517     uint8_t slice_header_extension_present_flag;
518
519     uint8_t pps_extension_flag;
520     uint8_t pps_extension_data_flag;
521
522     // Inferred parameters
523     int *column_width;  ///< ColumnWidth
524     int *row_height;    ///< RowHeight
525     int *col_bd;        ///< ColBd
526     int *row_bd;        ///< RowBd
527     int *col_idxX;
528
529     int *ctb_addr_rs_to_ts; ///< CtbAddrRSToTS
530     int *ctb_addr_ts_to_rs; ///< CtbAddrTSToRS
531     int *tile_id;           ///< TileId
532     int *tile_pos_rs;       ///< TilePosRS
533     int *min_cb_addr_zs;    ///< MinCbAddrZS
534     int *min_tb_addr_zs;    ///< MinTbAddrZS
535 } HEVCPPS;
536
537 typedef struct SliceHeader {
538     int pps_id;
539
540     ///< address (in raster order) of the first block in the current slice segment
541     unsigned int   slice_segment_addr;
542     ///< address (in raster order) of the first block in the current slice
543     unsigned int   slice_addr;
544
545     enum SliceType slice_type;
546
547     int pic_order_cnt_lsb;
548
549     uint8_t first_slice_in_pic_flag;
550     uint8_t dependent_slice_segment_flag;
551     uint8_t pic_output_flag;
552     uint8_t colour_plane_id;
553
554     ///< RPS coded in the slice header itself is stored here
555     ShortTermRPS slice_rps;
556     const ShortTermRPS *short_term_rps;
557     LongTermRPS long_term_rps;
558     unsigned int list_entry_lx[2][32];
559
560     uint8_t rpl_modification_flag[2];
561     uint8_t no_output_of_prior_pics_flag;
562     uint8_t slice_temporal_mvp_enabled_flag;
563
564     unsigned int nb_refs[2];
565
566     uint8_t slice_sample_adaptive_offset_flag[3];
567     uint8_t mvd_l1_zero_flag;
568
569     uint8_t cabac_init_flag;
570     uint8_t disable_deblocking_filter_flag; ///< slice_header_disable_deblocking_filter_flag
571     uint8_t slice_loop_filter_across_slices_enabled_flag;
572     uint8_t collocated_list;
573
574     unsigned int collocated_ref_idx;
575
576     int slice_qp_delta;
577     int slice_cb_qp_offset;
578     int slice_cr_qp_offset;
579
580     int beta_offset;    ///< beta_offset_div2 * 2
581     int tc_offset;      ///< tc_offset_div2 * 2
582
583     int max_num_merge_cand; ///< 5 - 5_minus_max_num_merge_cand
584
585
586     int *entry_point_offset;
587     int * offset;
588     int * size;
589     int num_entry_point_offsets;
590
591     int8_t slice_qp;
592
593     uint8_t luma_log2_weight_denom;
594     int16_t chroma_log2_weight_denom;
595
596     int16_t luma_weight_l0[16];
597     int16_t chroma_weight_l0[16][2];
598     int16_t chroma_weight_l1[16][2];
599     int16_t luma_weight_l1[16];
600
601     int16_t luma_offset_l0[16];
602     int16_t chroma_offset_l0[16][2];
603
604     int16_t luma_offset_l1[16];
605     int16_t chroma_offset_l1[16][2];
606
607     int slice_ctb_addr_rs;
608 } SliceHeader;
609
610 typedef struct CodingTree {
611     int depth; ///< ctDepth
612 } CodingTree;
613
614 typedef struct CodingUnit {
615     int x;
616     int y;
617
618     enum PredMode pred_mode;    ///< PredMode
619     enum PartMode part_mode;    ///< PartMode
620
621     uint8_t rqt_root_cbf;
622
623     uint8_t pcm_flag;
624
625     // Inferred parameters
626     uint8_t intra_split_flag;   ///< IntraSplitFlag
627     uint8_t max_trafo_depth;    ///< MaxTrafoDepth
628     uint8_t cu_transquant_bypass_flag;
629 } CodingUnit;
630
631 typedef struct Mv {
632     int16_t x;  ///< horizontal component of motion vector
633     int16_t y;  ///< vertical component of motion vector
634 } Mv;
635
636 typedef struct MvField {
637     Mv mv[2];
638     int8_t ref_idx[2];
639     int8_t pred_flag[2];
640     uint8_t is_intra;
641 } MvField;
642
643 typedef struct NeighbourAvailable {
644     int cand_bottom_left;
645     int cand_left;
646     int cand_up;
647     int cand_up_left;
648     int cand_up_right;
649     int cand_up_right_sap;
650 } NeighbourAvailable;
651
652 typedef struct PredictionUnit {
653     int mpm_idx;
654     int rem_intra_luma_pred_mode;
655     uint8_t intra_pred_mode[4];
656     Mv mvd;
657     uint8_t merge_flag;
658     uint8_t intra_pred_mode_c;
659 } PredictionUnit;
660
661 typedef struct TransformTree {
662     uint8_t cbf_cb[MAX_TRANSFORM_DEPTH][MAX_CU_SIZE * MAX_CU_SIZE];
663     uint8_t cbf_cr[MAX_TRANSFORM_DEPTH][MAX_CU_SIZE * MAX_CU_SIZE];
664     uint8_t cbf_luma;
665
666     // Inferred parameters
667     uint8_t inter_split_flag;
668 } TransformTree;
669
670 typedef struct TransformUnit {
671     int cu_qp_delta;
672
673     // Inferred parameters;
674     int cur_intra_pred_mode;
675     uint8_t is_cu_qp_delta_coded;
676 } TransformUnit;
677
678 typedef struct SAOParams {
679     int offset_abs[3][4];   ///< sao_offset_abs
680     int offset_sign[3][4];  ///< sao_offset_sign
681
682     int band_position[3];   ///< sao_band_position
683
684     int eo_class[3];        ///< sao_eo_class
685
686     int offset_val[3][5];   ///<SaoOffsetVal
687
688     uint8_t type_idx[3];    ///< sao_type_idx
689 } SAOParams;
690
691 typedef struct DBParams {
692     int beta_offset;
693     int tc_offset;
694 } DBParams;
695
696 #define HEVC_FRAME_FLAG_OUTPUT    (1 << 0)
697 #define HEVC_FRAME_FLAG_SHORT_REF (1 << 1)
698 #define HEVC_FRAME_FLAG_LONG_REF  (1 << 2)
699
700 typedef struct HEVCFrame {
701     AVFrame *frame;
702     ThreadFrame tf;
703     MvField *tab_mvf;
704     RefPicList *refPicList;
705     RefPicListTab **rpl_tab;
706     int ctb_count;
707     int poc;
708     struct HEVCFrame *collocated_ref;
709
710     HEVCWindow window;
711
712     AVBufferRef *tab_mvf_buf;
713     AVBufferRef *rpl_tab_buf;
714     AVBufferRef *rpl_buf;
715
716     /**
717      * A sequence counter, so that old frames are output first
718      * after a POC reset
719      */
720     uint16_t sequence;
721
722     /**
723      * A combination of HEVC_FRAME_FLAG_*
724      */
725     uint8_t flags;
726 } HEVCFrame;
727
728 typedef struct HEVCNAL {
729     uint8_t *rbsp_buffer;
730     int rbsp_buffer_size;
731
732     int size;
733     const uint8_t *data;
734 } HEVCNAL;
735
736 typedef struct HEVCLocalContext {
737     DECLARE_ALIGNED(16, int16_t, mc_buffer[(MAX_PB_SIZE + 7) * MAX_PB_SIZE]);
738     uint8_t cabac_state[HEVC_CONTEXTS];
739
740     uint8_t first_qp_group;
741
742     GetBitContext gb;
743     CABACContext cc;
744     TransformTree tt;
745
746     int8_t qp_y;
747     int8_t curr_qp_y;
748
749     TransformUnit tu;
750
751     uint8_t ctb_left_flag;
752     uint8_t ctb_up_flag;
753     uint8_t ctb_up_right_flag;
754     uint8_t ctb_up_left_flag;
755     int     start_of_tiles_x;
756     int     end_of_tiles_x;
757     int     end_of_tiles_y;
758     uint8_t *edge_emu_buffer;
759     int      edge_emu_buffer_size;
760     CodingTree ct;
761     CodingUnit cu;
762     PredictionUnit pu;
763     NeighbourAvailable na;
764
765     uint8_t slice_or_tiles_left_boundary;
766     uint8_t slice_or_tiles_up_boundary;
767 } HEVCLocalContext;
768
769 typedef struct HEVCContext {
770     const AVClass *c;  // needed by private avoptions
771     AVCodecContext      *avctx;
772
773     struct HEVCContext  *sList[MAX_NB_THREADS];
774
775     HEVCLocalContext    *HEVClcList[MAX_NB_THREADS];
776     HEVCLocalContext    *HEVClc;
777
778     uint8_t             threads_type;
779     uint8_t             threads_number;
780
781     int                 width;
782     int                 height;
783
784     uint8_t *cabac_state;
785
786     /** 1 if the independent slice segment header was successfully parsed */
787     uint8_t slice_initialized;
788
789     AVFrame *frame;
790     AVFrame *sao_frame;
791     AVFrame *tmp_frame;
792     AVFrame *output_frame;
793
794     HEVCVPS *vps;
795     const HEVCSPS *sps;
796     HEVCPPS *pps;
797     AVBufferRef *vps_list[MAX_VPS_COUNT];
798     AVBufferRef *sps_list[MAX_SPS_COUNT];
799     AVBufferRef *pps_list[MAX_PPS_COUNT];
800
801     AVBufferPool *tab_mvf_pool;
802     AVBufferPool *rpl_tab_pool;
803
804     ///< candidate references for the current frame
805     RefPicList rps[5];
806
807     SliceHeader sh;
808     SAOParams *sao;
809     DBParams *deblock;
810     enum NALUnitType nal_unit_type;
811     int temporal_id;  ///< temporal_id_plus1 - 1
812     HEVCFrame *ref;
813     HEVCFrame DPB[32];
814     int poc;
815     int pocTid0;
816     int slice_idx; ///< number of the slice being currently decoded
817     int eos;       ///< current packet contains an EOS/EOB NAL
818     int max_ra;
819     int bs_width;
820     int bs_height;
821
822     int is_decoded;
823
824     HEVCPredContext hpc;
825     HEVCDSPContext hevcdsp;
826     VideoDSPContext vdsp;
827     DSPContext dsp;
828     int8_t *qp_y_tab;
829     uint8_t *split_cu_flag;
830     uint8_t *horizontal_bs;
831     uint8_t *vertical_bs;
832
833     int32_t *tab_slice_address;
834
835     //  CU
836     uint8_t *skip_flag;
837     uint8_t *tab_ct_depth;
838     // PU
839     uint8_t *tab_ipm;
840
841     uint8_t *cbf_luma; // cbf_luma of colocated TU
842     uint8_t *is_pcm;
843
844     // CTB-level flags affecting loop filter operation
845     uint8_t *filter_slice_edges;
846
847     /** used on BE to byteswap the lines for checksumming */
848     uint8_t *checksum_buf;
849     int      checksum_buf_size;
850
851     /**
852      * Sequence counters for decoded and output frames, so that old
853      * frames are output first after a POC reset
854      */
855     uint16_t seq_decode;
856     uint16_t seq_output;
857
858     int enable_parallel_tiles;
859     int wpp_err;
860     int skipped_bytes;
861     int *skipped_bytes_pos;
862     int skipped_bytes_pos_size;
863
864     int *skipped_bytes_nal;
865     int **skipped_bytes_pos_nal;
866     int *skipped_bytes_pos_size_nal;
867
868     uint8_t *data;
869
870     HEVCNAL *nals;
871     int nb_nals;
872     int nals_allocated;
873
874     // for checking the frame checksums
875     struct AVMD5 *md5_ctx;
876     uint8_t       md5[3][16];
877     uint8_t is_md5;
878
879     int context_initialized;
880     int is_nalff;           ///< this flag is != 0 if bitstream is encapsulated
881                             ///< as a format defined in 14496-15
882     int apply_defdispwin;
883
884     int active_seq_parameter_set_id;
885
886     int nal_length_size;    ///< Number of bytes used for nal length (1, 2 or 4)
887     int nuh_layer_id;
888
889     int picture_struct;
890 } HEVCContext;
891
892 int ff_hevc_decode_short_term_rps(HEVCContext *s, ShortTermRPS *rps,
893                                   const HEVCSPS *sps, int is_slice_header);
894 int ff_hevc_decode_nal_vps(HEVCContext *s);
895 int ff_hevc_decode_nal_sps(HEVCContext *s);
896 int ff_hevc_decode_nal_pps(HEVCContext *s);
897 int ff_hevc_decode_nal_sei(HEVCContext *s);
898
899 int ff_hevc_extract_rbsp(HEVCContext *s, const uint8_t *src, int length,
900                          HEVCNAL *nal);
901
902 /**
903  * Mark all frames in DPB as unused for reference.
904  */
905 void ff_hevc_clear_refs(HEVCContext *s);
906
907 /**
908  * Drop all frames currently in DPB.
909  */
910 void ff_hevc_flush_dpb(HEVCContext *s);
911
912 /**
913  * Compute POC of the current frame and return it.
914  */
915 int ff_hevc_compute_poc(HEVCContext *s, int poc_lsb);
916
917 RefPicList *ff_hevc_get_ref_list(HEVCContext *s, HEVCFrame *frame,
918                                  int x0, int y0);
919
920 /**
921  * Construct the reference picture sets for the current frame.
922  */
923 int ff_hevc_frame_rps(HEVCContext *s);
924
925 /**
926  * Construct the reference picture list(s) for the current slice.
927  */
928 int ff_hevc_slice_rpl(HEVCContext *s);
929
930 void ff_hevc_save_states(HEVCContext *s, int ctb_addr_ts);
931 void ff_hevc_cabac_init(HEVCContext *s, int ctb_addr_ts);
932 int ff_hevc_sao_merge_flag_decode(HEVCContext *s);
933 int ff_hevc_sao_type_idx_decode(HEVCContext *s);
934 int ff_hevc_sao_band_position_decode(HEVCContext *s);
935 int ff_hevc_sao_offset_abs_decode(HEVCContext *s);
936 int ff_hevc_sao_offset_sign_decode(HEVCContext *s);
937 int ff_hevc_sao_eo_class_decode(HEVCContext *s);
938 int ff_hevc_end_of_slice_flag_decode(HEVCContext *s);
939 int ff_hevc_cu_transquant_bypass_flag_decode(HEVCContext *s);
940 int ff_hevc_skip_flag_decode(HEVCContext *s, int x0, int y0,
941                              int x_cb, int y_cb);
942 int ff_hevc_pred_mode_decode(HEVCContext *s);
943 int ff_hevc_split_coding_unit_flag_decode(HEVCContext *s, int ct_depth,
944                                           int x0, int y0);
945 int ff_hevc_part_mode_decode(HEVCContext *s, int log2_cb_size);
946 int ff_hevc_pcm_flag_decode(HEVCContext *s);
947 int ff_hevc_prev_intra_luma_pred_flag_decode(HEVCContext *s);
948 int ff_hevc_mpm_idx_decode(HEVCContext *s);
949 int ff_hevc_rem_intra_luma_pred_mode_decode(HEVCContext *s);
950 int ff_hevc_intra_chroma_pred_mode_decode(HEVCContext *s);
951 int ff_hevc_merge_idx_decode(HEVCContext *s);
952 int ff_hevc_merge_flag_decode(HEVCContext *s);
953 int ff_hevc_inter_pred_idc_decode(HEVCContext *s, int nPbW, int nPbH);
954 int ff_hevc_ref_idx_lx_decode(HEVCContext *s, int num_ref_idx_lx);
955 int ff_hevc_mvp_lx_flag_decode(HEVCContext *s);
956 int ff_hevc_no_residual_syntax_flag_decode(HEVCContext *s);
957 int ff_hevc_split_transform_flag_decode(HEVCContext *s, int log2_trafo_size);
958 int ff_hevc_cbf_cb_cr_decode(HEVCContext *s, int trafo_depth);
959 int ff_hevc_cbf_luma_decode(HEVCContext *s, int trafo_depth);
960 int ff_hevc_transform_skip_flag_decode(HEVCContext *s, int c_idx);
961
962 /**
963  * Get the number of candidate references for the current frame.
964  */
965 int ff_hevc_frame_nb_refs(HEVCContext *s);
966
967 int ff_hevc_set_new_ref(HEVCContext *s, AVFrame **frame, int poc);
968
969 /**
970  * Find next frame in output order and put a reference to it in frame.
971  * @return 1 if a frame was output, 0 otherwise
972  */
973 int ff_hevc_output_frame(HEVCContext *s, AVFrame *frame, int flush);
974
975 void ff_hevc_unref_frame(HEVCContext *s, HEVCFrame *frame, int flags);
976
977 void ff_hevc_set_neighbour_available(HEVCContext *s, int x0, int y0,
978                                      int nPbW, int nPbH);
979 void ff_hevc_luma_mv_merge_mode(HEVCContext *s, int x0, int y0,
980                                 int nPbW, int nPbH, int log2_cb_size,
981                                 int part_idx, int merge_idx, MvField *mv);
982 void ff_hevc_luma_mv_mvp_mode(HEVCContext *s, int x0, int y0,
983                               int nPbW, int nPbH, int log2_cb_size,
984                               int part_idx, int merge_idx,
985                               MvField *mv, int mvp_lx_flag, int LX);
986 void ff_hevc_set_qPy(HEVCContext *s, int xC, int yC, int xBase, int yBase,
987                      int log2_cb_size);
988 void ff_hevc_deblocking_boundary_strengths(HEVCContext *s, int x0, int y0,
989                                            int log2_trafo_size,
990                                            int slice_or_tiles_up_boundary,
991                                            int slice_or_tiles_left_boundary);
992 int ff_hevc_cu_qp_delta_sign_flag(HEVCContext *s);
993 int ff_hevc_cu_qp_delta_abs(HEVCContext *s);
994 void ff_hevc_hls_filter(HEVCContext *s, int x, int y);
995 void ff_hevc_hls_filters(HEVCContext *s, int x_ctb, int y_ctb, int ctb_size);
996 void ff_hevc_hls_residual_coding(HEVCContext *s, int x0, int y0,
997                                  int log2_trafo_size, enum ScanType scan_idx,
998                                  int c_idx);
999
1000 void ff_hevc_hls_mvd_coding(HEVCContext *s, int x0, int y0, int log2_cb_size);
1001
1002
1003 extern const uint8_t ff_hevc_qpel_extra_before[4];
1004 extern const uint8_t ff_hevc_qpel_extra_after[4];
1005 extern const uint8_t ff_hevc_qpel_extra[4];
1006
1007 extern const uint8_t ff_hevc_diag_scan4x4_x[16];
1008 extern const uint8_t ff_hevc_diag_scan4x4_y[16];
1009 extern const uint8_t ff_hevc_diag_scan8x8_x[64];
1010 extern const uint8_t ff_hevc_diag_scan8x8_y[64];
1011
1012 #endif /* AVCODEC_HEVC_H */