Skip to content
Snippets Groups Projects
Commit 29c13755 authored by Tristan Matthews's avatar Tristan Matthews Committed by Felix Paul Kühne
Browse files

aom: fix row-mt flag

When using var_GetBool, "--sout-aom-row-mt" was a noop.
parent 6ffede3f
No related branches found
No related tags found
1 merge request!5989aom: fix row-mt flag
Pipeline #511003 passed with stage
in 12 minutes and 34 seconds
......@@ -496,7 +496,7 @@ static int OpenEncoder(vlc_object_t *p_this)
int i_tile_rows = var_InheritInteger( p_enc, SOUT_CFG_PREFIX "tile-rows" );
int i_tile_columns = var_InheritInteger( p_enc, SOUT_CFG_PREFIX "tile-columns" );
#ifdef AOM_CTRL_AV1E_SET_ROW_MT
bool b_row_mt = var_GetBool( p_enc, SOUT_CFG_PREFIX "row-mt" );
bool b_row_mt = var_InheritBool( p_enc, SOUT_CFG_PREFIX "row-mt" );
#endif
/* TODO: implement higher profiles, bit depths and other pixformats. */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment