Mercurial > mplayer.hg
view loader/debug.h @ 32678:c48020f894a2
Increase the bitrate range maximum value.
This about quadruples the maximum from 24Mbit to to 100Mbit.
Maybe use INT_MAX or something to not limit the user in any way?
Original patch by Krishna Gadepalli and Debargha Mukherjee.
Signed-off-by: Tobias Diedrich <ranma@google.com>
author | ranma |
---|---|
date | Thu, 06 Jan 2011 14:38:55 +0000 |
parents | a8ea87c71d18 |
children |
line wrap: on
line source
#ifndef MPLAYER_DEBUG_H #define MPLAYER_DEBUG_H #ifdef DEBUG #define TRACE printf #define dbg_printf printf #else #define TRACE(...) #define dbg_printf(...) #endif #endif /* MPLAYER_DEBUG_H */