Searched defs:cx_data_sz (Results 1 - 4 of 4) sorted by relevance

/external/chromium_org/third_party/libvpx/source/libvpx/vp8/
H A Dvp8_cx_iface.c85 unsigned int cx_data_sz; member in struct:vpx_codec_alg_priv
620 priv->cx_data_sz = priv->cfg.g_w * priv->cfg.g_h * 3 / 2 * 2;
622 if (priv->cx_data_sz < 32768) priv->cx_data_sz = 32768;
624 priv->cx_data = malloc(priv->cx_data_sz);
827 unsigned long size, cx_data_sz; local
862 cx_data_sz = ctx->cx_data_sz;
863 cx_data_end = ctx->cx_data + cx_data_sz;
866 while (cx_data_sz >
[all...]
/external/libvpx/libvpx/vp8/
H A Dvp8_cx_iface.c85 unsigned int cx_data_sz; member in struct:vpx_codec_alg_priv
620 priv->cx_data_sz = priv->cfg.g_w * priv->cfg.g_h * 3 / 2 * 2;
622 if (priv->cx_data_sz < 32768) priv->cx_data_sz = 32768;
624 priv->cx_data = malloc(priv->cx_data_sz);
827 unsigned long size, cx_data_sz; local
862 cx_data_sz = ctx->cx_data_sz;
863 cx_data_end = ctx->cx_data + cx_data_sz;
866 while (cx_data_sz >
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/
H A Dvp9_cx_iface.c83 size_t cx_data_sz; member in struct:vpx_codec_alg_priv
562 priv->cx_data_sz = priv->cfg.g_w * priv->cfg.g_h * 3 / 2 * 8;
564 if (priv->cx_data_sz < 4096)
565 priv->cx_data_sz = 4096;
567 priv->cx_data = (unsigned char *)malloc(priv->cx_data_sz);
651 if (ctx->pending_cx_data_sz + index_sz < ctx->cx_data_sz) {
759 size_t size, cx_data_sz; local
786 cx_data_sz = ctx->cx_data_sz;
794 cx_data_sz
[all...]
/external/libvpx/libvpx/vp9/
H A Dvp9_cx_iface.c83 size_t cx_data_sz; member in struct:vpx_codec_alg_priv
553 priv->cx_data_sz = priv->cfg.g_w * priv->cfg.g_h * 3 / 2 * 8;
555 if (priv->cx_data_sz < 4096) priv->cx_data_sz = 4096;
557 priv->cx_data = (unsigned char *)malloc(priv->cx_data_sz);
646 if (ctx->pending_cx_data_sz + index_sz < ctx->cx_data_sz) {
737 size_t size, cx_data_sz; local
764 cx_data_sz = ctx->cx_data_sz;
772 cx_data_sz
[all...]

Completed in 97 milliseconds