[vlc-commits] [Git][videolan/vlc][master] aom: fix row-mt flag
Felix Paul Kühne (@fkuehne)
gitlab at videolan.org
Fri Sep 6 17:34:21 UTC 2024
Felix Paul Kühne pushed to branch master at VideoLAN / VLC
Commits:
29c13755 by Tristan Matthews at 2024-09-06T16:59:47+00:00
aom: fix row-mt flag
When using var_GetBool, "--sout-aom-row-mt" was a noop.
- - - - -
1 changed file:
- modules/codec/aom.c
Changes:
=====================================
modules/codec/aom.c
=====================================
@@ -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. */
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/29c13755d16e6782ad48257b02192616610347e8
--
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/29c13755d16e6782ad48257b02192616610347e8
You're receiving this email because of your account on code.videolan.org.
VideoLAN code repository instance
More information about the vlc-commits
mailing list