Mercurial > mplayer.hg
annotate mp-opt-reg.c @ 6565:1075fe5fc8c3
new global codec flag: align16
it means that width/height should be round up to n*16 (some buggy codec
needs it to avoid sig11 / image distortions)
author | arpi |
---|---|
date | Tue, 25 Jun 2002 22:26:34 +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 } |