Mercurial > mplayer.hg
annotate libvo/font_load.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 | c3e3b0ae4d06 |
children | 4e64fca268e9 |
rev | line source |
---|---|
213 | 1 |
2 typedef struct { | |
3 unsigned char *bmp; | |
4 unsigned char *pal; | |
5 int w,h,c; | |
6 } raw_file; | |
7 | |
8 typedef struct { | |
214 | 9 char *name; |
1353 | 10 char *fpath; |
213 | 11 int spacewidth; |
12 int charspace; | |
13 int height; | |
14 // char *fname_a; | |
15 // char *fname_b; | |
16 raw_file* pic_a[16]; | |
17 raw_file* pic_b[16]; | |
706
8a7666a78f83
better .smi support and display two-byte characters- patch by Sunjin Yang
arpi_esp
parents:
339
diff
changeset
|
18 short font[65536]; |
8a7666a78f83
better .smi support and display two-byte characters- patch by Sunjin Yang
arpi_esp
parents:
339
diff
changeset
|
19 short start[65536]; |
8a7666a78f83
better .smi support and display two-byte characters- patch by Sunjin Yang
arpi_esp
parents:
339
diff
changeset
|
20 short width[65536]; |
213 | 21 } font_desc_t; |
22 | |
339 | 23 raw_file* load_raw(char *name,int verbose); |
24 font_desc_t* read_font_desc(char* fname,float factor,int verbose); |