view mp-opt-reg.c @ 5085:3d558414320f

workaround in palette reader for statunit6.mov, needed to implement support for flag&0x4 and small changes to avoid some sig11-places in the badly muxed cinepak pro movs
author alex
date Fri, 15 Mar 2002 15:57:57 +0000
parents 2bf9749cb7c2
children 8e88e92fe331
line wrap: on
line source


#include "config.h"
#include <stdlib.h>
#include <stdio.h>
#include "cfgparser.h"

#ifdef HAVE_NEW_INPUT
extern void mp_input_register_options(m_config_t* cfg);
#endif
extern void libmpdemux_register_options(m_config_t* cfg);

void
mp_register_options(m_config_t* cfg) {
  
#ifdef HAVE_NEW_INPUT
  mp_input_register_options(cfg);
#endif
  libmpdemux_register_options(cfg);

}