view mp-opt-reg.c @ 5563:71372b7125cf

Sorry, fix vobsub duration the arpi way. Also added origin parsing, those values are to adjust subtitle placement, they should be added to start_row and end_row and start_col and end_col, but haven't yet found the proper place to hook them in.
author atmos4
date Thu, 11 Apr 2002 16:50:52 +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);

}