FS-11425 force g-profile = 0 to vp9

otherwise it complains: [8:Invalid parameter:Profile > 1 not supported in this build configuration]
This commit is contained in:
Seven Du 2019-02-01 10:10:58 +08:00 committed by Andrey Volk
parent f3548c9fa0
commit ddb0661e39
2 changed files with 5 additions and 1 deletions

View File

@ -97,7 +97,7 @@
<!-- <param name="dec-threads" value="cpu/2/4"/> -->
<!-- <param name="enc-threads" value="1"/> -->
<!-- <param name="g-profile" value="0"/> -->
<param name="g-profile" value="0"/>
<!-- DEFAULT | PARTITIONS -->
<!-- <param name="g-error-resilient" value="PARTITIONS"/> -->
<!-- ONE_PASS, FIRST_PASS, LAST_PASS"/> -->

View File

@ -563,6 +563,10 @@ static switch_status_t init_encoder(switch_codec_t *codec)
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_INFO, "config: %s\n", my_cfg->name);
if (context->is_vp9) {
my_cfg->enc_cfg.g_profile = 0; // default build of VP9 only support 0, TODO: remove this
}
if (my_cfg->codecs) {
parse_codec_specific_profile(my_cfg, codec_name);
}