]> git.sesse.net Git - ffmpeg/blob - libavcodec/hevc.h
Merge commit 'c673fc919c374c60b1e6d80d8822712eadf67f16'
[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 PTL {
334     int general_profile_space;
335     uint8_t general_tier_flag;
336     int general_profile_idc;
337     int general_profile_compatibility_flag[32];
338     int general_level_idc;
339
340     uint8_t sub_layer_profile_present_flag[MAX_SUB_LAYERS];
341     uint8_t sub_layer_level_present_flag[MAX_SUB_LAYERS];
342
343     int sub_layer_profile_space[MAX_SUB_LAYERS];
344     uint8_t sub_layer_tier_flag[MAX_SUB_LAYERS];
345     int sub_layer_profile_idc[MAX_SUB_LAYERS];
346     uint8_t sub_layer_profile_compatibility_flags[MAX_SUB_LAYERS][32];
347     int sub_layer_level_idc[MAX_SUB_LAYERS];
348 } PTL;
349
350 typedef struct HEVCVPS {
351     uint8_t vps_temporal_id_nesting_flag;
352     int vps_max_layers;
353     int vps_max_sub_layers; ///< vps_max_temporal_layers_minus1 + 1
354
355     PTL ptl;
356     int vps_sub_layer_ordering_info_present_flag;
357     unsigned int vps_max_dec_pic_buffering[MAX_SUB_LAYERS];
358     unsigned int vps_num_reorder_pics[MAX_SUB_LAYERS];
359     unsigned int vps_max_latency_increase[MAX_SUB_LAYERS];
360     int vps_max_layer_id;
361     int vps_num_layer_sets; ///< vps_num_layer_sets_minus1 + 1
362     uint8_t vps_timing_info_present_flag;
363     uint32_t vps_num_units_in_tick;
364     uint32_t vps_time_scale;
365     uint8_t vps_poc_proportional_to_timing_flag;
366     int vps_num_ticks_poc_diff_one; ///< vps_num_ticks_poc_diff_one_minus1 + 1
367     int vps_num_hrd_parameters;
368 } HEVCVPS;
369
370 typedef struct ScalingList {
371     /* This is a little wasteful, since sizeID 0 only needs 8 coeffs,
372      * and size ID 3 only has 2 arrays, not 6. */
373     uint8_t sl[4][6][64];
374     uint8_t sl_dc[2][6];
375 } ScalingList;
376
377 typedef struct HEVCSPS {
378     int vps_id;
379     int chroma_format_idc;
380     uint8_t separate_colour_plane_flag;
381
382     ///< output (i.e. cropped) values
383     int output_width, output_height;
384     HEVCWindow output_window;
385
386     HEVCWindow pic_conf_win;
387
388     int bit_depth;
389     int pixel_shift;
390     enum AVPixelFormat pix_fmt;
391
392     unsigned int log2_max_poc_lsb;
393     int pcm_enabled_flag;
394
395     int max_sub_layers;
396     struct {
397         int max_dec_pic_buffering;
398         int num_reorder_pics;
399         int max_latency_increase;
400     } temporal_layer[MAX_SUB_LAYERS];
401
402     VUI vui;
403     PTL ptl;
404
405     uint8_t scaling_list_enable_flag;
406     ScalingList scaling_list;
407
408     unsigned int nb_st_rps;
409     ShortTermRPS st_rps[MAX_SHORT_TERM_RPS_COUNT];
410
411     uint8_t amp_enabled_flag;
412     uint8_t sao_enabled;
413
414     uint8_t long_term_ref_pics_present_flag;
415     uint16_t lt_ref_pic_poc_lsb_sps[32];
416     uint8_t used_by_curr_pic_lt_sps_flag[32];
417     uint8_t num_long_term_ref_pics_sps;
418
419     struct {
420         uint8_t bit_depth;
421         uint8_t bit_depth_chroma;
422         unsigned int log2_min_pcm_cb_size;
423         unsigned int log2_max_pcm_cb_size;
424         uint8_t loop_filter_disable_flag;
425     } pcm;
426     uint8_t sps_temporal_mvp_enabled_flag;
427     uint8_t sps_strong_intra_smoothing_enable_flag;
428
429     unsigned int log2_min_cb_size;
430     unsigned int log2_diff_max_min_coding_block_size;
431     unsigned int log2_min_tb_size;
432     unsigned int log2_max_trafo_size;
433     unsigned int log2_ctb_size;
434     unsigned int log2_min_pu_size;
435
436     int max_transform_hierarchy_depth_inter;
437     int max_transform_hierarchy_depth_intra;
438
439     ///< coded frame dimension in various units
440     int width;
441     int height;
442     int ctb_width;
443     int ctb_height;
444     int ctb_size;
445     int min_cb_width;
446     int min_cb_height;
447     int min_tb_width;
448     int min_tb_height;
449     int min_pu_width;
450     int min_pu_height;
451
452     int hshift[3];
453     int vshift[3];
454
455     int qp_bd_offset;
456 } HEVCSPS;
457
458 typedef struct HEVCPPS {
459     int sps_id; ///< seq_parameter_set_id
460
461     uint8_t sign_data_hiding_flag;
462
463     uint8_t cabac_init_present_flag;
464
465     int num_ref_idx_l0_default_active; ///< num_ref_idx_l0_default_active_minus1 + 1
466     int num_ref_idx_l1_default_active; ///< num_ref_idx_l1_default_active_minus1 + 1
467     int pic_init_qp_minus26;
468
469     uint8_t constrained_intra_pred_flag;
470     uint8_t transform_skip_enabled_flag;
471
472     uint8_t cu_qp_delta_enabled_flag;
473     int diff_cu_qp_delta_depth;
474
475     int cb_qp_offset;
476     int cr_qp_offset;
477     uint8_t pic_slice_level_chroma_qp_offsets_present_flag;
478     uint8_t weighted_pred_flag;
479     uint8_t weighted_bipred_flag;
480     uint8_t output_flag_present_flag;
481     uint8_t transquant_bypass_enable_flag;
482
483     uint8_t dependent_slice_segments_enabled_flag;
484     uint8_t tiles_enabled_flag;
485     uint8_t entropy_coding_sync_enabled_flag;
486
487     int num_tile_columns;   ///< num_tile_columns_minus1 + 1
488     int num_tile_rows;      ///< num_tile_rows_minus1 + 1
489     uint8_t uniform_spacing_flag;
490     uint8_t loop_filter_across_tiles_enabled_flag;
491
492     uint8_t seq_loop_filter_across_slices_enabled_flag;
493
494     uint8_t deblocking_filter_control_present_flag;
495     uint8_t deblocking_filter_override_enabled_flag;
496     uint8_t disable_dbf;
497     int beta_offset;    ///< beta_offset_div2 * 2
498     int tc_offset;      ///< tc_offset_div2 * 2
499
500     int scaling_list_data_present_flag;
501     ScalingList scaling_list;
502
503     uint8_t lists_modification_present_flag;
504     int log2_parallel_merge_level; ///< log2_parallel_merge_level_minus2 + 2
505     int num_extra_slice_header_bits;
506     uint8_t slice_header_extension_present_flag;
507
508     uint8_t pps_extension_flag;
509     uint8_t pps_extension_data_flag;
510
511     // Inferred parameters
512     int *column_width;  ///< ColumnWidth
513     int *row_height;    ///< RowHeight
514     int *col_bd;        ///< ColBd
515     int *row_bd;        ///< RowBd
516     int *col_idxX;
517
518     int *ctb_addr_rs_to_ts; ///< CtbAddrRSToTS
519     int *ctb_addr_ts_to_rs; ///< CtbAddrTSToRS
520     int *tile_id;           ///< TileId
521     int *tile_pos_rs;       ///< TilePosRS
522     int *min_cb_addr_zs;    ///< MinCbAddrZS
523     int *min_tb_addr_zs;    ///< MinTbAddrZS
524 } HEVCPPS;
525
526 typedef struct SliceHeader {
527     int pps_id;
528
529     ///< address (in raster order) of the first block in the current slice segment
530     unsigned int   slice_segment_addr;
531     ///< address (in raster order) of the first block in the current slice
532     unsigned int   slice_addr;
533
534     enum SliceType slice_type;
535
536     int pic_order_cnt_lsb;
537
538     uint8_t first_slice_in_pic_flag;
539     uint8_t dependent_slice_segment_flag;
540     uint8_t pic_output_flag;
541     uint8_t colour_plane_id;
542
543     ///< RPS coded in the slice header itself is stored here
544     ShortTermRPS slice_rps;
545     const ShortTermRPS *short_term_rps;
546     LongTermRPS long_term_rps;
547     unsigned int list_entry_lx[2][32];
548
549     uint8_t rpl_modification_flag[2];
550     uint8_t no_output_of_prior_pics_flag;
551     uint8_t slice_temporal_mvp_enabled_flag;
552
553     unsigned int nb_refs[2];
554
555     uint8_t slice_sample_adaptive_offset_flag[3];
556     uint8_t mvd_l1_zero_flag;
557
558     uint8_t cabac_init_flag;
559     uint8_t disable_deblocking_filter_flag; ///< slice_header_disable_deblocking_filter_flag
560     uint8_t slice_loop_filter_across_slices_enabled_flag;
561     uint8_t collocated_list;
562
563     unsigned int collocated_ref_idx;
564
565     int slice_qp_delta;
566     int slice_cb_qp_offset;
567     int slice_cr_qp_offset;
568
569     int beta_offset;    ///< beta_offset_div2 * 2
570     int tc_offset;      ///< tc_offset_div2 * 2
571
572     int max_num_merge_cand; ///< 5 - 5_minus_max_num_merge_cand
573
574
575     int *entry_point_offset;
576     int * offset;
577     int * size;
578     int num_entry_point_offsets;
579
580     int8_t slice_qp;
581
582     uint8_t luma_log2_weight_denom;
583     int16_t chroma_log2_weight_denom;
584
585     int16_t luma_weight_l0[16];
586     int16_t chroma_weight_l0[16][2];
587     int16_t chroma_weight_l1[16][2];
588     int16_t luma_weight_l1[16];
589
590     int16_t luma_offset_l0[16];
591     int16_t chroma_offset_l0[16][2];
592
593     int16_t luma_offset_l1[16];
594     int16_t chroma_offset_l1[16][2];
595
596     int slice_ctb_addr_rs;
597 } SliceHeader;
598
599 typedef struct CodingTree {
600     int depth; ///< ctDepth
601 } CodingTree;
602
603 typedef struct CodingUnit {
604     int x;
605     int y;
606
607     enum PredMode pred_mode;    ///< PredMode
608     enum PartMode part_mode;    ///< PartMode
609
610     uint8_t rqt_root_cbf;
611
612     uint8_t pcm_flag;
613
614     // Inferred parameters
615     uint8_t intra_split_flag;   ///< IntraSplitFlag
616     uint8_t max_trafo_depth;    ///< MaxTrafoDepth
617     uint8_t cu_transquant_bypass_flag;
618 } CodingUnit;
619
620 typedef struct Mv {
621     int16_t x;  ///< horizontal component of motion vector
622     int16_t y;  ///< vertical component of motion vector
623 } Mv;
624
625 typedef struct MvField {
626     Mv mv[2];
627     int8_t ref_idx[2];
628     int8_t pred_flag[2];
629     uint8_t is_intra;
630 } MvField;
631
632 typedef struct NeighbourAvailable {
633     int cand_bottom_left;
634     int cand_left;
635     int cand_up;
636     int cand_up_left;
637     int cand_up_right;
638     int cand_up_right_sap;
639 } NeighbourAvailable;
640
641 typedef struct PredictionUnit {
642     int mpm_idx;
643     int rem_intra_luma_pred_mode;
644     uint8_t intra_pred_mode[4];
645     Mv mvd;
646     uint8_t merge_flag;
647     uint8_t intra_pred_mode_c;
648 } PredictionUnit;
649
650 typedef struct TransformTree {
651     uint8_t cbf_cb[MAX_TRANSFORM_DEPTH][MAX_CU_SIZE * MAX_CU_SIZE];
652     uint8_t cbf_cr[MAX_TRANSFORM_DEPTH][MAX_CU_SIZE * MAX_CU_SIZE];
653     uint8_t cbf_luma;
654
655     // Inferred parameters
656     uint8_t inter_split_flag;
657 } TransformTree;
658
659 typedef struct TransformUnit {
660     int cu_qp_delta;
661
662     // Inferred parameters;
663     int cur_intra_pred_mode;
664     uint8_t is_cu_qp_delta_coded;
665 } TransformUnit;
666
667 typedef struct SAOParams {
668     int offset_abs[3][4];   ///< sao_offset_abs
669     int offset_sign[3][4];  ///< sao_offset_sign
670
671     int band_position[3];   ///< sao_band_position
672
673     int eo_class[3];        ///< sao_eo_class
674
675     int offset_val[3][5];   ///<SaoOffsetVal
676
677     uint8_t type_idx[3];    ///< sao_type_idx
678 } SAOParams;
679
680 typedef struct DBParams {
681     int beta_offset;
682     int tc_offset;
683 } DBParams;
684
685 #define HEVC_FRAME_FLAG_OUTPUT    (1 << 0)
686 #define HEVC_FRAME_FLAG_SHORT_REF (1 << 1)
687 #define HEVC_FRAME_FLAG_LONG_REF  (1 << 2)
688
689 typedef struct HEVCFrame {
690     AVFrame *frame;
691     ThreadFrame tf;
692     MvField *tab_mvf;
693     RefPicList *refPicList;
694     RefPicListTab **rpl_tab;
695     int ctb_count;
696     int poc;
697     struct HEVCFrame *collocated_ref;
698
699     HEVCWindow window;
700
701     AVBufferRef *tab_mvf_buf;
702     AVBufferRef *rpl_tab_buf;
703     AVBufferRef *rpl_buf;
704
705     /**
706      * A sequence counter, so that old frames are output first
707      * after a POC reset
708      */
709     uint16_t sequence;
710
711     /**
712      * A combination of HEVC_FRAME_FLAG_*
713      */
714     uint8_t flags;
715 } HEVCFrame;
716
717 typedef struct HEVCNAL {
718     uint8_t *rbsp_buffer;
719     int rbsp_buffer_size;
720
721     int size;
722     const uint8_t *data;
723 } HEVCNAL;
724
725 typedef struct HEVCLocalContext {
726     DECLARE_ALIGNED(16, int16_t, mc_buffer[(MAX_PB_SIZE + 7) * MAX_PB_SIZE]);
727     uint8_t cabac_state[HEVC_CONTEXTS];
728
729     uint8_t first_qp_group;
730
731     GetBitContext gb;
732     CABACContext cc;
733     TransformTree tt;
734
735     int8_t qp_y;
736     int8_t curr_qp_y;
737
738     TransformUnit tu;
739
740     uint8_t ctb_left_flag;
741     uint8_t ctb_up_flag;
742     uint8_t ctb_up_right_flag;
743     uint8_t ctb_up_left_flag;
744     int     start_of_tiles_x;
745     int     end_of_tiles_x;
746     int     end_of_tiles_y;
747     uint8_t *edge_emu_buffer;
748     int      edge_emu_buffer_size;
749     CodingTree ct;
750     CodingUnit cu;
751     PredictionUnit pu;
752     NeighbourAvailable na;
753
754     uint8_t slice_or_tiles_left_boundary;
755     uint8_t slice_or_tiles_up_boundary;
756 } HEVCLocalContext;
757
758 typedef struct HEVCContext {
759     const AVClass *c;  // needed by private avoptions
760     AVCodecContext *avctx;
761
762     struct HEVCContext *sList[MAX_NB_THREADS];
763
764     HEVCLocalContext *HEVClcList[MAX_NB_THREADS];
765     HEVCLocalContext *HEVClc;
766
767     uint8_t             threads_type;
768     uint8_t             threads_number;
769
770     int                 width;
771     int                 height;
772
773     uint8_t *cabac_state;
774
775     /** 1 if the independent slice segment header was successfully parsed */
776     uint8_t slice_initialized;
777
778     AVFrame *frame;
779     AVFrame *sao_frame;
780     AVFrame *tmp_frame;
781     AVFrame *output_frame;
782
783     HEVCVPS *vps;
784     const HEVCSPS *sps;
785     HEVCPPS *pps;
786     HEVCVPS     *vps_list[MAX_VPS_COUNT];
787     AVBufferRef *sps_list[MAX_SPS_COUNT];
788     AVBufferRef *pps_list[MAX_PPS_COUNT];
789
790     AVBufferPool *tab_mvf_pool;
791     AVBufferPool *rpl_tab_pool;
792
793     ///< candidate references for the current frame
794     RefPicList rps[5];
795
796     SliceHeader sh;
797     SAOParams *sao;
798     DBParams *deblock;
799     enum NALUnitType nal_unit_type;
800     int temporal_id;  ///< temporal_id_plus1 - 1
801     HEVCFrame *ref;
802     HEVCFrame DPB[32];
803     int poc;
804     int pocTid0;
805     int slice_idx; ///< number of the slice being currently decoded
806     int eos;       ///< current packet contains an EOS/EOB NAL
807     int max_ra;
808     int bs_width;
809     int bs_height;
810
811     int is_decoded;
812
813     HEVCPredContext hpc;
814     HEVCDSPContext hevcdsp;
815     VideoDSPContext vdsp;
816     DSPContext dsp;
817     int8_t *qp_y_tab;
818     uint8_t *split_cu_flag;
819     uint8_t *horizontal_bs;
820     uint8_t *vertical_bs;
821
822     int32_t *tab_slice_address;
823
824     //  CU
825     uint8_t *skip_flag;
826     uint8_t *tab_ct_depth;
827     // PU
828     uint8_t *tab_ipm;
829
830     uint8_t *cbf_luma; // cbf_luma of colocated TU
831     uint8_t *is_pcm;
832
833     // CTB-level flags affecting loop filter operation
834     uint8_t *filter_slice_edges;
835
836     /** used on BE to byteswap the lines for checksumming */
837     uint8_t *checksum_buf;
838     int      checksum_buf_size;
839
840     /**
841      * Sequence counters for decoded and output frames, so that old
842      * frames are output first after a POC reset
843      */
844     uint16_t seq_decode;
845     uint16_t seq_output;
846
847     int enable_parallel_tiles;
848     int wpp_err;
849     int skipped_bytes;
850     int *skipped_bytes_pos;
851     int skipped_bytes_pos_size;
852
853     int *skipped_bytes_nal;
854     int **skipped_bytes_pos_nal;
855     int *skipped_bytes_pos_size_nal;
856
857     uint8_t *data;
858
859     HEVCNAL *nals;
860     int nb_nals;
861     int nals_allocated;
862
863     // for checking the frame checksums
864     struct AVMD5 *md5_ctx;
865     uint8_t       md5[3][16];
866     uint8_t is_md5;
867
868     int context_initialized;
869     int is_nalff;           ///< this flag is != 0 if bitstream is encapsulated
870                             ///< as a format defined in 14496-15
871     int apply_defdispwin;
872
873     int active_seq_parameter_set_id;
874
875     int nal_length_size;    ///< Number of bytes used for nal length (1, 2 or 4)
876     int nuh_layer_id;
877
878     int picture_struct;
879 } HEVCContext;
880
881 int ff_hevc_decode_short_term_rps(HEVCContext *s, ShortTermRPS *rps,
882                                   const HEVCSPS *sps, int is_slice_header);
883 int ff_hevc_decode_nal_vps(HEVCContext *s);
884 int ff_hevc_decode_nal_sps(HEVCContext *s);
885 int ff_hevc_decode_nal_pps(HEVCContext *s);
886 int ff_hevc_decode_nal_sei(HEVCContext *s);
887
888 int ff_hevc_extract_rbsp(HEVCContext *s, const uint8_t *src, int length,
889                          HEVCNAL *nal);
890
891 /**
892  * Mark all frames in DPB as unused for reference.
893  */
894 void ff_hevc_clear_refs(HEVCContext *s);
895
896 /**
897  * Drop all frames currently in DPB.
898  */
899 void ff_hevc_flush_dpb(HEVCContext *s);
900
901 /**
902  * Compute POC of the current frame and return it.
903  */
904 int ff_hevc_compute_poc(HEVCContext *s, int poc_lsb);
905
906 RefPicList *ff_hevc_get_ref_list(HEVCContext *s, HEVCFrame *frame,
907                                  int x0, int y0);
908
909 /**
910  * Construct the reference picture sets for the current frame.
911  */
912 int ff_hevc_frame_rps(HEVCContext *s);
913
914 /**
915  * Construct the reference picture list(s) for the current slice.
916  */
917 int ff_hevc_slice_rpl(HEVCContext *s);
918
919 void ff_hevc_save_states(HEVCContext *s, int ctb_addr_ts);
920 void ff_hevc_cabac_init(HEVCContext *s, int ctb_addr_ts);
921 int ff_hevc_sao_merge_flag_decode(HEVCContext *s);
922 int ff_hevc_sao_type_idx_decode(HEVCContext *s);
923 int ff_hevc_sao_band_position_decode(HEVCContext *s);
924 int ff_hevc_sao_offset_abs_decode(HEVCContext *s);
925 int ff_hevc_sao_offset_sign_decode(HEVCContext *s);
926 int ff_hevc_sao_eo_class_decode(HEVCContext *s);
927 int ff_hevc_end_of_slice_flag_decode(HEVCContext *s);
928 int ff_hevc_cu_transquant_bypass_flag_decode(HEVCContext *s);
929 int ff_hevc_skip_flag_decode(HEVCContext *s, int x0, int y0,
930                              int x_cb, int y_cb);
931 int ff_hevc_pred_mode_decode(HEVCContext *s);
932 int ff_hevc_split_coding_unit_flag_decode(HEVCContext *s, int ct_depth,
933                                           int x0, int y0);
934 int ff_hevc_part_mode_decode(HEVCContext *s, int log2_cb_size);
935 int ff_hevc_pcm_flag_decode(HEVCContext *s);
936 int ff_hevc_prev_intra_luma_pred_flag_decode(HEVCContext *s);
937 int ff_hevc_mpm_idx_decode(HEVCContext *s);
938 int ff_hevc_rem_intra_luma_pred_mode_decode(HEVCContext *s);
939 int ff_hevc_intra_chroma_pred_mode_decode(HEVCContext *s);
940 int ff_hevc_merge_idx_decode(HEVCContext *s);
941 int ff_hevc_merge_flag_decode(HEVCContext *s);
942 int ff_hevc_inter_pred_idc_decode(HEVCContext *s, int nPbW, int nPbH);
943 int ff_hevc_ref_idx_lx_decode(HEVCContext *s, int num_ref_idx_lx);
944 int ff_hevc_mvp_lx_flag_decode(HEVCContext *s);
945 int ff_hevc_no_residual_syntax_flag_decode(HEVCContext *s);
946 int ff_hevc_split_transform_flag_decode(HEVCContext *s, int log2_trafo_size);
947 int ff_hevc_cbf_cb_cr_decode(HEVCContext *s, int trafo_depth);
948 int ff_hevc_cbf_luma_decode(HEVCContext *s, int trafo_depth);
949 int ff_hevc_transform_skip_flag_decode(HEVCContext *s, int c_idx);
950
951 /**
952  * Get the number of candidate references for the current frame.
953  */
954 int ff_hevc_frame_nb_refs(HEVCContext *s);
955
956 int ff_hevc_set_new_ref(HEVCContext *s, AVFrame **frame, int poc);
957
958 /**
959  * Find next frame in output order and put a reference to it in frame.
960  * @return 1 if a frame was output, 0 otherwise
961  */
962 int ff_hevc_output_frame(HEVCContext *s, AVFrame *frame, int flush);
963
964 void ff_hevc_unref_frame(HEVCContext *s, HEVCFrame *frame, int flags);
965
966 void ff_hevc_set_neighbour_available(HEVCContext *s, int x0, int y0,
967                                      int nPbW, int nPbH);
968 void ff_hevc_luma_mv_merge_mode(HEVCContext *s, int x0, int y0,
969                                 int nPbW, int nPbH, int log2_cb_size,
970                                 int part_idx, int merge_idx, MvField *mv);
971 void ff_hevc_luma_mv_mvp_mode(HEVCContext *s, int x0, int y0,
972                               int nPbW, int nPbH, int log2_cb_size,
973                               int part_idx, int merge_idx,
974                               MvField *mv, int mvp_lx_flag, int LX);
975 void ff_hevc_set_qPy(HEVCContext *s, int xC, int yC, int xBase, int yBase,
976                      int log2_cb_size);
977 void ff_hevc_deblocking_boundary_strengths(HEVCContext *s, int x0, int y0,
978                                            int log2_trafo_size,
979                                            int slice_or_tiles_up_boundary,
980                                            int slice_or_tiles_left_boundary);
981 int ff_hevc_cu_qp_delta_sign_flag(HEVCContext *s);
982 int ff_hevc_cu_qp_delta_abs(HEVCContext *s);
983 void ff_hevc_hls_filter(HEVCContext *s, int x, int y);
984 void ff_hevc_hls_filters(HEVCContext *s, int x_ctb, int y_ctb, int ctb_size);
985
986 void ff_hevc_hls_residual_coding(HEVCContext *s, int x0, int y0,
987                                  int log2_trafo_size, enum ScanType scan_idx,
988                                  int c_idx);
989
990 void ff_hevc_hls_mvd_coding(HEVCContext *s, int x0, int y0, int log2_cb_size);
991
992 void ff_hevc_pps_free(HEVCPPS **ppps);
993
994 extern const uint8_t ff_hevc_qpel_extra_before[4];
995 extern const uint8_t ff_hevc_qpel_extra_after[4];
996 extern const uint8_t ff_hevc_qpel_extra[4];
997
998 extern const uint8_t ff_hevc_diag_scan4x4_x[16];
999 extern const uint8_t ff_hevc_diag_scan4x4_y[16];
1000 extern const uint8_t ff_hevc_diag_scan8x8_x[64];
1001 extern const uint8_t ff_hevc_diag_scan8x8_y[64];
1002
1003 #endif /* AVCODEC_HEVC_H */