Commit c301e33f authored by Rémi Duraffort's avatar Rémi Duraffort

add_integer wants integers.

(cherry picked from commit 1d698d0f)
Signed-off-by: default avatarRémi Duraffort <ivoire@videolan.org>
parent 2d3c53a2
......@@ -83,8 +83,8 @@ vlc_module_begin()
set_callbacks( OpenDecoder, CloseDecoder )
add_shortcut( "invmem" )
add_integer( "invmem-width", "0", NULL, T_WIDTH, LT_WIDTH, false )
add_integer( "invmem-height", "0", NULL, T_HEIGHT, LT_HEIGHT, false )
add_integer( "invmem-width", 0, NULL, T_WIDTH, LT_WIDTH, false )
add_integer( "invmem-height", 0, NULL, T_HEIGHT, LT_HEIGHT, false )
add_string( "invmem-lock", "0", NULL, T_LOCK, LT_LOCK, true )
add_string( "invmem-unlock", "0", NULL, T_UNLOCK, LT_UNLOCK, true )
add_string( "invmem-data", "0", NULL, T_DATA, LT_DATA, true )
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment