Mercurial > mplayer.hg
view etc/cygwin_inttypes.h @ 4927:3022570ad7d4
Extrastereo plugin: increases linearly the difference between left and right
channels (as the XMMS extrastereo plugin) which has some of "live" effect (use
it to hear what I mean)
ex: mplayer media.avi -aop list=extrastereo[:mul=3.4]
The default coefficient (mul) is a float number that defaults to 2.5. If you
set it to 0.0, you will have a mono sound (average of both channels), if you
set it to 1.0, you will have unchanged sound.
A patch for DOCS/sound.html is about to be sent to Gabucino.
author | pl |
---|---|
date | Sun, 03 Mar 2002 14:17:53 +0000 |
parents | 438345c64f3a |
children |
line wrap: on
line source
#ifndef _CYGWIN_INTTYPES_H #define _CYGWIN_INTTYPES_H /* /usr/include/inttypes.h for CYGWIN * Copyleft 2001-2002 by Felix Buenemann * <atmosfear at users.sourceforge.net> * * Should be installed into /usr/include * as inttypes.h */ #if 0 typedef char * caddr_t; typedef char int8_t; typedef unsigned char u_int8_t; typedef short int16_t; typedef unsigned short u_int16_t; typedef int int32_t; typedef unsigned int u_int32_t; typedef long long int64_t; typedef unsigned long long u_int64_t; typedef int32_t register_t; #else #include <sys/types.h> #endif /* 0/1 */ typedef u_int8_t uint8_t; typedef u_int16_t uint16_t; typedef u_int32_t uint32_t; typedef u_int64_t uint64_t; #endif /* _CYGWIN_INTTYPES_H */