HomeSort by relevance Sort by last modified time
    Searched defs:pbi (Results 1 - 17 of 17) sorted by null

  /external/libvpx/libvpx/vp9/decoder/
vp9_dthread.h 28 struct VP9Decoder *pbi; member in struct:FrameWorkerData
vp9_dthread.c 80 const VP9Decoder *const pbi = ref_worker_data->pbi; local
92 while (ref_buf->row < row && pbi->cur_buf == ref_buf &&
101 vpx_internal_error(&worker_data->pbi->common.error,
142 VP9_COMMON *const src_cm = &src_worker_data->pbi->common;
143 VP9_COMMON *const dst_cm = &dst_worker_data->pbi->common;
155 dst_worker_data->pbi->need_resync = src_worker_data->pbi->need_resync;
vp9_decoder.c 77 VP9Decoder *volatile const pbi = vpx_memalign(32, sizeof(*pbi)); local
78 VP9_COMMON *volatile const cm = pbi ? &pbi->common : NULL;
83 vp9_zero(*pbi);
87 vp9_decoder_remove(pbi);
99 pbi->need_resync = 1;
107 pbi->ready_for_new_data = 1;
108 pbi->common.buffer_pool = pool;
121 vpx_get_worker_interface()->init(&pbi->lf_worker)
    [all...]
vp9_decodemv.c 480 VP9Decoder *const pbi = (VP9Decoder *)data; local
481 vp9_frameworker_wait(pbi->frame_worker_owner, pbi->common.prev_frame,
485 static void read_inter_block_mode_info(VP9Decoder *const pbi,
489 VP9_COMMON *const cm = &pbi->common;
512 mi_row, mi_col, fpm_sync, (void *)pbi, inter_mode_ctx);
588 static void read_inter_frame_mode_info(VP9Decoder *const pbi,
591 VP9_COMMON *const cm = &pbi->common;
604 read_inter_block_mode_info(pbi, xd, mi, mi_row, mi_col, r);
609 void vpx_read_mode_info(VP9Decoder *const pbi, MACROBLOCKD *xd
    [all...]
  /external/libvpx/libvpx/vp8/decoder/
onyxd_if.c 44 extern void vp8cx_init_de_quantizer(VP8D_COMP *pbi);
59 static void remove_decompressor(VP8D_COMP *pbi)
62 vp8_de_alloc_overlap_lists(pbi);
64 vp8_remove_common(&pbi->common);
65 vpx_free(pbi);
70 VP8D_COMP *pbi = vpx_memalign(32, sizeof(VP8D_COMP)); local
72 if (!pbi)
75 memset(pbi, 0, sizeof(VP8D_COMP));
77 if (setjmp(pbi->common.error.jmp))
79 pbi->common.error.setjmp = 0
501 VP8D_COMP *pbi = fb->pbi[0]; local
    [all...]
onyxd_int.h 62 struct VP8D_COMP *pbi[MAX_FB_MT_DEC]; member in struct:frame_buffers
142 vpx_internal_error(&pbi->common.error, VPX_CODEC_MEM_ERROR,\
150 vpx_internal_error(&pbi->common.error, VPX_CODEC_MEM_ERROR,\
threading.c 40 void vp8_mb_init_dequantizer(VP8D_COMP *pbi, MACROBLOCKD *xd);
42 static void setup_decoding_thread_data(VP8D_COMP *pbi, MACROBLOCKD *xd, MB_ROW_DEC *mbrd, int count)
44 VP8_COMMON *const pc = & pbi->common;
75 mbd->current_bc = &pbi->mbc[0];
90 pbi->mt_current_mb_col[i] = -1;
93 static void mt_decode_macroblock(VP8D_COMP *pbi, MACROBLOCKD *xd,
111 eobtotal = vp8_decode_mb_tokens(pbi, xd);
120 vp8_mb_init_dequantizer(pbi, xd);
125 if(pbi->ec_active)
131 throw_residual = (!pbi->independent_partitions &
626 VP8D_COMP *pbi = (VP8D_COMP *)(((DECODETHREAD_DATA *)p_data)->ptr1); local
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/decoder/
onyxd_if.c 41 extern void vp8cx_init_de_quantizer(VP8D_COMP *pbi);
45 static void remove_decompressor(VP8D_COMP *pbi)
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->common.error.setjmp = 0
509 VP8D_COMP *pbi = fb->pbi[0]; local
    [all...]
onyxd_int.h 62 struct VP8D_COMP *pbi[MAX_FB_MT_DEC]; member in struct:frame_buffers
142 vpx_internal_error(&pbi->common.error, VPX_CODEC_MEM_ERROR,\
150 vpx_internal_error(&pbi->common.error, VPX_CODEC_MEM_ERROR,\
threading.c 39 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)
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,
108 eobtotal = vp8_decode_mb_tokens(pbi, xd);
117 vp8_mb_init_dequantizer(pbi, xd);
122 if(pbi->ec_active)
128 throw_residual = (!pbi->independent_partitions &
623 VP8D_COMP *pbi = (VP8D_COMP *)(((DECODETHREAD_DATA *)p_data)->ptr1); local
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/decoder/
vp9_decoder.c 114 VP9D_COMP *const pbi = vpx_memalign(32, sizeof(VP9D_COMP)); local
115 VP9_COMMON *const cm = pbi ? &pbi->common : NULL;
120 vp9_zero(*pbi);
127 vp9_remove_decompressor(pbi);
136 pbi->oxcf = *oxcf;
137 pbi->ready_for_new_data = 1;
148 pbi->decoded_key_frame = 0;
150 vp9_worker_init(&pbi->lf_worker);
152 return pbi;
    [all...]
  /external/clang/test/SemaCXX/
member-pointer.cpp 19 int B::*pbi; member in class:B
23 // expected-error@-4 {{'pbi' does not point into a class}}
  /external/libvpx/libvpx/vp8/
vp8_dx_iface.c 389 ctx->yv12_frame_buffers.pbi[0]->decrypt_cb = ctx->decrypt_cb;
390 ctx->yv12_frame_buffers.pbi[0]->decrypt_state = ctx->decrypt_state;
395 VP8D_COMP *pbi = ctx->yv12_frame_buffers.pbi[0]; local
398 VP8_COMMON *const pc = & pbi->common;
399 MACROBLOCKD *const xd = & pbi->mb;
408 if (setjmp(pbi->common.error.jmp))
410 pbi->common.error.setjmp = 0;
416 pbi->common.error.setjmp = 1;
440 for (i = 0; i < pbi->allocated_decoding_thread_count; i++
704 VP8D_COMP *pbi = (VP8D_COMP *)ctx->yv12_frame_buffers.pbi[0]; local
724 VP8D_COMP *pbi = (VP8D_COMP *)ctx->yv12_frame_buffers.pbi[0]; local
742 VP8D_COMP *pbi = (VP8D_COMP *)ctx->yv12_frame_buffers.pbi[0]; local
    [all...]
  /external/opencv3/modules/videoio/src/
cap_vfw.cpp 431 unsigned char *pbi = new unsigned char[size]; local
432 if( pbi )
434 if( capGetVideoFormat(capWnd, pbi, size) == size )
436 BITMAPINFOHEADER& vfmt = ((BITMAPINFO*)pbi)->bmiHeader;
441 delete []pbi;
607 unsigned char *pbi = new unsigned char[size]; local
608 if( !pbi )
611 if( capGetVideoFormat(capWnd, pbi, size) != size )
613 delete []pbi;
617 BITMAPINFOHEADER& vfmt = ((BITMAPINFO*)pbi)->bmiHeader
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/
vp9_dx_iface.c 31 struct VP9Decompressor *pbi; member in struct:vpx_codec_alg_priv
82 if (ctx->pbi)
83 vp9_remove_decompressor(ctx->pbi);
208 VP9D_COMP *const pbi = (VP9D_COMP*)optr; local
209 VP9_COMMON *const cm = &pbi->common;
228 ctx->pbi = optr;
234 if (!res && ctx->pbi) {
235 VP9D_COMP *const pbi = ctx->pbi; local
236 VP9_COMMON *const cm = &pbi->common
    [all...]
  /external/webrtc/webrtc/modules/video_render/windows/
video_render_direct3d9.cc 1013 BITMAPINFO pbi; local
1023 pbi.bmiHeader.biSize = 40;
1024 pbi.bmiHeader.biWidth = bmap.bmWidth;
1025 pbi.bmiHeader.biHeight = bmap.bmHeight;
1026 pbi.bmiHeader.biPlanes = 1;
1027 pbi.bmiHeader.biBitCount = bmap.bmBitsPixel;
1028 pbi.bmiHeader.biCompression = BI_RGB;
1029 pbi.bmiHeader.biSizeImage = bmap.bmWidth * bmap.bmHeight * 3;
1032 int pixelHeight = GetDIBits(hdcNew, (HBITMAP)bitMap, 0, bmap.bmHeight, srcPtr, &pbi,
1042 if (pbi.bmiHeader.biBitCount != 24 && pbi.bmiHeader.biBitCount != 32
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/
vp8_dx_iface.c 455 ctx->yv12_frame_buffers.pbi[0]->decrypt_cb = ctx->decrypt_cb;
456 ctx->yv12_frame_buffers.pbi[0]->decrypt_state = ctx->decrypt_state;
464 VP8D_COMP *pbi = ctx->yv12_frame_buffers.pbi[0]; local
467 VP8_COMMON *const pc = & pbi->common;
468 MACROBLOCKD *const xd = & pbi->mb;
477 if (setjmp(pbi->common.error.jmp))
479 pbi->common.error.setjmp = 0;
484 pbi->common.error.setjmp = 1;
508 for (i = 0; i < pbi->allocated_decoding_thread_count; i++
830 VP8D_COMP *pbi = (VP8D_COMP *)ctx->yv12_frame_buffers.pbi[0]; local
851 VP8D_COMP *pbi = (VP8D_COMP *)ctx->yv12_frame_buffers.pbi[0]; local
871 VP8D_COMP *pbi = (VP8D_COMP *)ctx->yv12_frame_buffers.pbi[0]; local
    [all...]

Completed in 342 milliseconds