Searched refs:cx_data_sz (Results 1 - 2 of 2) sorted by relevance

/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/
H A Dvp9_cx_iface.c81 size_t cx_data_sz; member in struct:vpx_codec_alg_priv
544 priv->cx_data_sz = priv->cfg.g_w * priv->cfg.g_h * 3 / 2 * 8;
546 if (priv->cx_data_sz < 4096) priv->cx_data_sz = 4096;
548 priv->cx_data = (unsigned char *)malloc(priv->cx_data_sz);
637 if (ctx->pending_cx_data_sz + index_sz < ctx->cx_data_sz) {
728 size_t size, cx_data_sz; local
755 cx_data_sz = ctx->cx_data_sz;
763 cx_data_sz
[all...]
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/
H A Dvp8_cx_iface.c85 unsigned int cx_data_sz; member in struct:vpx_codec_alg_priv
623 priv->cx_data_sz = priv->cfg.g_w * priv->cfg.g_h * 3 / 2 * 2;
625 if (priv->cx_data_sz < 32768) priv->cx_data_sz = 32768;
627 priv->cx_data = malloc(priv->cx_data_sz);
830 unsigned long size, cx_data_sz; local
865 cx_data_sz = ctx->cx_data_sz;
866 cx_data_end = ctx->cx_data + cx_data_sz;
869 while (cx_data_sz >
[all...]

Completed in 161 milliseconds