2 * Chinese AVS video (AVS1-P2, JiZhun profile) decoder.
3 * Copyright (c) 2006 Stefan Gehrer <stefan.gehrer@gmx.de>
5 * This file is part of FFmpeg.
7 * FFmpeg is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * FFmpeg is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with FFmpeg; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
22 #ifndef AVCODEC_CAVS_H
23 #define AVCODEC_CAVS_H
26 #include "mpegvideo.h"
28 #define SLICE_MAX_START_CODE 0x000001af
29 #define EXT_START_CODE 0x000001b5
30 #define USER_START_CODE 0x000001b2
31 #define CAVS_START_CODE 0x000001b0
32 #define PIC_I_START_CODE 0x000001b3
33 #define PIC_PB_START_CODE 0x000001b6
43 #define ESCAPE_CODE 59
54 #define MV_BWD_OFFS 12
79 enum cavs_intra_luma
{
90 enum cavs_intra_chroma
{
127 MV_BWD_D3
= MV_BWD_OFFS
,
134 MV_BWD_A3
= MV_BWD_OFFS
+8,
139 DECLARE_ALIGNED_8(typedef, struct) {
148 int8_t level_add
[27];
156 Picture picture
; ///< currently decoded frame
157 Picture DPB
[2]; ///< reference frames
158 int dist
[2]; ///< temporal distances from current frame to ref frames
161 int mb_width
, mb_height
;
165 int skip_mode_flag
; ///< select between skip_count or one skip_flag per MB
166 int loop_filter_disable
;
167 int alpha_offset
, beta_offset
;
169 int mbx
, mby
, mbidx
; ///< macroblock coordinates
170 int flags
; ///< availability flags of neighbouring macroblocks
171 int stc
; ///< last start code
172 uint8_t *cy
, *cu
, *cv
; ///< current MB sample pointers
176 /** mv motion vector cache
181 X are the vectors in the current macroblock (5,6,9,10)
182 A is the macroblock to the left (4,8)
183 B is the macroblock to the top (1,2)
184 C is the macroblock to the top-right (3)
185 D is the macroblock to the top-left (0)
187 the same is repeated for backward motion vectors */
188 cavs_vector mv
[2*4*3];
189 cavs_vector
*top_mv
[2];
192 /** luma pred mode cache
196 int pred_mode_Y
[3*3];
198 int l_stride
, c_stride
;
205 /** intra prediction is done with un-deblocked samples
206 they are saved here before deblocking the MB */
207 uint8_t *top_border_y
, *top_border_u
, *top_border_v
;
208 uint8_t left_border_y
[26], left_border_u
[10], left_border_v
[10];
209 uint8_t intern_border_y
[26];
210 uint8_t topleft_border_y
, topleft_border_u
, topleft_border_v
;
212 void (*intra_pred_l
[8])(uint8_t *d
,uint8_t *top
,uint8_t *left
,int stride
);
213 void (*intra_pred_c
[7])(uint8_t *d
,uint8_t *top
,uint8_t *left
,int stride
);
214 uint8_t *col_type_base
;
216 /* scaling factors for MV prediction */
217 int sym_factor
; ///< for scaling in symmetrical B block
218 int direct_den
[2]; ///< for scaling in direct B block
219 int scale_den
[2]; ///< for scaling neighbouring MVs
225 extern const uint8_t ff_cavs_dequant_shift
[64];
226 extern const uint16_t ff_cavs_dequant_mul
[64];
227 extern const struct dec_2dvlc ff_cavs_intra_dec
[7];
228 extern const struct dec_2dvlc ff_cavs_inter_dec
[7];
229 extern const struct dec_2dvlc ff_cavs_chroma_dec
[5];
230 extern const uint8_t ff_cavs_chroma_qp
[64];
231 extern const uint8_t ff_cavs_scan3x3
[4];
232 extern const uint8_t ff_cavs_partition_flags
[30];
233 extern const int_fast8_t ff_left_modifier_l
[8];
234 extern const int_fast8_t ff_top_modifier_l
[8];
235 extern const int_fast8_t ff_left_modifier_c
[7];
236 extern const int_fast8_t ff_top_modifier_c
[7];
237 extern const cavs_vector ff_cavs_intra_mv
;
238 extern const cavs_vector ff_cavs_un_mv
;
239 extern const cavs_vector ff_cavs_dir_mv
;
241 static inline void modify_pred(const int_fast8_t *mod_table
, int *mode
) {
242 *mode
= mod_table
[*mode
];
244 av_log(NULL
, AV_LOG_ERROR
, "Illegal intra prediction mode\n");
249 static inline void set_intra_mode_default(AVSContext
*h
) {
250 h
->pred_mode_Y
[3] = h
->pred_mode_Y
[6] = INTRA_L_LP
;
251 h
->top_pred_Y
[h
->mbx
*2+0] = h
->top_pred_Y
[h
->mbx
*2+1] = INTRA_L_LP
;
254 static inline void set_mvs(cavs_vector
*mv
, enum cavs_block size
) {
257 mv
[MV_STRIDE
] = mv
[0];
258 mv
[MV_STRIDE
+1] = mv
[0];
263 mv
[MV_STRIDE
] = mv
[0];
268 static inline void set_mv_intra(AVSContext
*h
) {
269 h
->mv
[MV_FWD_X0
] = ff_cavs_intra_mv
;
270 set_mvs(&h
->mv
[MV_FWD_X0
], BLK_16X16
);
271 h
->mv
[MV_BWD_X0
] = ff_cavs_intra_mv
;
272 set_mvs(&h
->mv
[MV_BWD_X0
], BLK_16X16
);
273 if(h
->pic_type
!= FF_B_TYPE
)
274 h
->col_type_base
[h
->mbidx
] = I_8X8
;
277 static inline int dequant(AVSContext
*h
, DCTELEM
*level_buf
, uint8_t *run_buf
,
278 DCTELEM
*dst
, int mul
, int shift
, int coeff_num
) {
279 int round
= 1 << (shift
- 1);
281 const uint8_t *scantab
= h
->scantable
.permutated
;
283 /* inverse scan and dequantization */
284 while(--coeff_num
>= 0){
285 pos
+= run_buf
[coeff_num
];
287 av_log(h
->s
.avctx
, AV_LOG_ERROR
,
288 "position out of block bounds at pic %d MB(%d,%d)\n",
289 h
->picture
.poc
, h
->mbx
, h
->mby
);
292 dst
[scantab
[pos
]] = (level_buf
[coeff_num
]*mul
+ round
) >> shift
;
297 void ff_cavs_filter(AVSContext
*h
, enum cavs_mb mb_type
);
298 void ff_cavs_load_intra_pred_luma(AVSContext
*h
, uint8_t *top
, uint8_t **left
,
300 void ff_cavs_load_intra_pred_chroma(AVSContext
*h
);
301 void ff_cavs_modify_mb_i(AVSContext
*h
, int *pred_mode_uv
);
302 void ff_cavs_inter(AVSContext
*h
, enum cavs_mb mb_type
);
303 void ff_cavs_mv(AVSContext
*h
, enum cavs_mv_loc nP
, enum cavs_mv_loc nC
,
304 enum cavs_mv_pred mode
, enum cavs_block size
, int ref
);
305 void ff_cavs_init_mb(AVSContext
*h
);
306 int ff_cavs_next_mb(AVSContext
*h
);
307 void ff_cavs_init_pic(AVSContext
*h
);
308 void ff_cavs_init_top_lines(AVSContext
*h
);
309 int ff_cavs_init(AVCodecContext
*avctx
);
310 int ff_cavs_end (AVCodecContext
*avctx
);
312 #endif /* AVCODEC_CAVS_H */