/external/libvpx/libvpx/vp8/encoder/ |
D | tokenize.c | 26 void vp8_stuff_mb(VP8_COMP *cpi, MACROBLOCK *x, TOKENEXTRA **t); 105 static void tokenize2nd_order_b(MACROBLOCK *x, TOKENEXTRA **tp, VP8_COMP *cpi) { in tokenize2nd_order_b() 109 TOKENEXTRA *t = *tp; /* store tokens starting here */ in tokenize2nd_order_b() 184 MACROBLOCK *x, TOKENEXTRA **tp, in tokenize1st_order_b() 193 TOKENEXTRA *t = *tp; /* store tokens starting here */ in tokenize1st_order_b() 357 void vp8_tokenize_mb(VP8_COMP *cpi, MACROBLOCK *x, TOKENEXTRA **t) { in vp8_tokenize_mb() 452 static void stuff2nd_order_b(TOKENEXTRA **tp, ENTROPY_CONTEXT *a, in stuff2nd_order_b() 455 TOKENEXTRA *t = *tp; /* store tokens starting here */ in stuff2nd_order_b() 469 static void stuff1st_order_b(TOKENEXTRA **tp, ENTROPY_CONTEXT *a, in stuff1st_order_b() 474 TOKENEXTRA *t = *tp; /* store tokens starting here */ in stuff1st_order_b() [all …]
|
D | encodeframe.h | 25 TOKENEXTRA **t, int recon_yoffset, 30 TOKENEXTRA **t);
|
D | onyx_int.h | 187 TOKENEXTRA *start; 188 TOKENEXTRA *stop; 314 TOKENEXTRA *tok; 702 void vp8_tokenize_mb(VP8_COMP *, MACROBLOCK *, TOKENEXTRA **);
|
D | bitstream.h | 18 void vp8_pack_tokens(vp8_writer *w, const TOKENEXTRA *p, int xcount);
|
D | tokenize.h | 33 } TOKENEXTRA; typedef
|
D | encodeframe.c | 37 extern void vp8_stuff_mb(VP8_COMP *cpi, MACROBLOCK *x, TOKENEXTRA **t); 329 MACROBLOCK *x, MACROBLOCKD *xd, TOKENEXTRA **tp, in encode_mb_row() 341 TOKENEXTRA *tp_start = cpi->tok; in encode_mb_row() 675 TOKENEXTRA *tp = cpi->tok; in vp8_encode_frame() 1082 TOKENEXTRA **t) { in vp8cx_encode_intra_macroblock() 1122 int vp8cx_encode_inter_macroblock(VP8_COMP *cpi, MACROBLOCK *x, TOKENEXTRA **t, in vp8cx_encode_inter_macroblock()
|
D | bitstream.c | 127 void vp8_pack_tokens(vp8_writer *w, const TOKENEXTRA *p, int xcount) { in vp8_pack_tokens() 128 const TOKENEXTRA *stop = p + xcount; in vp8_pack_tokens() 314 const TOKENEXTRA *p = cpi->tplist[mb_row].start; in pack_tokens_into_partitions() 315 const TOKENEXTRA *stop = cpi->tplist[mb_row].stop; in pack_tokens_into_partitions() 331 const TOKENEXTRA *p = cpi->tplist[mb_row].start; in pack_mb_row_tokens() 332 const TOKENEXTRA *stop = cpi->tplist[mb_row].stop; in pack_mb_row_tokens()
|
D | ethreading.c | 58 TOKENEXTRA *tp; in thread_encoding_proc() 60 TOKENEXTRA *tp_start = cpi->tok + (1 + ithread) * (16 * 24); in thread_encoding_proc()
|
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_tokenize.c | 314 TOKENEXTRA **tp; 329 static INLINE void add_token(TOKENEXTRA **t, const vpx_prob *context_tree, in add_token() 339 static INLINE void add_token_no_extra(TOKENEXTRA **t, in add_token_no_extra() 355 TOKENEXTRA **tp = args->tp; in tokenize_b() 362 TOKENEXTRA *t = *tp; /* store tokens starting here */ in tokenize_b() 466 void vp9_tokenize_sb(VP9_COMP *cpi, ThreadData *td, TOKENEXTRA **t, int dry_run, in vp9_tokenize_sb()
|
D | vp9_tokenize.h | 40 } TOKENEXTRA; typedef 53 TOKENEXTRA **t, int dry_run, int seg_skip,
|
D | vp9_bitstream.c | 126 static void pack_mb_tokens(vpx_writer *w, TOKENEXTRA **tp, in pack_mb_tokens() 127 const TOKENEXTRA *const stop, in pack_mb_tokens() 129 const TOKENEXTRA *p; in pack_mb_tokens() 150 *tp = (TOKENEXTRA *)(uintptr_t)p + (p->token == EOSB_TOKEN); in pack_mb_tokens() 188 *tp = (TOKENEXTRA *)(uintptr_t)p + (p->token == EOSB_TOKEN); in pack_mb_tokens() 372 vpx_writer *w, TOKENEXTRA **tok, const TOKENEXTRA *const tok_end, in write_modes_b() 421 vpx_writer *w, TOKENEXTRA **tok, const TOKENEXTRA *const tok_end, in write_modes_sb() 489 TOKENEXTRA *tok = NULL; in write_modes() 490 TOKENEXTRA *tok_end = NULL; in write_modes()
|
D | vp9_encoder.h | 299 TOKENEXTRA *start; 300 TOKENEXTRA *stop; 496 TOKENEXTRA *tile_tok[4][1 << 6]; 816 int mi_row, TOKENEXTRA **tok) { in get_start_tok()
|
D | vp9_encodeframe.c | 51 static void encode_superblock(VP9_COMP *cpi, ThreadData *td, TOKENEXTRA **t, 1891 TOKENEXTRA **tp, int mi_row, int mi_col, in encode_b() 1908 TOKENEXTRA **tp, int mi_row, int mi_col, in encode_sb() 2231 const TileInfo *const tile, TOKENEXTRA **tp, int mi_row, in encode_b_rt() 2246 const TileInfo *const tile, TOKENEXTRA **tp, in encode_sb_rt() 2315 TOKENEXTRA **tp, int mi_row, int mi_col, in rd_use_partition() 2876 TileDataEnc *tile_data, TOKENEXTRA **tp, in rd_pick_partition() 2887 TOKENEXTRA *tp_orig = *tp; in rd_pick_partition() 3323 TOKENEXTRA **tp) { in encode_rd_sb_row() 3617 TileDataEnc *tile_data, TOKENEXTRA **tp, in nonrd_pick_partition() [all …]
|