Searched refs:max_sz (Results 1 – 2 of 2) sorted by relevance
20 unsigned int max_sz; /* Absolute size of the queue */ member36 assert(index < ctx->max_sz); in pop()37 if(++index >= ctx->max_sz) in pop()38 index -= ctx->max_sz; in pop()53 for(i = 0; i < ctx->max_sz; i++) in vp8_lookahead_destroy()87 ctx->max_sz = depth; in vp8_lookahead_init()116 if(ctx->sz + 2 > ctx->max_sz) in vp8_lookahead_push()126 if (ctx->max_sz == 1 && active_map && !flags) in vp8_lookahead_push()184 if(ctx->sz && (drain || ctx->sz == ctx->max_sz - 1)) in vp8_lookahead_pop()202 assert(index < ctx->max_sz - 1); in vp8_lookahead_peek()[all …]
22 unsigned int max_sz; /* Absolute size of the queue */ member36 assert(index < ctx->max_sz); in pop()37 if (++index >= ctx->max_sz) in pop()38 index -= ctx->max_sz; in pop()49 for (i = 0; i < ctx->max_sz; i++) in vp9_lookahead_destroy()75 ctx->max_sz = depth; in vp9_lookahead_init()102 if (ctx->sz + 1 + MAX_PRE_FRAMES > ctx->max_sz) in vp9_lookahead_push()115 if (ctx->max_sz == 1 && active_map && !flags) { in vp9_lookahead_push()169 if (ctx->sz && (drain || ctx->sz == ctx->max_sz - MAX_PRE_FRAMES)) { in vp9_lookahead_pop()185 if (index >= (int)ctx->max_sz) in vp9_lookahead_peek()[all …]