Searched defs:svc_ctx (Results 1 - 2 of 2) sorted by relevance

/external/libvpx/libvpx/vpx/src/
H A Dsvc_encodeframe.c82 static SvcInternal_t *get_svc_internal(SvcContext *svc_ctx) { argument
83 if (svc_ctx == NULL) return NULL;
84 if (svc_ctx->internal == NULL) {
89 svc_ctx->internal = si;
91 return (SvcInternal_t *)svc_ctx->internal;
95 const SvcContext *svc_ctx) {
96 if (svc_ctx == NULL) return NULL;
97 return (const SvcInternal_t *)svc_ctx->internal;
100 static void svc_log_reset(SvcContext *svc_ctx) { argument
101 SvcInternal_t *const si = (SvcInternal_t *)svc_ctx
94 get_const_svc_internal( const SvcContext *svc_ctx) argument
105 svc_log(SvcContext *svc_ctx, SVC_LOG_LEVEL level, const char *fmt, ...) argument
158 parse_layer_options_from_string(SvcContext *svc_ctx, LAYER_OPTION_TYPE type, const char *input, int *option0, int *option1) argument
203 parse_options(SvcContext *svc_ctx, const char *options) argument
290 vpx_svc_set_options(SvcContext *svc_ctx, const char *options) argument
301 assign_layer_bitrates(const SvcContext *svc_ctx, vpx_codec_enc_cfg_t *const enc_cfg) argument
383 vpx_svc_init(SvcContext *svc_ctx, vpx_codec_ctx_t *codec_ctx, vpx_codec_iface_t *iface, vpx_codec_enc_cfg_t *enc_cfg) argument
508 vpx_svc_encode(SvcContext *svc_ctx, vpx_codec_ctx_t *codec_ctx, struct vpx_image *rawimg, vpx_codec_pts_t pts, int64_t duration, int deadline) argument
581 vpx_svc_get_message(const SvcContext *svc_ctx) argument
593 vpx_svc_dump_statistics(SvcContext *svc_ctx) argument
652 vpx_svc_release(SvcContext *svc_ctx) argument
[all...]
/external/libvpx/libvpx/examples/
H A Dvp9_spatial_svc_encoder.c152 AppInput *app_input, SvcContext *svc_ctx,
167 svc_ctx->log_level = SVC_LOG_DEBUG;
168 svc_ctx->spatial_layers = default_spatial_layers;
169 svc_ctx->temporal_layers = default_temporal_layers;
170 svc_ctx->temporal_layering_mode = default_temporal_layering_mode;
172 svc_ctx->output_rc_stat = default_output_rc_stats;
174 svc_ctx->speed = default_speed;
175 svc_ctx->threads = default_threads;
214 svc_ctx->spatial_layers = arg_parse_uint(&arg);
216 svc_ctx
151 parse_command_line(int argc, const char **argv_, AppInput *app_input, SvcContext *svc_ctx, vpx_codec_enc_cfg_t *enc_cfg) argument
548 SvcContext svc_ctx; local
[all...]

Completed in 129 milliseconds