Mercurial > mplayer.hg
view TOOLS/alaw-gen.c @ 10263:0df8816f4665
TiVo demuxer and sub-cc/osd decoder
patch by usenet@wingert.org
(http://tivo-mplayer.sourceforge.net/releases/MPlayer-20030501-tivo-patch.gz)
changes by me:
- spit demux_ty to demux_ty and demux_ty_osd (later handles mpeg user-data
decoding, ie sub-cc and osd)
- removed some cosmetics changes
- some compile fixes (gcc3 specific variable decl etc)
author | arpi |
---|---|
date | Mon, 09 Jun 2003 00:24:49 +0000 |
parents | 714bc8aadb68 |
children | f15f95c2671a |
line wrap: on
line source
#include <stdio.h> #include <stdlib.h> // sox -t raw -A -r 8000 -b alaw.alaw -t sw alaw.out int main(){ int i; FILE *f; f=fopen("alaw.dat","wb"); for(i=0;i<256;i++) fwrite(&i,1,1,f); fclose(f); system("sox -t raw -A -r 8000 -b alaw.dat -t sw alaw.out"); printf("// Generated by TOOLS/alaw-gen.c\n"); printf("\nshort alaw2short[]={\n"); f=fopen("alaw.out","rb"); for(i=0;i<256;i++){ signed short x; fread(&x,2,1,f); printf("%6d",x); if(i!=255) putchar(','); if((i&7)==7) printf("\n"); } fclose(f); printf("};\n"); system("sox -t raw -U -r 8000 -b alaw.dat -t sw alaw.out"); printf("\nshort ulaw2short[]={\n"); f=fopen("alaw.out","rb"); for(i=0;i<256;i++){ signed short x; fread(&x,2,1,f); printf("%6d",x); if(i!=255) putchar(','); if((i&7)==7) printf("\n"); } fclose(f); printf("};\n"); }