Home | History | Annotate | Download | only in src

Lines Matching defs:options

62   char options[OPTION_BUFFER_SIZE];        // set by vpx_svc_set_options
358 * Parse SVC encoding options
364 static vpx_codec_err_t parse_options(SvcContext *svc_ctx, const char *options) {
371 if (options == NULL) return VPX_CODEC_OK;
372 input_string = strdup(options);
407 vpx_codec_err_t vpx_svc_set_options(SvcContext *svc_ctx, const char *options) {
409 if (svc_ctx == NULL || options == NULL || si == NULL) {
412 strncpy(si->options, options, sizeof(si->options));
413 si->options[sizeof(si->options) - 1] = '\0';
478 // Parse aggregate command line options. Options must start with
479 // "layers=xx" then followed by other options
480 res = parse_options(svc_ctx, si->options);