view libmpdemux/opt-reg.c @ 4943:511e8d8117e9

proper bsd fix & preventive fix for other archs w/o INT_MAX (INT_MAX is 0x7fffffff in the freebsd headers I have)
author pl
date Tue, 05 Mar 2002 20:15:25 +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);

}