]> git.sesse.net Git - vlc/commit
* include/variables.h, src/misc/variables.c: you can now use var_Create() directly...
authorGildas Bazin <gbazin@videolan.org>
Wed, 23 Jul 2003 22:01:25 +0000 (22:01 +0000)
committerGildas Bazin <gbazin@videolan.org>
Wed, 23 Jul 2003 22:01:25 +0000 (22:01 +0000)
commit4684a91eafdc7a56414208681294ecccaac9b83c
tree891871b4259938aae47745485bb641e92127d074
parent5b165b7369efb2c31466e0ed0a120ef16a838cc6
* include/variables.h, src/misc/variables.c: you can now use var_Create() directly to create an object variable with an inherited value.
   eg. var_Create( p_vout, "zoom", VLC_VAR_FLOAT | VLC_VAR_DOINHERIT );
   Beware, the object in which you create the var must be attached to a parent for this to work (otherwise we can't navigate the parents hierarchy to find the value to inherit).

* src/input/input.c, src/input/input_programs.c, src/video_output/video_output.c: converted more config_GetFoo() into var_Create()/var_Get();
include/variables.h
src/input/input.c
src/input/input_programs.c
src/misc/variables.c
src/video_output/video_output.c