| FFmpeg
    | 
#include "libavutil/avassert.h"#include "avcodec.h"#include "get_bits.h"#include "golomb.h"#include "cavs.h"#include "internal.h"#include "mpeg12data.h"Go to the source code of this file.
| Macros | |
| #define | EOB 0, 0, 0 | 
| #define | TMP_UNUSED_INX 7 | 
| Functions | |
| static void | store_mvs (AVSContext *h) | 
| static void | mv_pred_direct (AVSContext *h, cavs_vector *pmv_fw, cavs_vector *col_mv) | 
| static void | mv_pred_sym (AVSContext *h, cavs_vector *src, enum cavs_block size) | 
| static int | get_ue_code (GetBitContext *gb, int order) | 
| kth-order exponential golomb code  More... | |
| static int | dequant (AVSContext *h, int16_t *level_buf, uint8_t *run_buf, int16_t *dst, int mul, int shift, int coeff_num) | 
| static int | decode_residual_block (AVSContext *h, GetBitContext *gb, const struct dec_2dvlc *r, int esc_golomb_order, int qp, uint8_t *dst, ptrdiff_t stride) | 
| decode coefficients from one 8x8 block, dequantize, inverse transform and add them to sample block  More... | |
| static int | decode_residual_chroma (AVSContext *h) | 
| static int | decode_residual_inter (AVSContext *h) | 
| static void | set_mv_intra (AVSContext *h) | 
| static int | decode_mb_i (AVSContext *h, int cbp_code) | 
| static void | set_intra_mode_default (AVSContext *h) | 
| static void | decode_mb_p (AVSContext *h, enum cavs_mb mb_type) | 
| static int | decode_mb_b (AVSContext *h, enum cavs_mb mb_type) | 
| static int | decode_slice_header (AVSContext *h, GetBitContext *gb) | 
| static int | check_for_slice (AVSContext *h) | 
| static int | decode_pic (AVSContext *h) | 
| static int | decode_seq_header (AVSContext *h) | 
| static void | cavs_flush (AVCodecContext *avctx) | 
| static int | cavs_decode_frame (AVCodecContext *avctx, void *data, int *got_frame, AVPacket *avpkt) | 
| Variables | |
| static const uint8_t | mv_scan [4] | 
| static const uint8_t | cbp_tab [64][2] | 
| static const uint8_t | scan3x3 [4] = { 4, 5, 7, 8 } | 
| static const uint8_t | dequant_shift [64] | 
| static const uint16_t | dequant_mul [64] | 
| static const struct dec_2dvlc | intra_dec [7] | 
| static const struct dec_2dvlc | inter_dec [7] | 
| static const struct dec_2dvlc | chroma_dec [5] | 
| AVCodec | ff_cavs_decoder | 
Chinese AVS video (AVS1-P2, JiZhun profile) decoder
Definition in file cavsdec.c.
| #define TMP_UNUSED_INX 7 | 
| 
 | inlinestatic | 
Definition at line 456 of file cavsdec.c.
Referenced by decode_mb_p().
| 
 | inlinestatic | 
Definition at line 464 of file cavsdec.c.
Referenced by decode_mb_b().
| 
 | inlinestatic | 
Definition at line 483 of file cavsdec.c.
Referenced by decode_mb_b().
| 
 | inlinestatic | 
kth-order exponential golomb code
Definition at line 503 of file cavsdec.c.
Referenced by decode_residual_block().
| 
 | inlinestatic | 
Definition at line 516 of file cavsdec.c.
Referenced by decode_residual_block().
| 
 | static | 
decode coefficients from one 8x8 block, dequantize, inverse transform and add them to sample block
| r | pointer to 2D VLC table | 
| esc_golomb_order | escape codes are k-golomb with this order k | 
| qp | quantizer | 
| dst | location of sample block | 
| stride | line stride in frame buffer | 
Definition at line 546 of file cavsdec.c.
Referenced by decode_mb_i(), decode_residual_chroma(), and decode_residual_inter().
| 
 | inlinestatic | 
Definition at line 594 of file cavsdec.c.
Referenced by decode_mb_i(), and decode_residual_inter().
| 
 | inlinestatic | 
Definition at line 611 of file cavsdec.c.
Referenced by decode_mb_b(), and decode_mb_p().
| 
 | inlinestatic | 
Definition at line 641 of file cavsdec.c.
Referenced by decode_mb_i().
| 
 | static | 
Definition at line 651 of file cavsdec.c.
Referenced by decode_pic().
| 
 | inlinestatic | 
Definition at line 725 of file cavsdec.c.
Referenced by decode_mb_b(), and decode_mb_p().
| 
 | static | 
Definition at line 736 of file cavsdec.c.
Referenced by decode_pic().
| 
 | static | 
Definition at line 781 of file cavsdec.c.
Referenced by decode_pic().
| 
 | inlinestatic | 
Definition at line 924 of file cavsdec.c.
Referenced by cavs_decode_frame(), and check_for_slice().
| 
 | inlinestatic | 
Definition at line 953 of file cavsdec.c.
Referenced by decode_pic().
| 
 | static | 
Definition at line 981 of file cavsdec.c.
Referenced by cavs_decode_frame().
| 
 | static | 
Definition at line 1152 of file cavsdec.c.
Referenced by cavs_decode_frame().
| 
 | static | 
| 
 | static | 
| 
 | static | 
| 
 | static | 
Definition at line 41 of file cavsdec.c.
Referenced by decode_mb_i(), and decode_residual_inter().
| 
 | static | 
Definition at line 52 of file cavsdec.c.
Referenced by decode_mb_i().
| 
 | static | 
Definition at line 54 of file cavsdec.c.
Referenced by decode_residual_block().
| 
 | static | 
Definition at line 65 of file cavsdec.c.
Referenced by decode_residual_block().
| 
 | static | 
Definition at line 78 of file cavsdec.c.
Referenced by decode_mb_i().
| 
 | static | 
Definition at line 214 of file cavsdec.c.
Referenced by decode_residual_inter().
| 
 | static | 
Definition at line 350 of file cavsdec.c.
Referenced by decode_residual_chroma().
| AVCodec ff_cavs_decoder | 
 1.8.17
 1.8.17