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 Libav.
7 * Libav 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 * Libav 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 Libav; 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
25 #include "bitstream.h"
28 #include "h264chroma.h"
32 #define SLICE_MAX_START_CODE 0x000001af
33 #define EXT_START_CODE 0x000001b5
34 #define USER_START_CODE 0x000001b2
35 #define CAVS_START_CODE 0x000001b0
36 #define PIC_I_START_CODE 0x000001b3
37 #define PIC_PB_START_CODE 0x000001b6
47 #define ESCAPE_CODE 59
58 #define MV_BWD_OFFS 12
83 enum cavs_intra_luma
{
94 enum cavs_intra_chroma
{
131 MV_BWD_D3
= MV_BWD_OFFS
,
138 MV_BWD_A3
= MV_BWD_OFFS
+8,
143 DECLARE_ALIGNED(8, typedef, struct) {
152 int8_t level_add
[27];
158 typedef struct AVSFrame
{
163 typedef struct AVSContext
{
164 AVCodecContext
*avctx
;
165 BlockDSPContext bdsp
;
166 H264ChromaContext h264chroma
;
168 VideoDSPContext vdsp
;
171 AVSFrame cur
; ///< currently decoded frame
172 AVSFrame DPB
[2]; ///< reference frames
173 int dist
[2]; ///< temporal distances from current frame to ref frames
177 int mb_width
, mb_height
;
179 int stream_revision
; ///<0 for samples from 2006, 1 for rm52j encoder
182 int skip_mode_flag
; ///< select between skip_count or one skip_flag per MB
183 int loop_filter_disable
;
184 int alpha_offset
, beta_offset
;
186 int mbx
, mby
, mbidx
; ///< macroblock coordinates
187 int flags
; ///< availability flags of neighbouring macroblocks
188 int stc
; ///< last start code
189 uint8_t *cy
, *cu
, *cv
; ///< current MB sample pointers
193 /** mv motion vector cache
198 X are the vectors in the current macroblock (5,6,9,10)
199 A is the macroblock to the left (4,8)
200 B is the macroblock to the top (1,2)
201 C is the macroblock to the top-right (3)
202 D is the macroblock to the top-left (0)
204 the same is repeated for backward motion vectors */
205 cavs_vector mv
[2*4*3];
206 cavs_vector
*top_mv
[2];
209 /** luma pred mode cache
213 int pred_mode_Y
[3*3];
215 ptrdiff_t l_stride
, c_stride
;
222 /** intra prediction is done with un-deblocked samples
223 they are saved here before deblocking the MB */
224 uint8_t *top_border_y
, *top_border_u
, *top_border_v
;
225 uint8_t left_border_y
[26], left_border_u
[10], left_border_v
[10];
226 uint8_t intern_border_y
[26];
227 uint8_t topleft_border_y
, topleft_border_u
, topleft_border_v
;
229 void (*intra_pred_l
[8])(uint8_t *d
, uint8_t *top
, uint8_t *left
, ptrdiff_t stride
);
230 void (*intra_pred_c
[7])(uint8_t *d
, uint8_t *top
, uint8_t *left
, ptrdiff_t stride
);
231 uint8_t *col_type_base
;
233 /* scaling factors for MV prediction */
234 int sym_factor
; ///< for scaling in symmetrical B block
235 int direct_den
[2]; ///< for scaling in direct B block
236 int scale_den
[2]; ///< for scaling neighbouring MVs
238 uint8_t *edge_emu_buffer
;
244 extern const uint8_t ff_cavs_partition_flags
[30];
245 extern const cavs_vector ff_cavs_intra_mv
;
246 extern const cavs_vector ff_cavs_dir_mv
;
248 static inline void set_mvs(cavs_vector
*mv
, enum cavs_block size
) {
251 mv
[MV_STRIDE
] = mv
[0];
252 mv
[MV_STRIDE
+1] = mv
[0];
257 mv
[MV_STRIDE
] = mv
[0];
262 void ff_cavs_filter(AVSContext
*h
, enum cavs_mb mb_type
);
263 void ff_cavs_load_intra_pred_luma(AVSContext
*h
, uint8_t *top
, uint8_t **left
,
265 void ff_cavs_load_intra_pred_chroma(AVSContext
*h
);
266 void ff_cavs_modify_mb_i(AVSContext
*h
, int *pred_mode_uv
);
267 void ff_cavs_inter(AVSContext
*h
, enum cavs_mb mb_type
);
268 void ff_cavs_mv(AVSContext
*h
, enum cavs_mv_loc nP
, enum cavs_mv_loc nC
,
269 enum cavs_mv_pred mode
, enum cavs_block size
, int ref
);
270 void ff_cavs_init_mb(AVSContext
*h
);
271 int ff_cavs_next_mb(AVSContext
*h
);
272 void ff_cavs_init_pic(AVSContext
*h
);
273 void ff_cavs_init_top_lines(AVSContext
*h
);
274 int ff_cavs_init(AVCodecContext
*avctx
);
275 int ff_cavs_end (AVCodecContext
*avctx
);
277 #endif /* AVCODEC_CAVS_H */