HomeSort by relevance Sort by last modified time
    Searched refs:buffer_pool (Results 1 - 12 of 12) sorted by null

  /external/libvpx/libvpx/vp9/
vp9_dx_iface.h 57 BufferPool *buffer_pool; member in struct:vpx_codec_alg_priv
vp9_dx_iface.c 85 pthread_mutex_destroy(&ctx->buffer_pool->pool_mutex);
89 if (ctx->buffer_pool) {
90 vp9_free_ref_frame_buffers(ctx->buffer_pool);
91 vp9_free_internal_frame_buffers(&ctx->buffer_pool->int_frame_buffers);
95 vpx_free(ctx->buffer_pool);
247 BufferPool *const pool = cm->buffer_pool;
302 BufferPool *const pool = frame_worker_data->pbi->common.buffer_pool;
341 ctx->buffer_pool = (BufferPool *)vpx_calloc(1, sizeof(BufferPool));
342 if (ctx->buffer_pool == NULL)
346 if (pthread_mutex_init(&ctx->buffer_pool->pool_mutex, NULL))
    [all...]
vp9_cx_iface.c 102 BufferPool *buffer_pool; member in struct:vpx_codec_alg_priv
790 priv->buffer_pool =
792 if (priv->buffer_pool == NULL)
796 if (pthread_mutex_init(&priv->buffer_pool->pool_mutex, NULL)) {
818 priv->cpi = vp9_create_compressor(&priv->oxcf, priv->buffer_pool);
833 pthread_mutex_destroy(&ctx->buffer_pool->pool_mutex);
835 vpx_free(ctx->buffer_pool);
    [all...]
  /hardware/intel/common/libmix/mix_video/src/
mixvideo_private.h 39 MixBufferPool *buffer_pool; member in struct:_MixVideoPrivate
mixvideo.c 210 priv->buffer_pool = NULL;
234 MIXUNREF(priv->buffer_pool, mix_bufferpool_unref)
566 priv->buffer_pool = mix_bufferpool_new();
567 if (!priv->buffer_pool) {
573 ret = mix_bufferpool_initialize(priv->buffer_pool, bufpoolsize);
684 priv->frame_manager, priv->buffer_pool, &priv->surface_pool,
704 MIXUNREF(priv->buffer_pool, mix_bufferpool_unref);
821 priv->buffer_pool = mix_bufferpool_new();
822 if (!priv->buffer_pool) {
828 ret = mix_bufferpool_initialize(priv->buffer_pool, bufpoolsize)
    [all...]
  /external/libvpx/libvpx/vp9/common/
vp9_onyxc_int.h 280 BufferPool *buffer_pool; member in struct:VP9Common
298 return &cm->buffer_pool->frame_bufs[cm->ref_frame_map[index]].buf;
302 return &cm->buffer_pool->frame_bufs[cm->new_fb_idx].buf;
306 RefCntBuffer *const frame_bufs = cm->buffer_pool->frame_bufs;
309 lock_buffer_pool(cm->buffer_pool);
321 unlock_buffer_pool(cm->buffer_pool);
  /external/libvpx/libvpx/vp9/decoder/
vp9_decoder.c 108 pbi->common.buffer_pool = pool;
190 RefCntBuffer *const frame_bufs = cm->buffer_pool->frame_bufs;
236 BufferPool *const pool = cm->buffer_pool;
237 RefCntBuffer *const frame_bufs = cm->buffer_pool->frame_bufs;
277 BufferPool *volatile const pool = cm->buffer_pool;
278 RefCntBuffer *volatile const frame_bufs = cm->buffer_pool->frame_bufs;
vp9_decodeframe.c 732 BufferPool *const pool = pbi->common.buffer_pool;
    [all...]
  /external/libvpx/libvpx/vp9/encoder/
vp9_encoder.h 584 buf_idx != INVALID_IDX ? &cm->buffer_pool->frame_bufs[buf_idx].buf : NULL;
vp9_encoder.c 378 vp9_free_ref_frame_buffers(cm->buffer_pool);
    [all...]
vp9_rd.c 554 &cm->buffer_pool->frame_bufs[scaled_idx].buf : NULL;
vp9_firstpass.c 537 BufferPool *const pool = cm->buffer_pool;
    [all...]

Completed in 1029 milliseconds