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
24 * Chinese AVS video (AVS1-P2, JiZhun profile) decoder
25 * @author Stefan Gehrer <stefan.gehrer@gmx.de>
29 #include "bitstream.h"
33 static const uint8_t mv_scan
[4] = {
38 static const uint8_t cbp_tab
[64][2] = {
39 {63, 0},{15,15},{31,63},{47,31},{ 0,16},{14,32},{13,47},{11,13},
40 { 7,14},{ 5,11},{10,12},{ 8, 5},{12,10},{61, 7},{ 4,48},{55, 3},
41 { 1, 2},{ 2, 8},{59, 4},{ 3, 1},{62,61},{ 9,55},{ 6,59},{29,62},
42 {45,29},{51,27},{23,23},{39,19},{27,30},{46,28},{53, 9},{30, 6},
43 {43,60},{37,21},{60,44},{16,26},{21,51},{28,35},{19,18},{35,20},
44 {42,24},{26,53},{44,17},{32,37},{58,39},{24,45},{20,58},{17,43},
45 {18,42},{48,46},{22,36},{33,33},{25,34},{49,40},{40,52},{36,49},
46 {34,50},{50,56},{52,25},{54,22},{41,54},{56,57},{38,41},{57,38}
49 /*****************************************************************************
51 * motion vector prediction
53 ****************************************************************************/
55 static inline void store_mvs(AVSContext
*h
) {
56 h
->col_mv
[(h
->mby
*h
->mb_width
+ h
->mbx
)*4 + 0] = h
->mv
[MV_FWD_X0
];
57 h
->col_mv
[(h
->mby
*h
->mb_width
+ h
->mbx
)*4 + 1] = h
->mv
[MV_FWD_X1
];
58 h
->col_mv
[(h
->mby
*h
->mb_width
+ h
->mbx
)*4 + 2] = h
->mv
[MV_FWD_X2
];
59 h
->col_mv
[(h
->mby
*h
->mb_width
+ h
->mbx
)*4 + 3] = h
->mv
[MV_FWD_X3
];
62 static inline void mv_pred_direct(AVSContext
*h
, vector_t
*pmv_fw
,
64 vector_t
*pmv_bw
= pmv_fw
+ MV_BWD_OFFS
;
65 int den
= h
->direct_den
[col_mv
->ref
];
66 int m
= col_mv
->x
>> 31;
68 pmv_fw
->dist
= h
->dist
[1];
69 pmv_bw
->dist
= h
->dist
[0];
72 /* scale the co-located motion vector according to its temporal span */
73 pmv_fw
->x
= (((den
+(den
*col_mv
->x
*pmv_fw
->dist
^m
)-m
-1)>>14)^m
)-m
;
74 pmv_bw
->x
= m
-(((den
+(den
*col_mv
->x
*pmv_bw
->dist
^m
)-m
-1)>>14)^m
);
76 pmv_fw
->y
= (((den
+(den
*col_mv
->y
*pmv_fw
->dist
^m
)-m
-1)>>14)^m
)-m
;
77 pmv_bw
->y
= m
-(((den
+(den
*col_mv
->y
*pmv_bw
->dist
^m
)-m
-1)>>14)^m
);
80 static inline void mv_pred_sym(AVSContext
*h
, vector_t
*src
, enum block_t size
) {
81 vector_t
*dst
= src
+ MV_BWD_OFFS
;
83 /* backward mv is the scaled and negated forward mv */
84 dst
->x
= -((src
->x
* h
->sym_factor
+ 256) >> 9);
85 dst
->y
= -((src
->y
* h
->sym_factor
+ 256) >> 9);
87 dst
->dist
= h
->dist
[0];
91 /*****************************************************************************
93 * residual data decoding
95 ****************************************************************************/
97 /** kth-order exponential golomb code */
98 static inline int get_ue_code(GetBitContext
*gb
, int order
) {
100 int ret
= get_ue_golomb(gb
) << order
;
101 return ret
+ get_bits(gb
,order
);
103 return get_ue_golomb(gb
);
107 * decode coefficients from one 8x8 block, dequantize, inverse transform
108 * and add them to sample block
109 * @param r pointer to 2D VLC table
110 * @param esc_golomb_order escape codes are k-golomb with this order k
111 * @param qp quantizer
112 * @param dst location of sample block
113 * @param stride line stride in frame buffer
115 static int decode_residual_block(AVSContext
*h
, GetBitContext
*gb
,
116 const dec_2dvlc_t
*r
, int esc_golomb_order
,
117 int qp
, uint8_t *dst
, int stride
) {
118 int i
, level_code
, esc_code
, level
, run
, mask
;
119 DCTELEM level_buf
[65];
121 DCTELEM
*block
= h
->block
;
124 level_code
= get_ue_code(gb
,r
->golomb_order
);
125 if(level_code
>= ESCAPE_CODE
) {
126 run
= ((level_code
- ESCAPE_CODE
) >> 1) + 1;
127 esc_code
= get_ue_code(gb
,esc_golomb_order
);
128 level
= esc_code
+ (run
> r
->max_run
? 1 : r
->level_add
[run
]);
129 while(level
> r
->inc_limit
)
131 mask
= -(level_code
& 1);
132 level
= (level
^mask
) - mask
;
134 level
= r
->rltab
[level_code
][0];
135 if(!level
) //end of block signal
137 run
= r
->rltab
[level_code
][1];
138 r
+= r
->rltab
[level_code
][2];
140 level_buf
[i
] = level
;
143 if(dequant(h
,level_buf
, run_buf
, block
, ff_cavs_dequant_mul
[qp
],
144 ff_cavs_dequant_shift
[qp
], i
))
146 h
->s
.dsp
.cavs_idct8_add(dst
,block
,stride
);
151 static inline void decode_residual_chroma(AVSContext
*h
) {
153 decode_residual_block(h
,&h
->s
.gb
,ff_cavs_chroma_dec
,0,
154 ff_cavs_chroma_qp
[h
->qp
],h
->cu
,h
->c_stride
);
156 decode_residual_block(h
,&h
->s
.gb
,ff_cavs_chroma_dec
,0,
157 ff_cavs_chroma_qp
[h
->qp
],h
->cv
,h
->c_stride
);
160 static inline int decode_residual_inter(AVSContext
*h
) {
163 /* get coded block pattern */
164 int cbp
= get_ue_golomb(&h
->s
.gb
);
166 av_log(h
->s
.avctx
, AV_LOG_ERROR
, "illegal inter cbp\n");
169 h
->cbp
= cbp_tab
[cbp
][1];
172 if(h
->cbp
&& !h
->qp_fixed
)
173 h
->qp
= (h
->qp
+ get_se_golomb(&h
->s
.gb
)) & 63;
174 for(block
=0;block
<4;block
++)
175 if(h
->cbp
& (1<<block
))
176 decode_residual_block(h
,&h
->s
.gb
,ff_cavs_inter_dec
,0,h
->qp
,
177 h
->cy
+ h
->luma_scan
[block
], h
->l_stride
);
178 decode_residual_chroma(h
);
183 /*****************************************************************************
187 ****************************************************************************/
189 static int decode_mb_i(AVSContext
*h
, int cbp_code
) {
190 GetBitContext
*gb
= &h
->s
.gb
;
191 int block
, pred_mode_uv
;
193 uint8_t *left
= NULL
;
198 /* get intra prediction modes from stream */
199 for(block
=0;block
<4;block
++) {
201 int pos
= ff_cavs_scan3x3
[block
];
203 nA
= h
->pred_mode_Y
[pos
-1];
204 nB
= h
->pred_mode_Y
[pos
-3];
205 predpred
= FFMIN(nA
,nB
);
206 if(predpred
== NOT_AVAIL
) // if either is not available
207 predpred
= INTRA_L_LP
;
209 int rem_mode
= get_bits(gb
, 2);
210 predpred
= rem_mode
+ (rem_mode
>= predpred
);
212 h
->pred_mode_Y
[pos
] = predpred
;
214 pred_mode_uv
= get_ue_golomb(gb
);
215 if(pred_mode_uv
> 6) {
216 av_log(h
->s
.avctx
, AV_LOG_ERROR
, "illegal intra chroma pred mode\n");
219 ff_cavs_modify_mb_i(h
, &pred_mode_uv
);
221 /* get coded block pattern */
222 if(h
->pic_type
== FF_I_TYPE
)
223 cbp_code
= get_ue_golomb(gb
);
225 av_log(h
->s
.avctx
, AV_LOG_ERROR
, "illegal intra cbp\n");
228 h
->cbp
= cbp_tab
[cbp_code
][0];
229 if(h
->cbp
&& !h
->qp_fixed
)
230 h
->qp
= (h
->qp
+ get_se_golomb(gb
)) & 63; //qp_delta
232 /* luma intra prediction interleaved with residual decode/transform/add */
233 for(block
=0;block
<4;block
++) {
234 d
= h
->cy
+ h
->luma_scan
[block
];
235 ff_cavs_load_intra_pred_luma(h
, top
, &left
, block
);
236 h
->intra_pred_l
[h
->pred_mode_Y
[ff_cavs_scan3x3
[block
]]]
237 (d
, top
, left
, h
->l_stride
);
238 if(h
->cbp
& (1<<block
))
239 decode_residual_block(h
,gb
,ff_cavs_intra_dec
,1,h
->qp
,d
,h
->l_stride
);
242 /* chroma intra prediction */
243 ff_cavs_load_intra_pred_chroma(h
);
244 h
->intra_pred_c
[pred_mode_uv
](h
->cu
, &h
->top_border_u
[h
->mbx
*10],
245 h
->left_border_u
, h
->c_stride
);
246 h
->intra_pred_c
[pred_mode_uv
](h
->cv
, &h
->top_border_v
[h
->mbx
*10],
247 h
->left_border_v
, h
->c_stride
);
249 decode_residual_chroma(h
);
250 ff_cavs_filter(h
,I_8X8
);
255 static void decode_mb_p(AVSContext
*h
, enum mb_t mb_type
) {
256 GetBitContext
*gb
= &h
->s
.gb
;
262 ff_cavs_mv(h
, MV_FWD_X0
, MV_FWD_C2
, MV_PRED_PSKIP
, BLK_16X16
, 0);
265 ref
[0] = h
->ref_flag
? 0 : get_bits1(gb
);
266 ff_cavs_mv(h
, MV_FWD_X0
, MV_FWD_C2
, MV_PRED_MEDIAN
, BLK_16X16
,ref
[0]);
269 ref
[0] = h
->ref_flag
? 0 : get_bits1(gb
);
270 ref
[2] = h
->ref_flag
? 0 : get_bits1(gb
);
271 ff_cavs_mv(h
, MV_FWD_X0
, MV_FWD_C2
, MV_PRED_TOP
, BLK_16X8
, ref
[0]);
272 ff_cavs_mv(h
, MV_FWD_X2
, MV_FWD_A1
, MV_PRED_LEFT
, BLK_16X8
, ref
[2]);
275 ref
[0] = h
->ref_flag
? 0 : get_bits1(gb
);
276 ref
[1] = h
->ref_flag
? 0 : get_bits1(gb
);
277 ff_cavs_mv(h
, MV_FWD_X0
, MV_FWD_B3
, MV_PRED_LEFT
, BLK_8X16
, ref
[0]);
278 ff_cavs_mv(h
, MV_FWD_X1
, MV_FWD_C2
, MV_PRED_TOPRIGHT
,BLK_8X16
, ref
[1]);
281 ref
[0] = h
->ref_flag
? 0 : get_bits1(gb
);
282 ref
[1] = h
->ref_flag
? 0 : get_bits1(gb
);
283 ref
[2] = h
->ref_flag
? 0 : get_bits1(gb
);
284 ref
[3] = h
->ref_flag
? 0 : get_bits1(gb
);
285 ff_cavs_mv(h
, MV_FWD_X0
, MV_FWD_B3
, MV_PRED_MEDIAN
, BLK_8X8
, ref
[0]);
286 ff_cavs_mv(h
, MV_FWD_X1
, MV_FWD_C2
, MV_PRED_MEDIAN
, BLK_8X8
, ref
[1]);
287 ff_cavs_mv(h
, MV_FWD_X2
, MV_FWD_X1
, MV_PRED_MEDIAN
, BLK_8X8
, ref
[2]);
288 ff_cavs_mv(h
, MV_FWD_X3
, MV_FWD_X0
, MV_PRED_MEDIAN
, BLK_8X8
, ref
[3]);
290 ff_cavs_inter(h
, mb_type
);
291 set_intra_mode_default(h
);
293 if(mb_type
!= P_SKIP
)
294 decode_residual_inter(h
);
295 ff_cavs_filter(h
,mb_type
);
296 *h
->col_type
= mb_type
;
299 static void decode_mb_b(AVSContext
*h
, enum mb_t mb_type
) {
301 enum sub_mb_t sub_type
[4];
307 h
->mv
[MV_FWD_X0
] = ff_cavs_dir_mv
;
308 set_mvs(&h
->mv
[MV_FWD_X0
], BLK_16X16
);
309 h
->mv
[MV_BWD_X0
] = ff_cavs_dir_mv
;
310 set_mvs(&h
->mv
[MV_BWD_X0
], BLK_16X16
);
314 if(!(*h
->col_type
)) {
315 /* intra MB at co-location, do in-plane prediction */
316 ff_cavs_mv(h
, MV_FWD_X0
, MV_FWD_C2
, MV_PRED_BSKIP
, BLK_16X16
, 1);
317 ff_cavs_mv(h
, MV_BWD_X0
, MV_BWD_C2
, MV_PRED_BSKIP
, BLK_16X16
, 0);
319 /* direct prediction from co-located P MB, block-wise */
320 for(block
=0;block
<4;block
++)
321 mv_pred_direct(h
,&h
->mv
[mv_scan
[block
]],
322 &h
->col_mv
[(h
->mby
*h
->mb_width
+h
->mbx
)*4 + block
]);
325 ff_cavs_mv(h
, MV_FWD_X0
, MV_FWD_C2
, MV_PRED_MEDIAN
, BLK_16X16
, 1);
328 ff_cavs_mv(h
, MV_FWD_X0
, MV_FWD_C2
, MV_PRED_MEDIAN
, BLK_16X16
, 1);
329 mv_pred_sym(h
, &h
->mv
[MV_FWD_X0
], BLK_16X16
);
332 ff_cavs_mv(h
, MV_BWD_X0
, MV_BWD_C2
, MV_PRED_MEDIAN
, BLK_16X16
, 0);
335 for(block
=0;block
<4;block
++)
336 sub_type
[block
] = get_bits(&h
->s
.gb
,2);
337 for(block
=0;block
<4;block
++) {
338 switch(sub_type
[block
]) {
340 if(!(*h
->col_type
)) {
341 /* intra MB at co-location, do in-plane prediction */
342 ff_cavs_mv(h
, mv_scan
[block
], mv_scan
[block
]-3,
343 MV_PRED_BSKIP
, BLK_8X8
, 1);
344 ff_cavs_mv(h
, mv_scan
[block
]+MV_BWD_OFFS
,
345 mv_scan
[block
]-3+MV_BWD_OFFS
,
346 MV_PRED_BSKIP
, BLK_8X8
, 0);
348 mv_pred_direct(h
,&h
->mv
[mv_scan
[block
]],
349 &h
->col_mv
[(h
->mby
*h
->mb_width
+ h
->mbx
)*4 + block
]);
352 ff_cavs_mv(h
, mv_scan
[block
], mv_scan
[block
]-3,
353 MV_PRED_MEDIAN
, BLK_8X8
, 1);
356 ff_cavs_mv(h
, mv_scan
[block
], mv_scan
[block
]-3,
357 MV_PRED_MEDIAN
, BLK_8X8
, 1);
358 mv_pred_sym(h
, &h
->mv
[mv_scan
[block
]], BLK_8X8
);
362 for(block
=0;block
<4;block
++) {
363 if(sub_type
[block
] == B_SUB_BWD
)
364 ff_cavs_mv(h
, mv_scan
[block
]+MV_BWD_OFFS
,
365 mv_scan
[block
]+MV_BWD_OFFS
-3,
366 MV_PRED_MEDIAN
, BLK_8X8
, 0);
370 assert((mb_type
> B_SYM_16X16
) && (mb_type
< B_8X8
));
371 flags
= ff_cavs_partition_flags
[mb_type
];
372 if(mb_type
& 1) { /* 16x8 macroblock types */
374 ff_cavs_mv(h
, MV_FWD_X0
, MV_FWD_C2
, MV_PRED_TOP
, BLK_16X8
, 1);
376 mv_pred_sym(h
, &h
->mv
[MV_FWD_X0
], BLK_16X8
);
378 ff_cavs_mv(h
, MV_FWD_X2
, MV_FWD_A1
, MV_PRED_LEFT
, BLK_16X8
, 1);
380 mv_pred_sym(h
, &h
->mv
[MV_FWD_X2
], BLK_16X8
);
382 ff_cavs_mv(h
, MV_BWD_X0
, MV_BWD_C2
, MV_PRED_TOP
, BLK_16X8
, 0);
384 ff_cavs_mv(h
, MV_BWD_X2
, MV_BWD_A1
, MV_PRED_LEFT
, BLK_16X8
, 0);
385 } else { /* 8x16 macroblock types */
387 ff_cavs_mv(h
, MV_FWD_X0
, MV_FWD_B3
, MV_PRED_LEFT
, BLK_8X16
, 1);
389 mv_pred_sym(h
, &h
->mv
[MV_FWD_X0
], BLK_8X16
);
391 ff_cavs_mv(h
,MV_FWD_X1
,MV_FWD_C2
,MV_PRED_TOPRIGHT
,BLK_8X16
,1);
393 mv_pred_sym(h
, &h
->mv
[MV_FWD_X1
], BLK_8X16
);
395 ff_cavs_mv(h
, MV_BWD_X0
, MV_BWD_B3
, MV_PRED_LEFT
, BLK_8X16
, 0);
397 ff_cavs_mv(h
,MV_BWD_X1
,MV_BWD_C2
,MV_PRED_TOPRIGHT
,BLK_8X16
,0);
400 ff_cavs_inter(h
, mb_type
);
401 set_intra_mode_default(h
);
402 if(mb_type
!= B_SKIP
)
403 decode_residual_inter(h
);
404 ff_cavs_filter(h
,mb_type
);
407 /*****************************************************************************
411 ****************************************************************************/
413 static inline int decode_slice_header(AVSContext
*h
, GetBitContext
*gb
) {
415 av_log(h
->s
.avctx
, AV_LOG_ERROR
, "unexpected start code 0x%02x\n", h
->stc
);
417 if((h
->mby
== 0) && (!h
->qp_fixed
)){
418 h
->qp_fixed
= get_bits1(gb
);
419 h
->qp
= get_bits(gb
,6);
421 /* inter frame or second slice can have weighting params */
422 if((h
->pic_type
!= FF_I_TYPE
) || (!h
->pic_structure
&& h
->mby
>= h
->mb_width
/2))
423 if(get_bits1(gb
)) { //slice_weighting_flag
424 av_log(h
->s
.avctx
, AV_LOG_ERROR
,
425 "weighted prediction not yet supported\n");
430 static inline void check_for_slice(AVSContext
*h
) {
431 GetBitContext
*gb
= &h
->s
.gb
;
433 align
= (-get_bits_count(gb
)) & 7;
434 if((show_bits_long(gb
,24+align
) & 0xFFFFFF) == 0x000001) {
435 skip_bits_long(gb
,24+align
);
436 h
->stc
= get_bits(gb
,8);
437 decode_slice_header(h
,gb
);
441 /*****************************************************************************
445 ****************************************************************************/
447 static int decode_pic(AVSContext
*h
) {
448 MpegEncContext
*s
= &h
->s
;
452 if (!s
->context_initialized
) {
453 s
->avctx
->idct_algo
= FF_IDCT_CAVS
;
454 if (MPV_common_init(s
) < 0)
456 ff_init_scantable(s
->dsp
.idct_permutation
,&h
->scantable
,ff_zigzag_direct
);
458 skip_bits(&s
->gb
,16);//bbv_dwlay
459 if(h
->stc
== PIC_PB_START_CODE
) {
460 h
->pic_type
= get_bits(&s
->gb
,2) + FF_I_TYPE
;
461 if(h
->pic_type
> FF_B_TYPE
) {
462 av_log(s
->avctx
, AV_LOG_ERROR
, "illegal picture type\n");
465 /* make sure we have the reference frames we need */
466 if(!h
->DPB
[0].data
[0] ||
467 (!h
->DPB
[1].data
[0] && h
->pic_type
== FF_B_TYPE
))
470 h
->pic_type
= FF_I_TYPE
;
471 if(get_bits1(&s
->gb
))
472 skip_bits(&s
->gb
,16);//time_code
474 /* release last B frame */
475 if(h
->picture
.data
[0])
476 s
->avctx
->release_buffer(s
->avctx
, (AVFrame
*)&h
->picture
);
478 s
->avctx
->get_buffer(s
->avctx
, (AVFrame
*)&h
->picture
);
480 h
->picture
.poc
= get_bits(&s
->gb
,8)*2;
482 /* get temporal distances and MV scaling factors */
483 if(h
->pic_type
!= FF_B_TYPE
) {
484 h
->dist
[0] = (h
->picture
.poc
- h
->DPB
[0].poc
+ 512) % 512;
486 h
->dist
[0] = (h
->DPB
[0].poc
- h
->picture
.poc
+ 512) % 512;
488 h
->dist
[1] = (h
->picture
.poc
- h
->DPB
[1].poc
+ 512) % 512;
489 h
->scale_den
[0] = h
->dist
[0] ? 512/h
->dist
[0] : 0;
490 h
->scale_den
[1] = h
->dist
[1] ? 512/h
->dist
[1] : 0;
491 if(h
->pic_type
== FF_B_TYPE
) {
492 h
->sym_factor
= h
->dist
[0]*h
->scale_den
[1];
494 h
->direct_den
[0] = h
->dist
[0] ? 16384/h
->dist
[0] : 0;
495 h
->direct_den
[1] = h
->dist
[1] ? 16384/h
->dist
[1] : 0;
499 get_ue_golomb(&s
->gb
); //bbv_check_times
500 h
->progressive
= get_bits1(&s
->gb
);
502 h
->pic_structure
= 1;
503 else if(!(h
->pic_structure
= get_bits1(&s
->gb
) && (h
->stc
== PIC_PB_START_CODE
)) )
504 skip_bits1(&s
->gb
); //advanced_pred_mode_disable
505 skip_bits1(&s
->gb
); //top_field_first
506 skip_bits1(&s
->gb
); //repeat_first_field
507 h
->qp_fixed
= get_bits1(&s
->gb
);
508 h
->qp
= get_bits(&s
->gb
,6);
509 if(h
->pic_type
== FF_I_TYPE
) {
510 if(!h
->progressive
&& !h
->pic_structure
)
511 skip_bits1(&s
->gb
);//what is this?
512 skip_bits(&s
->gb
,4); //reserved bits
514 if(!(h
->pic_type
== FF_B_TYPE
&& h
->pic_structure
== 1))
515 h
->ref_flag
= get_bits1(&s
->gb
);
516 skip_bits(&s
->gb
,4); //reserved bits
517 h
->skip_mode_flag
= get_bits1(&s
->gb
);
519 h
->loop_filter_disable
= get_bits1(&s
->gb
);
520 if(!h
->loop_filter_disable
&& get_bits1(&s
->gb
)) {
521 h
->alpha_offset
= get_se_golomb(&s
->gb
);
522 h
->beta_offset
= get_se_golomb(&s
->gb
);
524 h
->alpha_offset
= h
->beta_offset
= 0;
527 if(h
->pic_type
== FF_I_TYPE
) {
530 } while(ff_cavs_next_mb(h
));
531 } else if(h
->pic_type
== FF_P_TYPE
) {
533 if(h
->skip_mode_flag
) {
534 skip_count
= get_ue_golomb(&s
->gb
);
535 while(skip_count
--) {
536 decode_mb_p(h
,P_SKIP
);
537 if(!ff_cavs_next_mb(h
))
540 mb_type
= get_ue_golomb(&s
->gb
) + P_16X16
;
542 mb_type
= get_ue_golomb(&s
->gb
) + P_SKIP
;
543 if(mb_type
> P_8X8
) {
544 decode_mb_i(h
, mb_type
- P_8X8
- 1);
546 decode_mb_p(h
,mb_type
);
547 } while(ff_cavs_next_mb(h
));
548 } else { /* FF_B_TYPE */
550 if(h
->skip_mode_flag
) {
551 skip_count
= get_ue_golomb(&s
->gb
);
552 while(skip_count
--) {
553 decode_mb_b(h
,B_SKIP
);
554 if(!ff_cavs_next_mb(h
))
557 mb_type
= get_ue_golomb(&s
->gb
) + B_DIRECT
;
559 mb_type
= get_ue_golomb(&s
->gb
) + B_SKIP
;
560 if(mb_type
> B_8X8
) {
561 decode_mb_i(h
, mb_type
- B_8X8
- 1);
563 decode_mb_b(h
,mb_type
);
564 } while(ff_cavs_next_mb(h
));
567 if(h
->pic_type
!= FF_B_TYPE
) {
568 if(h
->DPB
[1].data
[0])
569 s
->avctx
->release_buffer(s
->avctx
, (AVFrame
*)&h
->DPB
[1]);
570 memcpy(&h
->DPB
[1], &h
->DPB
[0], sizeof(Picture
));
571 memcpy(&h
->DPB
[0], &h
->picture
, sizeof(Picture
));
572 memset(&h
->picture
,0,sizeof(Picture
));
577 /*****************************************************************************
579 * headers and interface
581 ****************************************************************************/
583 static int decode_seq_header(AVSContext
*h
) {
584 MpegEncContext
*s
= &h
->s
;
587 h
->profile
= get_bits(&s
->gb
,8);
588 h
->level
= get_bits(&s
->gb
,8);
589 skip_bits1(&s
->gb
); //progressive sequence
590 s
->width
= get_bits(&s
->gb
,14);
591 s
->height
= get_bits(&s
->gb
,14);
592 skip_bits(&s
->gb
,2); //chroma format
593 skip_bits(&s
->gb
,3); //sample_precision
594 h
->aspect_ratio
= get_bits(&s
->gb
,4);
595 frame_rate_code
= get_bits(&s
->gb
,4);
596 skip_bits(&s
->gb
,18);//bit_rate_lower
597 skip_bits1(&s
->gb
); //marker_bit
598 skip_bits(&s
->gb
,12);//bit_rate_upper
599 s
->low_delay
= get_bits1(&s
->gb
);
600 h
->mb_width
= (s
->width
+ 15) >> 4;
601 h
->mb_height
= (s
->height
+ 15) >> 4;
602 h
->s
.avctx
->time_base
.den
= ff_frame_rate_tab
[frame_rate_code
].num
;
603 h
->s
.avctx
->time_base
.num
= ff_frame_rate_tab
[frame_rate_code
].den
;
604 h
->s
.avctx
->width
= s
->width
;
605 h
->s
.avctx
->height
= s
->height
;
607 ff_cavs_init_top_lines(h
);
611 static void cavs_flush(AVCodecContext
* avctx
) {
612 AVSContext
*h
= avctx
->priv_data
;
616 static int cavs_decode_frame(AVCodecContext
* avctx
,void *data
, int *data_size
,
617 const uint8_t * buf
, int buf_size
) {
618 AVSContext
*h
= avctx
->priv_data
;
619 MpegEncContext
*s
= &h
->s
;
621 const uint8_t *buf_end
;
622 const uint8_t *buf_ptr
;
623 AVFrame
*picture
= data
;
629 if(!s
->low_delay
&& h
->DPB
[0].data
[0]) {
630 *data_size
= sizeof(AVPicture
);
631 *picture
= *(AVFrame
*) &h
->DPB
[0];
637 buf_end
= buf
+ buf_size
;
639 buf_ptr
= ff_find_start_code(buf_ptr
,buf_end
, &stc
);
641 return FFMAX(0, buf_ptr
- buf
- s
->parse_context
.last_index
);
642 input_size
= (buf_end
- buf_ptr
)*8;
644 case CAVS_START_CODE
:
645 init_get_bits(&s
->gb
, buf_ptr
, input_size
);
646 decode_seq_header(h
);
648 case PIC_I_START_CODE
:
649 if(!h
->got_keyframe
) {
650 if(h
->DPB
[0].data
[0])
651 avctx
->release_buffer(avctx
, (AVFrame
*)&h
->DPB
[0]);
652 if(h
->DPB
[1].data
[0])
653 avctx
->release_buffer(avctx
, (AVFrame
*)&h
->DPB
[1]);
656 case PIC_PB_START_CODE
:
660 init_get_bits(&s
->gb
, buf_ptr
, input_size
);
664 *data_size
= sizeof(AVPicture
);
665 if(h
->pic_type
!= FF_B_TYPE
) {
666 if(h
->DPB
[1].data
[0]) {
667 *picture
= *(AVFrame
*) &h
->DPB
[1];
672 *picture
= *(AVFrame
*) &h
->picture
;
675 //mpeg_decode_extension(avctx,buf_ptr, input_size);
677 case USER_START_CODE
:
678 //mpeg_decode_user_data(avctx,buf_ptr, input_size);
681 if (stc
>= SLICE_MIN_START_CODE
&&
682 stc
<= SLICE_MAX_START_CODE
) {
683 init_get_bits(&s
->gb
, buf_ptr
, input_size
);
684 decode_slice_header(h
, &s
->gb
);
691 AVCodec cavs_decoder
= {
700 CODEC_CAP_DR1
| CODEC_CAP_DELAY
,
702 .long_name
= "Chinese AVS video (AVS1-P2, JiZhun profile)",