Searched refs:pbi (Results 1 - 14 of 14) sorted by relevance

/external/libvpx/libvpx/vp8/decoder/
H A Ddecoderthreading.h15 void vp8mt_decode_mb_rows(VP8D_COMP *pbi, MACROBLOCKD *xd);
16 void vp8_decoder_remove_threads(VP8D_COMP *pbi);
17 void vp8_decoder_create_threads(VP8D_COMP *pbi);
18 void vp8mt_alloc_temp_buffers(VP8D_COMP *pbi, int width, int prev_mb_rows);
19 void vp8mt_de_alloc_temp_buffers(VP8D_COMP *pbi, int mb_rows);
H A Donyxd_if.c41 extern void vp8cx_init_de_quantizer(VP8D_COMP *pbi);
45 static void remove_decompressor(VP8D_COMP *pbi) argument
48 vp8_de_alloc_overlap_lists(pbi);
50 vp8_remove_common(&pbi->common);
51 vpx_free(pbi);
56 VP8D_COMP *pbi = vpx_memalign(32, sizeof(VP8D_COMP)); local
58 if (!pbi)
61 vpx_memset(pbi, 0, sizeof(VP8D_COMP));
63 if (setjmp(pbi->common.error.jmp))
65 pbi
110 vp8dx_get_reference(VP8D_COMP *pbi, enum vpx_ref_frame_type ref_frame_flag, YV12_BUFFER_CONFIG *sd) argument
141 vp8dx_set_reference(VP8D_COMP *pbi, enum vpx_ref_frame_type ref_frame_flag, YV12_BUFFER_CONFIG *sd) argument
267 check_fragments_for_errors(VP8D_COMP *pbi) argument
306 vp8dx_receive_compressed_data(VP8D_COMP *pbi, size_t size, const uint8_t *source, int64_t time_stamp) argument
418 vp8dx_get_raw_frame(VP8D_COMP *pbi, YV12_BUFFER_CONFIG *sd, int64_t *time_stamp, int64_t *time_end_stamp, vp8_ppflags_t *flags) argument
507 VP8D_COMP *pbi = fb->pbi[0]; local
[all...]
H A Derror_concealment.h19 int vp8_alloc_overlap_lists(VP8D_COMP *pbi);
22 void vp8_de_alloc_overlap_lists(VP8D_COMP *pbi);
25 void vp8_estimate_missing_mvs(VP8D_COMP *pbi);
H A Dthreading.c39 void vp8_mb_init_dequantizer(VP8D_COMP *pbi, MACROBLOCKD *xd);
41 static void setup_decoding_thread_data(VP8D_COMP *pbi, MACROBLOCKD *xd, MB_ROW_DEC *mbrd, int count) argument
43 VP8_COMMON *const pc = & pbi->common;
74 mbd->current_bc = &pbi->mbc[0];
89 pbi->mt_current_mb_col[i] = -1;
92 static void mt_decode_macroblock(VP8D_COMP *pbi, MACROBLOCKD *xd, argument
108 eobtotal = vp8_decode_mb_tokens(pbi, xd);
117 vp8_mb_init_dequantizer(pbi, xd);
122 if(pbi->ec_active)
128 throw_residual = (!pbi
296 mt_decode_mb_rows(VP8D_COMP *pbi, MACROBLOCKD *xd, int start_mb_row) argument
623 VP8D_COMP *pbi = (VP8D_COMP *)(((DECODETHREAD_DATA *)p_data)->ptr1); local
650 vp8_decoder_create_threads(VP8D_COMP *pbi) argument
695 vp8mt_de_alloc_temp_buffers(VP8D_COMP *pbi, int mb_rows) argument
775 vp8mt_alloc_temp_buffers(VP8D_COMP *pbi, int width, int prev_mb_rows) argument
828 vp8_decoder_remove_threads(VP8D_COMP *pbi) argument
865 vp8mt_decode_mb_rows( VP8D_COMP *pbi, MACROBLOCKD *xd) argument
[all...]
H A Ddecodemv.c49 static void read_kf_modes(VP8D_COMP *pbi, MODE_INFO *mi) argument
51 vp8_reader *const bc = & pbi->mbc[8];
52 const int mis = pbi->common.mode_info_stride;
151 static void mb_mode_mv_init(VP8D_COMP *pbi) argument
153 vp8_reader *const bc = & pbi->mbc[8];
154 MV_CONTEXT *const mvc = pbi->common.fc.mvc;
160 pbi->mvs_corrupt_from_mb = UINT_MAX;
163 pbi->common.mb_no_coeff_skip = (int)vp8_read_bit(bc);
165 pbi->prob_skip_false = 0;
166 if (pbi
339 read_mb_modes_mv(VP8D_COMP *pbi, MODE_INFO *mi, MB_MODE_INFO *mbmi) argument
591 decode_mb_mode_mvs(VP8D_COMP *pbi, MODE_INFO *mi, MB_MODE_INFO *mbmi) argument
618 vp8_decode_mode_mvs(VP8D_COMP *pbi) argument
[all...]
H A Ddecodframe.c40 void vp8cx_init_de_quantizer(VP8D_COMP *pbi) argument
43 VP8_COMMON *const pc = & pbi->common;
57 void vp8_mb_init_dequantizer(VP8D_COMP *pbi, MACROBLOCKD *xd) argument
62 VP8_COMMON *const pc = & pbi->common;
96 static void decode_macroblock(VP8D_COMP *pbi, MACROBLOCKD *xd, argument
112 eobtotal = vp8_decode_mb_tokens(pbi, xd);
121 vp8_mb_init_dequantizer(pbi, xd);
126 if(pbi->ec_active)
132 throw_residual = (!pbi->independent_partitions &&
133 pbi
499 decode_mb_rows(VP8D_COMP *pbi) argument
755 read_partition_size(VP8D_COMP *pbi, const unsigned char *cx_size) argument
774 read_available_partition_size( VP8D_COMP *pbi, const unsigned char *token_part_sizes, const unsigned char *fragment_start, const unsigned char *first_fragment_end, const unsigned char *fragment_end, int i, int num_part) argument
822 setup_token_decoder(VP8D_COMP *pbi, const unsigned char* token_part_sizes) argument
911 init_frame(VP8D_COMP *pbi) argument
980 vp8_decode_frame(VP8D_COMP *pbi) argument
[all...]
H A Donyxd_int.h58 struct VP8D_COMP *pbi[MAX_FB_MT_DEC]; member in struct:frame_buffers
138 vpx_internal_error(&pbi->common.error, VPX_CODEC_MEM_ERROR,\
146 vpx_internal_error(&pbi->common.error, VPX_CODEC_MEM_ERROR,\
H A Derror_concealment.c47 int vp8_alloc_overlap_lists(VP8D_COMP *pbi) argument
49 if (pbi->overlaps != NULL)
51 vpx_free(pbi->overlaps);
52 pbi->overlaps = NULL;
55 pbi->overlaps = vpx_calloc(pbi->common.mb_rows * pbi->common.mb_cols,
58 if (pbi->overlaps == NULL)
64 void vp8_de_alloc_overlap_lists(VP8D_COMP *pbi) argument
66 vpx_free(pbi
409 vp8_estimate_missing_mvs(VP8D_COMP *pbi) argument
[all...]
/external/libvpx/libvpx/vp9/decoder/
H A Dvp9_onyxd_if.c110 static void init_macroblockd(VP9D_COMP *const pbi) { argument
111 MACROBLOCKD *xd = &pbi->mb;
116 pd[i].qcoeff = pbi->qcoeff[i];
117 pd[i].dqcoeff = pbi->dqcoeff[i];
118 pd[i].eobs = pbi->eobs[i];
123 VP9D_COMP *const pbi = vpx_memalign(32, sizeof(VP9D_COMP)); local
124 VP9_COMMON *const cm = pbi ? &pbi->common : NULL;
129 vp9_zero(*pbi);
133 vp9_remove_decompressor(pbi);
165 VP9D_COMP *const pbi = (VP9D_COMP *)ptr; local
194 VP9D_COMP *pbi = (VP9D_COMP *) ptr; local
220 VP9D_COMP *pbi = (VP9D_COMP *) ptr; local
261 VP9D_COMP *pbi = (VP9D_COMP *) ptr; local
272 swap_frame_buffers(VP9D_COMP *pbi) argument
294 VP9D_COMP *pbi = (VP9D_COMP *) ptr; local
428 VP9D_COMP *pbi = (VP9D_COMP *) ptr; local
[all...]
H A Dvp9_decodframe.c206 static void alloc_tile_storage(VP9D_COMP *pbi, int tile_rows, int tile_cols) { argument
207 VP9_COMMON *const cm = &pbi->common;
211 CHECK_MEM_ERROR(cm, pbi->mi_streams,
212 vpx_realloc(pbi->mi_streams, tile_rows * tile_cols *
213 sizeof(*pbi->mi_streams)));
218 pbi->mi_streams[tile_row * tile_cols + tile_col] =
226 CHECK_MEM_ERROR(cm, pbi->above_context[0],
227 vpx_realloc(pbi->above_context[0],
228 sizeof(*pbi->above_context[0]) * MAX_MB_PLANE *
231 pbi
703 apply_frame_size(VP9D_COMP *pbi, int width, int height) argument
733 setup_frame_size(VP9D_COMP *pbi, struct vp9_read_bit_buffer *rb) argument
741 setup_frame_size_with_refs(VP9D_COMP *pbi, struct vp9_read_bit_buffer *rb) argument
768 setup_tile_context(VP9D_COMP *const pbi, MACROBLOCKD *const xd, int tile_row, int tile_col) argument
781 decode_tile(VP9D_COMP *pbi, const TileInfo *const tile, vp9_reader *r) argument
882 decode_tiles(VP9D_COMP *pbi, const uint8_t *data) argument
973 decode_tiles_mt(VP9D_COMP *pbi, const uint8_t *data) argument
1077 read_uncompressed_header(VP9D_COMP *pbi, struct vp9_read_bit_buffer *rb) argument
1193 read_compressed_header(VP9D_COMP *pbi, const uint8_t *data, size_t partition_size) argument
1291 vp9_decode_frame(VP9D_COMP *pbi, const uint8_t **p_data_end) argument
[all...]
/external/libvpx/libvpx/vp8/
H A Dvp8_dx_iface.c453 ctx->yv12_frame_buffers.pbi[0]->decrypt_cb = ctx->decrypt_cb;
454 ctx->yv12_frame_buffers.pbi[0]->decrypt_state = ctx->decrypt_state;
462 VP8D_COMP *pbi = ctx->yv12_frame_buffers.pbi[0]; local
465 VP8_COMMON *const pc = & pbi->common;
466 MACROBLOCKD *const xd = & pbi->mb;
475 if (setjmp(pbi->common.error.jmp))
477 pbi->common.error.setjmp = 0;
482 pbi->common.error.setjmp = 1;
506 for (i = 0; i < pbi
823 VP8D_COMP *pbi = (VP8D_COMP *)ctx->yv12_frame_buffers.pbi[0]; local
844 VP8D_COMP *pbi = (VP8D_COMP *)ctx->yv12_frame_buffers.pbi[0]; local
863 VP8D_COMP *pbi = (VP8D_COMP *)ctx->yv12_frame_buffers.pbi[0]; local
[all...]
/external/libvpx/libvpx/vp9/
H A Dvp9_dx_iface.c48 VP9D_PTR pbi; member in struct:vpx_codec_alg_priv
133 vp9_remove_decompressor(ctx->pbi);
313 ctx->pbi = optr;
319 if (!res && ctx->pbi) {
349 if (vp9_receive_compressed_data(ctx->pbi, data_sz, data, deadline)) {
350 VP9D_COMP *pbi = (VP9D_COMP *)ctx->pbi; local
351 res = update_error_state(ctx, &pbi->common.error);
354 if (!res && 0 == vp9_get_raw_frame(ctx->pbi, &sd, &time_stamp,
558 return vp9_set_reference_dec(ctx->pbi,
642 VP9D_COMP *pbi = (VP9D_COMP *)ctx->pbi; local
660 VP9D_COMP *pbi = (VP9D_COMP *)ctx->pbi; local
[all...]
/external/chromium_org/tools/win/ChromeDebug/LowLevel/
H A DNativeMethods.cs27 ref LowLevelTypes.PROCESS_BASIC_INFORMATION pbi,
24 NtQueryInformationProcess( IntPtr hProcess, LowLevelTypes.PROCESSINFOCLASS pic, ref LowLevelTypes.PROCESS_BASIC_INFORMATION pbi, int cb, out int pSize) argument
/external/clang/test/SemaCXX/
H A Dmember-pointer.cpp15 int B::*pbi; // expected-error {{expected a class or namespace}} member in class:B

Completed in 252 milliseconds