Mercurial > mplayer.hg
annotate mp-opt-reg.c @ 4721:e441ca06638d
Works with YUY2 fourcc
author | nick |
---|---|
date | Sat, 16 Feb 2002 07:55:44 +0000 |
parents | 31265995cc3a |
children | 2bf9749cb7c2 |
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 | |
10 | |
11 void | |
12 mp_register_options(m_config_t* cfg) { | |
13 | |
14 #ifdef HAVE_NEW_INPUT | |
15 mp_input_register_options(cfg); | |
16 #endif | |
17 | |
18 } |