]> git.sesse.net Git - ffmpeg/blob - libavcodec/hevcdec.h
c0a138e97aa0acbc04eb48d84e8ea08be273f395
[ffmpeg] / libavcodec / hevcdec.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_HEVCDEC_H
24 #define AVCODEC_HEVCDEC_H
25
26 #include <stdatomic.h>
27
28 #include "libavutil/buffer.h"
29 #include "libavutil/md5.h"
30
31 #include "avcodec.h"
32 #include "bswapdsp.h"
33 #include "cabac.h"
34 #include "get_bits.h"
35 #include "hevcpred.h"
36 #include "h2645_parse.h"
37 #include "hevc.h"
38 #include "hevc_ps.h"
39 #include "hevc_sei.h"
40 #include "hevcdsp.h"
41 #include "internal.h"
42 #include "thread.h"
43 #include "videodsp.h"
44
45 #define SHIFT_CTB_WPP 2
46
47 //TODO: check if this is really the maximum
48 #define MAX_TRANSFORM_DEPTH 5
49
50 #define MAX_TB_SIZE 32
51 #define MAX_QP 51
52 #define DEFAULT_INTRA_TC_OFFSET 2
53
54 #define HEVC_CONTEXTS 199
55
56 #define MRG_MAX_NUM_CANDS     5
57
58 #define L0 0
59 #define L1 1
60
61 #define EPEL_EXTRA_BEFORE 1
62 #define EPEL_EXTRA_AFTER  2
63 #define EPEL_EXTRA        3
64 #define QPEL_EXTRA_BEFORE 3
65 #define QPEL_EXTRA_AFTER  4
66 #define QPEL_EXTRA        7
67
68 #define EDGE_EMU_BUFFER_STRIDE 80
69
70 /**
71  * Value of the luma sample at position (x, y) in the 2D array tab.
72  */
73 #define SAMPLE(tab, x, y) ((tab)[(y) * s->sps->width + (x)])
74 #define SAMPLE_CTB(tab, x, y) ((tab)[(y) * min_cb_width + (x)])
75
76 #define IS_IDR(s) ((s)->nal_unit_type == HEVC_NAL_IDR_W_RADL || (s)->nal_unit_type == HEVC_NAL_IDR_N_LP)
77 #define IS_BLA(s) ((s)->nal_unit_type == HEVC_NAL_BLA_W_RADL || (s)->nal_unit_type == HEVC_NAL_BLA_W_LP || \
78                    (s)->nal_unit_type == HEVC_NAL_BLA_N_LP)
79 #define IS_IRAP(s) ((s)->nal_unit_type >= 16 && (s)->nal_unit_type <= 23)
80
81 enum RPSType {
82     ST_CURR_BEF = 0,
83     ST_CURR_AFT,
84     ST_FOLL,
85     LT_CURR,
86     LT_FOLL,
87     NB_RPS_TYPE,
88 };
89
90 enum SyntaxElement {
91     SAO_MERGE_FLAG = 0,
92     SAO_TYPE_IDX,
93     SAO_EO_CLASS,
94     SAO_BAND_POSITION,
95     SAO_OFFSET_ABS,
96     SAO_OFFSET_SIGN,
97     END_OF_SLICE_FLAG,
98     SPLIT_CODING_UNIT_FLAG,
99     CU_TRANSQUANT_BYPASS_FLAG,
100     SKIP_FLAG,
101     CU_QP_DELTA,
102     PRED_MODE_FLAG,
103     PART_MODE,
104     PCM_FLAG,
105     PREV_INTRA_LUMA_PRED_FLAG,
106     MPM_IDX,
107     REM_INTRA_LUMA_PRED_MODE,
108     INTRA_CHROMA_PRED_MODE,
109     MERGE_FLAG,
110     MERGE_IDX,
111     INTER_PRED_IDC,
112     REF_IDX_L0,
113     REF_IDX_L1,
114     ABS_MVD_GREATER0_FLAG,
115     ABS_MVD_GREATER1_FLAG,
116     ABS_MVD_MINUS2,
117     MVD_SIGN_FLAG,
118     MVP_LX_FLAG,
119     NO_RESIDUAL_DATA_FLAG,
120     SPLIT_TRANSFORM_FLAG,
121     CBF_LUMA,
122     CBF_CB_CR,
123     TRANSFORM_SKIP_FLAG,
124     EXPLICIT_RDPCM_FLAG,
125     EXPLICIT_RDPCM_DIR_FLAG,
126     LAST_SIGNIFICANT_COEFF_X_PREFIX,
127     LAST_SIGNIFICANT_COEFF_Y_PREFIX,
128     LAST_SIGNIFICANT_COEFF_X_SUFFIX,
129     LAST_SIGNIFICANT_COEFF_Y_SUFFIX,
130     SIGNIFICANT_COEFF_GROUP_FLAG,
131     SIGNIFICANT_COEFF_FLAG,
132     COEFF_ABS_LEVEL_GREATER1_FLAG,
133     COEFF_ABS_LEVEL_GREATER2_FLAG,
134     COEFF_ABS_LEVEL_REMAINING,
135     COEFF_SIGN_FLAG,
136     LOG2_RES_SCALE_ABS,
137     RES_SCALE_SIGN_FLAG,
138     CU_CHROMA_QP_OFFSET_FLAG,
139     CU_CHROMA_QP_OFFSET_IDX,
140 };
141
142 enum PartMode {
143     PART_2Nx2N = 0,
144     PART_2NxN  = 1,
145     PART_Nx2N  = 2,
146     PART_NxN   = 3,
147     PART_2NxnU = 4,
148     PART_2NxnD = 5,
149     PART_nLx2N = 6,
150     PART_nRx2N = 7,
151 };
152
153 enum PredMode {
154     MODE_INTER = 0,
155     MODE_INTRA,
156     MODE_SKIP,
157 };
158
159 enum InterPredIdc {
160     PRED_L0 = 0,
161     PRED_L1,
162     PRED_BI,
163 };
164
165 enum PredFlag {
166     PF_INTRA = 0,
167     PF_L0,
168     PF_L1,
169     PF_BI,
170 };
171
172 enum IntraPredMode {
173     INTRA_PLANAR = 0,
174     INTRA_DC,
175     INTRA_ANGULAR_2,
176     INTRA_ANGULAR_3,
177     INTRA_ANGULAR_4,
178     INTRA_ANGULAR_5,
179     INTRA_ANGULAR_6,
180     INTRA_ANGULAR_7,
181     INTRA_ANGULAR_8,
182     INTRA_ANGULAR_9,
183     INTRA_ANGULAR_10,
184     INTRA_ANGULAR_11,
185     INTRA_ANGULAR_12,
186     INTRA_ANGULAR_13,
187     INTRA_ANGULAR_14,
188     INTRA_ANGULAR_15,
189     INTRA_ANGULAR_16,
190     INTRA_ANGULAR_17,
191     INTRA_ANGULAR_18,
192     INTRA_ANGULAR_19,
193     INTRA_ANGULAR_20,
194     INTRA_ANGULAR_21,
195     INTRA_ANGULAR_22,
196     INTRA_ANGULAR_23,
197     INTRA_ANGULAR_24,
198     INTRA_ANGULAR_25,
199     INTRA_ANGULAR_26,
200     INTRA_ANGULAR_27,
201     INTRA_ANGULAR_28,
202     INTRA_ANGULAR_29,
203     INTRA_ANGULAR_30,
204     INTRA_ANGULAR_31,
205     INTRA_ANGULAR_32,
206     INTRA_ANGULAR_33,
207     INTRA_ANGULAR_34,
208 };
209
210 enum SAOType {
211     SAO_NOT_APPLIED = 0,
212     SAO_BAND,
213     SAO_EDGE,
214     SAO_APPLIED
215 };
216
217 enum SAOEOClass {
218     SAO_EO_HORIZ = 0,
219     SAO_EO_VERT,
220     SAO_EO_135D,
221     SAO_EO_45D,
222 };
223
224 enum ScanType {
225     SCAN_DIAG = 0,
226     SCAN_HORIZ,
227     SCAN_VERT,
228 };
229
230 typedef struct LongTermRPS {
231     int     poc[32];
232     uint8_t poc_msb_present[32];
233     uint8_t used[32];
234     uint8_t nb_refs;
235 } LongTermRPS;
236
237 typedef struct RefPicList {
238     struct HEVCFrame *ref[HEVC_MAX_REFS];
239     int list[HEVC_MAX_REFS];
240     int isLongTerm[HEVC_MAX_REFS];
241     int nb_refs;
242 } RefPicList;
243
244 typedef struct RefPicListTab {
245     RefPicList refPicList[2];
246 } RefPicListTab;
247
248 typedef struct SliceHeader {
249     unsigned int pps_id;
250
251     ///< address (in raster order) of the first block in the current slice segment
252     unsigned int   slice_segment_addr;
253     ///< address (in raster order) of the first block in the current slice
254     unsigned int   slice_addr;
255
256     enum HEVCSliceType slice_type;
257
258     int pic_order_cnt_lsb;
259
260     uint8_t first_slice_in_pic_flag;
261     uint8_t dependent_slice_segment_flag;
262     uint8_t pic_output_flag;
263     uint8_t colour_plane_id;
264
265     ///< RPS coded in the slice header itself is stored here
266     int short_term_ref_pic_set_sps_flag;
267     int short_term_ref_pic_set_size;
268     ShortTermRPS slice_rps;
269     const ShortTermRPS *short_term_rps;
270     int long_term_ref_pic_set_size;
271     LongTermRPS long_term_rps;
272     unsigned int list_entry_lx[2][32];
273
274     uint8_t rpl_modification_flag[2];
275     uint8_t no_output_of_prior_pics_flag;
276     uint8_t slice_temporal_mvp_enabled_flag;
277
278     unsigned int nb_refs[2];
279
280     uint8_t slice_sample_adaptive_offset_flag[3];
281     uint8_t mvd_l1_zero_flag;
282
283     uint8_t cabac_init_flag;
284     uint8_t disable_deblocking_filter_flag; ///< slice_header_disable_deblocking_filter_flag
285     uint8_t slice_loop_filter_across_slices_enabled_flag;
286     uint8_t collocated_list;
287
288     unsigned int collocated_ref_idx;
289
290     int slice_qp_delta;
291     int slice_cb_qp_offset;
292     int slice_cr_qp_offset;
293
294     uint8_t cu_chroma_qp_offset_enabled_flag;
295
296     int beta_offset;    ///< beta_offset_div2 * 2
297     int tc_offset;      ///< tc_offset_div2 * 2
298
299     unsigned int max_num_merge_cand; ///< 5 - 5_minus_max_num_merge_cand
300
301     unsigned *entry_point_offset;
302     int * offset;
303     int * size;
304     int num_entry_point_offsets;
305
306     int8_t slice_qp;
307
308     uint8_t luma_log2_weight_denom;
309     int16_t chroma_log2_weight_denom;
310
311     int16_t luma_weight_l0[16];
312     int16_t chroma_weight_l0[16][2];
313     int16_t chroma_weight_l1[16][2];
314     int16_t luma_weight_l1[16];
315
316     int16_t luma_offset_l0[16];
317     int16_t chroma_offset_l0[16][2];
318
319     int16_t luma_offset_l1[16];
320     int16_t chroma_offset_l1[16][2];
321
322     int slice_ctb_addr_rs;
323 } SliceHeader;
324
325 typedef struct CodingUnit {
326     int x;
327     int y;
328
329     enum PredMode pred_mode;    ///< PredMode
330     enum PartMode part_mode;    ///< PartMode
331
332     // Inferred parameters
333     uint8_t intra_split_flag;   ///< IntraSplitFlag
334     uint8_t max_trafo_depth;    ///< MaxTrafoDepth
335     uint8_t cu_transquant_bypass_flag;
336 } CodingUnit;
337
338 typedef struct Mv {
339     int16_t x;  ///< horizontal component of motion vector
340     int16_t y;  ///< vertical component of motion vector
341 } Mv;
342
343 typedef struct MvField {
344     DECLARE_ALIGNED(4, Mv, mv)[2];
345     int8_t ref_idx[2];
346     int8_t pred_flag;
347 } MvField;
348
349 typedef struct NeighbourAvailable {
350     int cand_bottom_left;
351     int cand_left;
352     int cand_up;
353     int cand_up_left;
354     int cand_up_right;
355     int cand_up_right_sap;
356 } NeighbourAvailable;
357
358 typedef struct PredictionUnit {
359     int mpm_idx;
360     int rem_intra_luma_pred_mode;
361     uint8_t intra_pred_mode[4];
362     Mv mvd;
363     uint8_t merge_flag;
364     uint8_t intra_pred_mode_c[4];
365     uint8_t chroma_mode_c[4];
366 } PredictionUnit;
367
368 typedef struct TransformUnit {
369     int cu_qp_delta;
370
371     int res_scale_val;
372
373     // Inferred parameters;
374     int intra_pred_mode;
375     int intra_pred_mode_c;
376     int chroma_mode_c;
377     uint8_t is_cu_qp_delta_coded;
378     uint8_t is_cu_chroma_qp_offset_coded;
379     int8_t  cu_qp_offset_cb;
380     int8_t  cu_qp_offset_cr;
381     uint8_t cross_pf;
382 } TransformUnit;
383
384 typedef struct DBParams {
385     int beta_offset;
386     int tc_offset;
387 } DBParams;
388
389 #define HEVC_FRAME_FLAG_OUTPUT    (1 << 0)
390 #define HEVC_FRAME_FLAG_SHORT_REF (1 << 1)
391 #define HEVC_FRAME_FLAG_LONG_REF  (1 << 2)
392 #define HEVC_FRAME_FLAG_BUMPING   (1 << 3)
393
394 typedef struct HEVCFrame {
395     AVFrame *frame;
396     ThreadFrame tf;
397     MvField *tab_mvf;
398     RefPicList *refPicList;
399     RefPicListTab **rpl_tab;
400     int ctb_count;
401     int poc;
402     struct HEVCFrame *collocated_ref;
403
404     AVBufferRef *tab_mvf_buf;
405     AVBufferRef *rpl_tab_buf;
406     AVBufferRef *rpl_buf;
407
408     AVBufferRef *hwaccel_priv_buf;
409     void *hwaccel_picture_private;
410
411     /**
412      * A sequence counter, so that old frames are output first
413      * after a POC reset
414      */
415     uint16_t sequence;
416
417     /**
418      * A combination of HEVC_FRAME_FLAG_*
419      */
420     uint8_t flags;
421 } HEVCFrame;
422
423 typedef struct HEVCLocalContext {
424     uint8_t cabac_state[HEVC_CONTEXTS];
425
426     uint8_t stat_coeff[4];
427
428     uint8_t first_qp_group;
429
430     GetBitContext gb;
431     CABACContext cc;
432
433     int8_t qp_y;
434     int8_t curr_qp_y;
435
436     int qPy_pred;
437
438     TransformUnit tu;
439
440     uint8_t ctb_left_flag;
441     uint8_t ctb_up_flag;
442     uint8_t ctb_up_right_flag;
443     uint8_t ctb_up_left_flag;
444     int     end_of_tiles_x;
445     int     end_of_tiles_y;
446     /* +7 is for subpixel interpolation, *2 for high bit depths */
447     DECLARE_ALIGNED(32, uint8_t, edge_emu_buffer)[(MAX_PB_SIZE + 7) * EDGE_EMU_BUFFER_STRIDE * 2];
448     /* The extended size between the new edge emu buffer is abused by SAO */
449     DECLARE_ALIGNED(32, uint8_t, edge_emu_buffer2)[(MAX_PB_SIZE + 7) * EDGE_EMU_BUFFER_STRIDE * 2];
450     DECLARE_ALIGNED(32, int16_t, tmp)[MAX_PB_SIZE * MAX_PB_SIZE];
451
452     int ct_depth;
453     CodingUnit cu;
454     PredictionUnit pu;
455     NeighbourAvailable na;
456
457 #define BOUNDARY_LEFT_SLICE     (1 << 0)
458 #define BOUNDARY_LEFT_TILE      (1 << 1)
459 #define BOUNDARY_UPPER_SLICE    (1 << 2)
460 #define BOUNDARY_UPPER_TILE     (1 << 3)
461     /* properties of the boundary of the current CTB for the purposes
462      * of the deblocking filter */
463     int boundary_flags;
464 } HEVCLocalContext;
465
466 typedef struct HEVCContext {
467     const AVClass *c;  // needed by private avoptions
468     AVCodecContext *avctx;
469
470     struct HEVCContext  **sList;
471
472     HEVCLocalContext    **HEVClcList;
473     HEVCLocalContext    *HEVClc;
474
475     uint8_t             threads_type;
476     uint8_t             threads_number;
477
478     int                 width;
479     int                 height;
480
481     uint8_t *cabac_state;
482
483     /** 1 if the independent slice segment header was successfully parsed */
484     uint8_t slice_initialized;
485
486     AVFrame *frame;
487     AVFrame *output_frame;
488     uint8_t *sao_pixel_buffer_h[3];
489     uint8_t *sao_pixel_buffer_v[3];
490
491     HEVCParamSets ps;
492     HEVCSEI sei;
493     struct AVMD5 *md5_ctx;
494
495     AVBufferPool *tab_mvf_pool;
496     AVBufferPool *rpl_tab_pool;
497
498     ///< candidate references for the current frame
499     RefPicList rps[5];
500
501     SliceHeader sh;
502     SAOParams *sao;
503     DBParams *deblock;
504     enum HEVCNALUnitType nal_unit_type;
505     int temporal_id;  ///< temporal_id_plus1 - 1
506     HEVCFrame *ref;
507     HEVCFrame DPB[32];
508     int poc;
509     int pocTid0;
510     int slice_idx; ///< number of the slice being currently decoded
511     int eos;       ///< current packet contains an EOS/EOB NAL
512     int last_eos;  ///< last packet contains an EOS/EOB NAL
513     int max_ra;
514     int bs_width;
515     int bs_height;
516     int overlap;
517
518     int is_decoded;
519     int no_rasl_output_flag;
520
521     HEVCPredContext hpc;
522     HEVCDSPContext hevcdsp;
523     VideoDSPContext vdsp;
524     BswapDSPContext bdsp;
525     int8_t *qp_y_tab;
526     uint8_t *horizontal_bs;
527     uint8_t *vertical_bs;
528
529     int32_t *tab_slice_address;
530
531     //  CU
532     uint8_t *skip_flag;
533     uint8_t *tab_ct_depth;
534     // PU
535     uint8_t *tab_ipm;
536
537     uint8_t *cbf_luma; // cbf_luma of colocated TU
538     uint8_t *is_pcm;
539
540     // CTB-level flags affecting loop filter operation
541     uint8_t *filter_slice_edges;
542
543     /** used on BE to byteswap the lines for checksumming */
544     uint8_t *checksum_buf;
545     int      checksum_buf_size;
546
547     /**
548      * Sequence counters for decoded and output frames, so that old
549      * frames are output first after a POC reset
550      */
551     uint16_t seq_decode;
552     uint16_t seq_output;
553
554     int enable_parallel_tiles;
555     atomic_int wpp_err;
556
557     const uint8_t *data;
558
559     H2645Packet pkt;
560     // type of the first VCL NAL of the current frame
561     enum HEVCNALUnitType first_nal_type;
562
563     uint8_t context_initialized;
564     int is_nalff;           ///< this flag is != 0 if bitstream is encapsulated
565                             ///< as a format defined in 14496-15
566     int apply_defdispwin;
567
568     int nal_length_size;    ///< Number of bytes used for nal length (1, 2 or 4)
569     int nuh_layer_id;
570 } HEVCContext;
571
572 /**
573  * Mark all frames in DPB as unused for reference.
574  */
575 void ff_hevc_clear_refs(HEVCContext *s);
576
577 /**
578  * Drop all frames currently in DPB.
579  */
580 void ff_hevc_flush_dpb(HEVCContext *s);
581
582 RefPicList *ff_hevc_get_ref_list(HEVCContext *s, HEVCFrame *frame,
583                                  int x0, int y0);
584
585 /**
586  * Construct the reference picture sets for the current frame.
587  */
588 int ff_hevc_frame_rps(HEVCContext *s);
589
590 /**
591  * Construct the reference picture list(s) for the current slice.
592  */
593 int ff_hevc_slice_rpl(HEVCContext *s);
594
595 void ff_hevc_save_states(HEVCContext *s, int ctb_addr_ts);
596 int ff_hevc_cabac_init(HEVCContext *s, int ctb_addr_ts);
597 int ff_hevc_sao_merge_flag_decode(HEVCContext *s);
598 int ff_hevc_sao_type_idx_decode(HEVCContext *s);
599 int ff_hevc_sao_band_position_decode(HEVCContext *s);
600 int ff_hevc_sao_offset_abs_decode(HEVCContext *s);
601 int ff_hevc_sao_offset_sign_decode(HEVCContext *s);
602 int ff_hevc_sao_eo_class_decode(HEVCContext *s);
603 int ff_hevc_end_of_slice_flag_decode(HEVCContext *s);
604 int ff_hevc_cu_transquant_bypass_flag_decode(HEVCContext *s);
605 int ff_hevc_skip_flag_decode(HEVCContext *s, int x0, int y0,
606                              int x_cb, int y_cb);
607 int ff_hevc_pred_mode_decode(HEVCContext *s);
608 int ff_hevc_split_coding_unit_flag_decode(HEVCContext *s, int ct_depth,
609                                           int x0, int y0);
610 int ff_hevc_part_mode_decode(HEVCContext *s, int log2_cb_size);
611 int ff_hevc_pcm_flag_decode(HEVCContext *s);
612 int ff_hevc_prev_intra_luma_pred_flag_decode(HEVCContext *s);
613 int ff_hevc_mpm_idx_decode(HEVCContext *s);
614 int ff_hevc_rem_intra_luma_pred_mode_decode(HEVCContext *s);
615 int ff_hevc_intra_chroma_pred_mode_decode(HEVCContext *s);
616 int ff_hevc_merge_idx_decode(HEVCContext *s);
617 int ff_hevc_merge_flag_decode(HEVCContext *s);
618 int ff_hevc_inter_pred_idc_decode(HEVCContext *s, int nPbW, int nPbH);
619 int ff_hevc_ref_idx_lx_decode(HEVCContext *s, int num_ref_idx_lx);
620 int ff_hevc_mvp_lx_flag_decode(HEVCContext *s);
621 int ff_hevc_no_residual_syntax_flag_decode(HEVCContext *s);
622 int ff_hevc_split_transform_flag_decode(HEVCContext *s, int log2_trafo_size);
623 int ff_hevc_cbf_cb_cr_decode(HEVCContext *s, int trafo_depth);
624 int ff_hevc_cbf_luma_decode(HEVCContext *s, int trafo_depth);
625 int ff_hevc_log2_res_scale_abs(HEVCContext *s, int idx);
626 int ff_hevc_res_scale_sign_flag(HEVCContext *s, int idx);
627
628 /**
629  * Get the number of candidate references for the current frame.
630  */
631 int ff_hevc_frame_nb_refs(const HEVCContext *s);
632
633 int ff_hevc_set_new_ref(HEVCContext *s, AVFrame **frame, int poc);
634
635 static av_always_inline int ff_hevc_nal_is_nonref(enum HEVCNALUnitType type)
636 {
637     switch (type) {
638     case HEVC_NAL_TRAIL_N:
639     case HEVC_NAL_TSA_N:
640     case HEVC_NAL_STSA_N:
641     case HEVC_NAL_RADL_N:
642     case HEVC_NAL_RASL_N:
643     case HEVC_NAL_VCL_N10:
644     case HEVC_NAL_VCL_N12:
645     case HEVC_NAL_VCL_N14:
646         return 1;
647     default: break;
648     }
649     return 0;
650 }
651
652 /**
653  * Find next frame in output order and put a reference to it in frame.
654  * @return 1 if a frame was output, 0 otherwise
655  */
656 int ff_hevc_output_frame(HEVCContext *s, AVFrame *frame, int flush);
657
658 void ff_hevc_bump_frame(HEVCContext *s);
659
660 void ff_hevc_unref_frame(HEVCContext *s, HEVCFrame *frame, int flags);
661
662 void ff_hevc_set_neighbour_available(HEVCContext *s, int x0, int y0,
663                                      int nPbW, int nPbH);
664 void ff_hevc_luma_mv_merge_mode(HEVCContext *s, int x0, int y0,
665                                 int nPbW, int nPbH, int log2_cb_size,
666                                 int part_idx, int merge_idx, MvField *mv);
667 void ff_hevc_luma_mv_mvp_mode(HEVCContext *s, int x0, int y0,
668                               int nPbW, int nPbH, int log2_cb_size,
669                               int part_idx, int merge_idx,
670                               MvField *mv, int mvp_lx_flag, int LX);
671 void ff_hevc_set_qPy(HEVCContext *s, int xBase, int yBase,
672                      int log2_cb_size);
673 void ff_hevc_deblocking_boundary_strengths(HEVCContext *s, int x0, int y0,
674                                            int log2_trafo_size);
675 int ff_hevc_cu_qp_delta_sign_flag(HEVCContext *s);
676 int ff_hevc_cu_qp_delta_abs(HEVCContext *s);
677 int ff_hevc_cu_chroma_qp_offset_flag(HEVCContext *s);
678 int ff_hevc_cu_chroma_qp_offset_idx(HEVCContext *s);
679 void ff_hevc_hls_filter(HEVCContext *s, int x, int y, int ctb_size);
680 void ff_hevc_hls_filters(HEVCContext *s, int x_ctb, int y_ctb, int ctb_size);
681 void ff_hevc_hls_residual_coding(HEVCContext *s, int x0, int y0,
682                                  int log2_trafo_size, enum ScanType scan_idx,
683                                  int c_idx);
684
685 void ff_hevc_hls_mvd_coding(HEVCContext *s, int x0, int y0, int log2_cb_size);
686
687 extern const uint8_t ff_hevc_qpel_extra_before[4];
688 extern const uint8_t ff_hevc_qpel_extra_after[4];
689 extern const uint8_t ff_hevc_qpel_extra[4];
690
691 #endif /* AVCODEC_HEVCDEC_H */