Home
last modified time | relevance | path

Searched refs:lookahead_ctx (Results 1 – 12 of 12) sorted by relevance

/external/libvpx/libvpx/vp8/encoder/
Dlookahead.h26 struct lookahead_ctx;
35 struct lookahead_ctx *vp8_lookahead_init(unsigned int width,
42 void vp8_lookahead_destroy(struct lookahead_ctx *ctx);
59 int vp8_lookahead_push(struct lookahead_ctx *ctx, YV12_BUFFER_CONFIG *src,
74 struct lookahead_entry *vp8_lookahead_pop(struct lookahead_ctx *ctx, int drain);
86 struct lookahead_entry *vp8_lookahead_peek(struct lookahead_ctx *ctx,
93 unsigned int vp8_lookahead_depth(struct lookahead_ctx *ctx);
Dlookahead.c18 struct lookahead_ctx { struct
27 static struct lookahead_entry *pop(struct lookahead_ctx *ctx, in pop() argument
38 void vp8_lookahead_destroy(struct lookahead_ctx *ctx) { in vp8_lookahead_destroy()
52 struct lookahead_ctx *vp8_lookahead_init(unsigned int width, in vp8_lookahead_init()
55 struct lookahead_ctx *ctx = NULL; in vp8_lookahead_init()
91 int vp8_lookahead_push(struct lookahead_ctx *ctx, YV12_BUFFER_CONFIG *src, in vp8_lookahead_push()
147 struct lookahead_entry *vp8_lookahead_pop(struct lookahead_ctx *ctx, in vp8_lookahead_pop()
159 struct lookahead_entry *vp8_lookahead_peek(struct lookahead_ctx *ctx, in vp8_lookahead_peek()
184 unsigned int vp8_lookahead_depth(struct lookahead_ctx *ctx) { return ctx->sz; } in vp8_lookahead_depth()
Donyx_int.h291 struct lookahead_ctx *lookahead;
/external/libaom/libaom/av1/encoder/
Dlookahead.h34 struct lookahead_ctx { struct
47 struct lookahead_ctx *av1_lookahead_init( argument
54 void av1_lookahead_destroy(struct lookahead_ctx *ctx);
71 int av1_lookahead_push(struct lookahead_ctx *ctx, YV12_BUFFER_CONFIG *src,
85 struct lookahead_entry *av1_lookahead_pop(struct lookahead_ctx *ctx, int drain);
94 struct lookahead_entry *av1_lookahead_peek(struct lookahead_ctx *ctx,
101 unsigned int av1_lookahead_depth(struct lookahead_ctx *ctx);
Dlookahead.c22 static struct lookahead_entry *pop(struct lookahead_ctx *ctx, int *idx) { in pop()
32 void av1_lookahead_destroy(struct lookahead_ctx *ctx) { in av1_lookahead_destroy()
44 struct lookahead_ctx *av1_lookahead_init( in av1_lookahead_init()
48 struct lookahead_ctx *ctx = NULL; in av1_lookahead_init()
87 int av1_lookahead_push(struct lookahead_ctx *ctx, YV12_BUFFER_CONFIG *src, in av1_lookahead_push()
186 struct lookahead_entry *av1_lookahead_pop(struct lookahead_ctx *ctx, in av1_lookahead_pop()
197 struct lookahead_entry *av1_lookahead_peek(struct lookahead_ctx *ctx, in av1_lookahead_peek()
220 unsigned int av1_lookahead_depth(struct lookahead_ctx *ctx) { return ctx->sz; } in av1_lookahead_depth()
Dencoder.h723 struct lookahead_ctx *lookahead;
Dencode_strategy.c533 static int is_forced_keyframe_pending(struct lookahead_ctx *lookahead, in is_forced_keyframe_pending()
/external/libvpx/libvpx/vp9/encoder/
Dvp9_lookahead.h34 struct lookahead_ctx { struct
47 struct lookahead_ctx *vp9_lookahead_init(unsigned int width, argument
58 void vp9_lookahead_destroy(struct lookahead_ctx *ctx);
75 int vp9_lookahead_push(struct lookahead_ctx *ctx, YV12_BUFFER_CONFIG *src,
92 struct lookahead_entry *vp9_lookahead_pop(struct lookahead_ctx *ctx, int drain);
101 struct lookahead_entry *vp9_lookahead_peek(struct lookahead_ctx *ctx,
108 unsigned int vp9_lookahead_depth(struct lookahead_ctx *ctx);
Dvp9_lookahead.c22 static struct lookahead_entry *pop(struct lookahead_ctx *ctx, int *idx) { in pop()
32 void vp9_lookahead_destroy(struct lookahead_ctx *ctx) { in vp9_lookahead_destroy()
44 struct lookahead_ctx *vp9_lookahead_init(unsigned int width, in vp9_lookahead_init()
52 struct lookahead_ctx *ctx = NULL; in vp9_lookahead_init()
85 int vp9_lookahead_push(struct lookahead_ctx *ctx, YV12_BUFFER_CONFIG *src, in vp9_lookahead_push()
190 struct lookahead_entry *vp9_lookahead_pop(struct lookahead_ctx *ctx, in vp9_lookahead_pop()
201 struct lookahead_entry *vp9_lookahead_peek(struct lookahead_ctx *ctx, in vp9_lookahead_peek()
224 unsigned int vp9_lookahead_depth(struct lookahead_ctx *ctx) { return ctx->sz; } in vp9_lookahead_depth()
Dvp9_svc_layercontext.h233 struct lookahead_ctx *ctx,
Dvp9_encoder.h572 struct lookahead_ctx *lookahead;
Dvp9_svc_layercontext.c910 struct lookahead_ctx *ctx, in vp9_svc_lookahead_pop()