2002-02-11 11:46:27 +00:00
|
|
|
#include "config.h"
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include "cfgparser.h"
|
|
|
|
|
|
|
|
extern void mp_input_register_options(m_config_t* cfg);
|
2002-02-20 17:00:32 +00:00
|
|
|
extern void libmpdemux_register_options(m_config_t* cfg);
|
2002-05-13 13:15:40 +00:00
|
|
|
extern void libvo_register_options(m_config_t* cfg);
|
2002-02-11 11:46:27 +00:00
|
|
|
|
|
|
|
void
|
|
|
|
mp_register_options(m_config_t* cfg) {
|
|
|
|
|
|
|
|
mp_input_register_options(cfg);
|
2002-02-20 17:00:32 +00:00
|
|
|
libmpdemux_register_options(cfg);
|
2002-05-13 13:15:40 +00:00
|
|
|
libvo_register_options(cfg);
|
2002-02-11 11:46:27 +00:00
|
|
|
}
|