view libmpdemux/opt-reg.c @ 6603:6eab60ea6c11

colorspace converter tests (memory corruption tests at different width/src/dst) quite impressive results only 1 of the 13 rgb->rgb converters fails for the c versions ... sadly only 1 of the mmx converters passes though :( ... i feared allready that last mplayerxp merge reversed the bugfixes :((((
author michael
date Sat, 29 Jun 2002 15:01:23 +0000
parents f0b933918a22
children
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);
extern void demux_rwaudio_register_options(m_config_t* cfg);
#ifdef HAVE_CDDA
extern void cdda_register_options(m_config_t* cfg);
#endif

void libmpdemux_register_options(m_config_t* cfg) {

  demux_audio_register_options(cfg);
  demuxer_register_options(cfg);
  demux_rwaudio_register_options(cfg);
#ifdef HAVE_CDDA
  cdda_register_options(cfg);
#endif
}