view mp-opt-reg.c @ 6008:c0b50929b2cd

Sometimes yuvscaler can't determine the output size/norm of pal/secam/ntsc, so new option "-norm" is implemented for such source files! by Juergen Hammelmann <juergen.hammelmann@gmx.de>
author jaf
date Tue, 07 May 2002 08:39:22 +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);

}