Mercurial > mplayer.hg
view mp-opt-reg.c @ 5199:72817be5265f
Automatically use avcodec if it exists, otherwise fall back to fame (due
to some unresolved problems with fame)
Bitrate is set to a constant 6e6
Fixed a bug occuring with round()
Fixed a little #elif bug that would cause compilation to fail when not
compiling with avcodec
author | mswitch |
---|---|
date | Tue, 19 Mar 2002 15:08:15 +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); }