Home
last modified time | relevance | path

Searched refs:svc_ctx (Results 1 – 3 of 3) sorted by relevance

/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx/src/
Dsvc_encodeframe.c215 static SvcInternal *get_svc_internal(SvcContext *svc_ctx) { in get_svc_internal() argument
216 if (svc_ctx == NULL) return NULL; in get_svc_internal()
217 if (svc_ctx->internal == NULL) { in get_svc_internal()
222 svc_ctx->internal = si; in get_svc_internal()
224 return (SvcInternal *)svc_ctx->internal; in get_svc_internal()
227 static const SvcInternal *get_const_svc_internal(const SvcContext *svc_ctx) { in get_const_svc_internal() argument
228 if (svc_ctx == NULL) return NULL; in get_const_svc_internal()
229 return (const SvcInternal *)svc_ctx->internal; in get_const_svc_internal()
232 static void svc_log_reset(SvcContext *svc_ctx) { in svc_log_reset() argument
233 SvcInternal *const si = (SvcInternal *)svc_ctx->internal; in svc_log_reset()
[all …]
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx/
Dsvc_context.h59 vpx_codec_err_t vpx_svc_set_options(SvcContext *svc_ctx, const char *options);
66 vpx_codec_err_t vpx_svc_set_quantizers(SvcContext *svc_ctx,
75 vpx_codec_err_t vpx_svc_set_scale_factors(SvcContext *svc_ctx,
81 vpx_codec_err_t vpx_svc_init(SvcContext *svc_ctx, vpx_codec_ctx_t *codec_ctx,
87 vpx_codec_err_t vpx_svc_encode(SvcContext *svc_ctx, vpx_codec_ctx_t *codec_ctx,
94 void vpx_svc_release(SvcContext *svc_ctx);
99 const char *vpx_svc_dump_statistics(SvcContext *svc_ctx);
104 const char *vpx_svc_get_message(const SvcContext *svc_ctx);
109 size_t vpx_svc_get_frame_size(const SvcContext *svc_ctx);
114 void *vpx_svc_get_buffer(const SvcContext *svc_ctx);
[all …]
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/examples/
Dvp9_spatial_scalable_encoder.c122 AppInput *app_input, SvcContext *svc_ctx, in parse_command_line() argument
136 svc_ctx->log_level = SVC_LOG_DEBUG; in parse_command_line()
137 svc_ctx->spatial_layers = default_spatial_layers; in parse_command_line()
138 svc_ctx->encoding_mode = default_encoding_mode; in parse_command_line()
164 svc_ctx->encoding_mode = arg_parse_enum_or_int(&arg); in parse_command_line()
178 svc_ctx->spatial_layers = arg_parse_uint(&arg); in parse_command_line()
183 vpx_svc_set_scale_factors(svc_ctx, arg.val); in parse_command_line()
185 vpx_svc_set_quantizers(svc_ctx, arg.val, 0); in parse_command_line()
187 vpx_svc_set_quantizers(svc_ctx, arg.val, 1); in parse_command_line()
277 app_input->frames_to_skip, svc_ctx->encoding_mode, in parse_command_line()
[all …]