Mercurial > mplayer.hg
view libmpdemux/opt-reg.c @ 4860:bfe0c6e9359c
A first attempt to document the playtree system
author | albeu |
---|---|
date | Mon, 25 Feb 2002 13:59:39 +0000 |
parents | d0c2c8af46b4 |
children | f0b933918a22 |
line wrap: on
line source
#include "config.h" #include <stdlib.h> #include <stdio.h> #include "../cfgparser.h" extern void demux_audio_register_options(m_config_t* cfg); extern void demuxer_register_options(m_config_t* cfg); void libmpdemux_register_options(m_config_t* cfg) { demux_audio_register_options(cfg); demuxer_register_options(cfg); }