Skip to content
Snippets Groups Projects
Commit ec35122f authored by Lyndon Brown's avatar Lyndon Brown Committed by Hugo Beauzée-Luyssen
Browse files

aom: use define for default

parent b10f5a02
No related branches found
No related tags found
1 merge request!1141aom: fix bad option range and improve UX with choice list
......@@ -96,7 +96,7 @@ vlc_module_begin ()
change_integer_range(0, 70 /* MAX_LAG_BUFFERS + MAX_LAP_BUFFERS */ )
add_integer( SOUT_CFG_PREFIX "usage", 0, "Usage (0: good, 1: realtime)", NULL )
change_integer_range( 0, 1 )
add_integer( SOUT_CFG_PREFIX "rc-end-usage", 1, "Usage (0: VBR, 1: CBR, 2: CQ, 3: Q)", NULL )
add_integer( SOUT_CFG_PREFIX "rc-end-usage", AOM_CBR, "Usage (0: VBR, 1: CBR, 2: CQ, 3: Q)", NULL )
change_integer_range( 0, 4 )
#ifdef AOM_CTRL_AV1E_SET_ROW_MT
add_bool( SOUT_CFG_PREFIX "row-mt", false, "Row Multithreading", NULL )
......
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