Mercurial > mplayer.hg
annotate mp-opt-reg.c @ 6473:6c45b8bf9a3e
date: 2002/06/16 09:10:00; author: nickols_k; state: Exp; lines: +17 -13
fixed some DOS-memory leaks
patch adopted from mpxp by Tibcu, this fixes vesaout crashes after playing
multiple files.
author | atmos4 |
---|---|
date | Fri, 21 Jun 2002 02:20:30 +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 } |