CVS: main m_config.h,1.3,1.4 cfgparser.h,1.19,1.20
Update of /cvsroot/mplayer/main In directory mail:/var/tmp.root/cvs-serv16894 Modified Files: m_config.h cfgparser.h Log Message: min/max float->double Index: m_config.h =================================================================== RCS file: /cvsroot/mplayer/main/m_config.h,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- m_config.h 12 Apr 2003 13:40:30 -0000 1.3 +++ m_config.h 12 Aug 2003 18:00:08 -0000 1.4 @@ -71,7 +71,7 @@ void *p; struct m_option_type* type; unsigned int flags; - float min,max; + double min,max; void* priv; }; Index: cfgparser.h =================================================================== RCS file: /cvsroot/mplayer/main/cfgparser.h,v retrieving revision 1.19 retrieving revision 1.20 diff -u -r1.19 -r1.20 --- cfgparser.h 4 Jul 2003 21:35:43 -0000 1.19 +++ cfgparser.h 12 Aug 2003 18:00:08 -0000 1.20 @@ -57,7 +57,7 @@ void *p; unsigned int type; unsigned int flags; - float min,max; + double min,max; /* Use this field when your need to do something before a new value is assigned to your option */ cfg_default_func_t default_func;
Hi, * Arpi of Ize <arpi@mplayerhq.hu> [2003-08-12 20:07]:
Update of /cvsroot/mplayer/main In directory mail:/var/tmp.root/cvs-serv16894
Modified Files: m_config.h cfgparser.h Log Message: min/max float->double
Missing chunk in m_option.h (patch attached). (Error seen Reading config file /home/pl/.mplayer/config Warning unknown option vo at line 14 Warning unknown option ao at line 17 Warning unknown option fs at line 20 ... ) I'd apply it but not too sure about that code and the comment above the code in m_options.h lets me think it may not be a proper fix (removing the legacy code may be cleaner ?) Fyi, the comment is: /// This is the same thing as a struct config it have been renamed /// to remove this config_t, m_config_t mess. Sorry about that, /// config_t is still provided for backward compat.
Index: m_config.h =================================================================== RCS file: /cvsroot/mplayer/main/m_config.h,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- m_config.h 12 Apr 2003 13:40:30 -0000 1.3 +++ m_config.h 12 Aug 2003 18:00:08 -0000 1.4 @@ -71,7 +71,7 @@ void *p; struct m_option_type* type; unsigned int flags; - float min,max; + double min,max; void* priv; };
Index: cfgparser.h =================================================================== RCS file: /cvsroot/mplayer/main/cfgparser.h,v retrieving revision 1.19 retrieving revision 1.20 diff -u -r1.19 -r1.20 --- cfgparser.h 4 Jul 2003 21:35:43 -0000 1.19 +++ cfgparser.h 12 Aug 2003 18:00:08 -0000 1.20 @@ -57,7 +57,7 @@ void *p; unsigned int type; unsigned int flags; - float min,max; + double min,max; /* Use this field when your need to do something before a new value is assigned to your option */ cfg_default_func_t default_func;
-- Best regards, Pierre Lombard
Hi,
Missing chunk in m_option.h (patch attached). Applied
(Error seen Reading config file /home/pl/.mplayer/config Warning unknown option vo at line 14 Warning unknown option ao at line 17 Warning unknown option fs at line 20 ... ) I've noticed that too
I want to thank you for the quick fixes you provide nowadays! Aren't you interested in a big bug-hunting & fixing party? (it's big if more than 1 ppl are doing it ;)) -- Alex Beregszaszi <alex@fsn.hu> (MPlayer Core Developer -- http://www.mplayerhq.hu/)
Alex Beregszaszi writes:
I want to thank you for the quick fixes you provide nowadays! Aren't you interested in a big bug-hunting & fixing party? (it's big if more than 1 ppl are doing it ;))
And he who fixes the most bugs is voted developer of the month? :) Let's say that one spellchecked file is equal to one bug and I'm game ;) Diego
participants (4)
-
Alex Beregszaszi -
Arpi of Ize -
Diego Biurrun -
Pierre Lombard