Mercurial > mplayer.hg
annotate mp-opt-reg.c @ 6590:bfc209bb3f48
-frames 0 fix, multifile frames support by tibcu
author | alex |
---|---|
date | Fri, 28 Jun 2002 17:13:18 +0000 |
parents | 8e88e92fe331 |
children | b65b78640d49 |
rev | line source |
---|---|
4659 | 1 |
2 #include "config.h" | |
3 #include <stdlib.h> | |
4 #include <stdio.h> | |
5 #include "cfgparser.h" | |
6 | |
7 #ifdef HAVE_NEW_INPUT | |
8 extern void mp_input_register_options(m_config_t* cfg); | |
9 #endif | |
4766 | 10 extern void libmpdemux_register_options(m_config_t* cfg); |
6069
8e88e92fe331
Initial support for dxr2. Based on patch from Tobias Diedrich <ranma@gmx.at>.
albeu
parents:
4766
diff
changeset
|
11 extern void libvo_register_options(m_config_t* cfg); |
4659 | 12 |
13 void | |
14 mp_register_options(m_config_t* cfg) { | |
15 | |
16 #ifdef HAVE_NEW_INPUT | |
17 mp_input_register_options(cfg); | |
18 #endif | |
4766 | 19 libmpdemux_register_options(cfg); |
6069
8e88e92fe331
Initial support for dxr2. Based on patch from Tobias Diedrich <ranma@gmx.at>.
albeu
parents:
4766
diff
changeset
|
20 libvo_register_options(cfg); |
4659 | 21 } |