Mercurial > mplayer.hg
annotate aviprint.c @ 719:26786fde68a9
added 'OhFuckOSSLickMyAss'
author | gabucino |
---|---|
date | Mon, 07 May 2001 16:32:10 +0000 |
parents | 1d71e691c059 |
children | 1728d249c783 |
rev | line source |
---|---|
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
353
diff
changeset
|
1 |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
353
diff
changeset
|
2 #include <stdio.h> |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
353
diff
changeset
|
3 #include <stdlib.h> |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
353
diff
changeset
|
4 |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
353
diff
changeset
|
5 //extern int verbose; // defined in mplayer.c |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
353
diff
changeset
|
6 |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
353
diff
changeset
|
7 #include "stream.h" |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
353
diff
changeset
|
8 #include "demuxer.h" |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
353
diff
changeset
|
9 |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
353
diff
changeset
|
10 #include "wine/mmreg.h" |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
353
diff
changeset
|
11 #include "wine/avifmt.h" |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
353
diff
changeset
|
12 #include "wine/vfw.h" |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
353
diff
changeset
|
13 |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
353
diff
changeset
|
14 //#include "codec-cfg.h" |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
353
diff
changeset
|
15 //#include "stheader.h" |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
353
diff
changeset
|
16 |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
353
diff
changeset
|
17 |
1 | 18 void print_avih(MainAVIHeader *h){ |
19 printf("======= AVI Header =======\n"); | |
602 | 20 printf("us/frame: %ld (fps=%5.3f)\n",h->dwMicroSecPerFrame,1000000.0f/(float)h->dwMicroSecPerFrame); |
21 printf("max bytes/sec: %ld\n",h->dwMaxBytesPerSec); | |
22 printf("padding: %ld\n",h->dwPaddingGranularity); | |
23 printf("flags: (%ld)%s%s%s%s%s%s\n",h->dwFlags, | |
1 | 24 (h->dwFlags&AVIF_HASINDEX)?" HAS_INDEX":"", |
25 (h->dwFlags&AVIF_MUSTUSEINDEX)?" MUST_USE_INDEX":"", | |
26 (h->dwFlags&AVIF_ISINTERLEAVED)?" IS_INTERLEAVED":"", | |
27 (h->dwFlags&AVIF_TRUSTCKTYPE)?" TRUST_CKTYPE":"", | |
28 (h->dwFlags&AVIF_WASCAPTUREFILE)?" WAS_CAPTUREFILE":"", | |
29 (h->dwFlags&AVIF_COPYRIGHTED)?" COPYRIGHTED":"" | |
30 ); | |
602 | 31 printf("frames total: %ld initial: %ld\n",h->dwTotalFrames,h->dwInitialFrames); |
32 printf("streams: %ld\n",h->dwStreams); | |
33 printf("Suggested BufferSize: %ld\n",h->dwSuggestedBufferSize); | |
34 printf("Size: %ld x %ld\n",h->dwWidth,h->dwHeight); | |
1 | 35 } |
36 | |
37 void print_strh(AVIStreamHeader *h){ | |
38 printf("======= STREAM Header =======\n"); | |
602 | 39 printf("Type: %.4s FCC: %.4s (%X)\n",(char *)&h->fccType,(char *)&h->fccHandler,(unsigned int)h->fccHandler); |
40 printf("Flags: %ld\n",h->dwFlags); | |
1 | 41 printf("Priority: %d Language: %d\n",h->wPriority,h->wLanguage); |
602 | 42 printf("InitialFrames: %ld\n",h->dwInitialFrames); |
43 printf("Rate: %ld/%ld = %5.3f\n",h->dwRate,h->dwScale,(float)h->dwRate/(float)h->dwScale); | |
44 printf("Start: %ld Len: %ld\n",h->dwStart,h->dwLength); | |
45 printf("Suggested BufferSize: %ld\n",h->dwSuggestedBufferSize); | |
46 printf("Quality %ld\n",h->dwQuality); | |
47 printf("Sample size: %ld\n",h->dwSampleSize); | |
1 | 48 } |
49 | |
50 void print_wave_header(WAVEFORMATEX *h){ | |
51 | |
52 printf("======= WAVE Format =======\n"); | |
53 printf("Format Tag: %d (0x%X)\n",h->wFormatTag,h->wFormatTag); | |
54 printf("Channels: %d\n",h->nChannels); | |
602 | 55 printf("Samplerate: %ld\n",h->nSamplesPerSec); |
56 printf("avg byte/sec: %ld\n",h->nAvgBytesPerSec); | |
1 | 57 printf("Block align: %d\n",h->nBlockAlign); |
58 printf("bits/sample: %d\n",h->wBitsPerSample); | |
59 printf("cbSize: %d\n",h->cbSize); | |
60 } | |
61 | |
62 | |
63 void print_video_header(BITMAPINFOHEADER *h){ | |
64 printf("======= VIDEO Format ======\n"); | |
602 | 65 printf(" biSize %ld\n", h->biSize); |
66 printf(" biWidth %ld\n", h->biWidth); | |
67 printf(" biHeight %ld\n", h->biHeight); | |
1 | 68 printf(" biPlanes %d\n", h->biPlanes); |
69 printf(" biBitCount %d\n", h->biBitCount); | |
602 | 70 printf(" biCompression %ld='%.4s'\n", h->biCompression, (char *)&h->biCompression); |
71 printf(" biSizeImage %ld\n", h->biSizeImage); | |
1 | 72 printf("===========================\n"); |
73 } | |
74 | |
75 | |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
353
diff
changeset
|
76 void print_index(AVIINDEXENTRY *idx,int idx_size){ |
1 | 77 int i; |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
353
diff
changeset
|
78 for(i=0;i<idx_size;i++){ |
602 | 79 printf("%5d: %.4s %4X %08X %ld\n",i, |
80 (char *)&idx[i].ckid, | |
81 (unsigned int)idx[i].dwFlags, | |
82 (unsigned int)idx[i].dwChunkOffset, | |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
353
diff
changeset
|
83 // idx[i].dwChunkOffset+demuxer->movi_start, |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
353
diff
changeset
|
84 idx[i].dwChunkLength |
1 | 85 ); |
86 } | |
87 } | |
88 | |
89 |