Mercurial > mplayer.hg
annotate TOOLS/vivodump.c @ 13783:4277e06630bf
compilation fix, mostly by Reza Jelveh
author | diego |
---|---|
date | Thu, 28 Oct 2004 00:50:21 +0000 |
parents | c671e9adbe22 |
children | 7d3b84ddd2fd |
rev | line source |
---|---|
2665 | 1 #include <stdio.h> |
2667 | 2 #include <stdlib.h> |
3 #include <string.h> | |
13783 | 4 #include <inttypes.h> |
2667 | 5 |
13783 | 6 #include "loader/wine/mmreg.h" |
7 #include "loader/wine/avifmt.h" | |
8 #include "loader/wine/vfw.h" | |
9 | |
10 #include "libmpdemux/muxer.h" | |
2667 | 11 |
13783 | 12 char *info_name; |
13 char *info_artist; | |
14 char *info_genre; | |
15 char *info_subject; | |
16 char *info_copyright; | |
17 char *info_sourceform; | |
18 char *info_comment; | |
2665 | 19 |
20 static const short h263_format[8][2] = { | |
21 { 0, 0 }, | |
22 { 128, 96 }, | |
23 { 176, 144 }, | |
24 { 352, 288 }, | |
25 { 704, 576 }, | |
26 { 1408, 1152 }, | |
2696 | 27 { 320, 240 } |
2665 | 28 }; |
29 | |
30 unsigned char* buffer; | |
31 int bufptr=0; | |
32 int bitcnt=0; | |
33 unsigned char buf=0; | |
34 | |
35 unsigned int x_get_bits(int n){ | |
36 unsigned int x=0; | |
37 while(n-->0){ | |
38 if(!bitcnt){ | |
39 // fill buff | |
40 buf=buffer[bufptr++]; | |
41 bitcnt=8; | |
42 } | |
43 //x=(x<<1)|(buf&1);buf>>=1; | |
44 x=(x<<1)|(buf>>7);buf<<=1; | |
45 --bitcnt; | |
46 } | |
47 return x; | |
48 } | |
49 | |
50 #define get_bits(xxx,n) x_get_bits(n) | |
51 #define get_bits1(xxx) x_get_bits(1) | |
52 #define skip_bits(xxx,n) x_get_bits(n) | |
53 #define skip_bits1(xxx) x_get_bits(1) | |
54 | |
2696 | 55 int format; |
56 int width=320; | |
57 int height=240; | |
2667 | 58 |
2665 | 59 /* most is hardcoded. should extend to handle all h263 streams */ |
60 int h263_decode_picture_header(unsigned char *b_ptr) | |
61 { | |
2696 | 62 int i; |
63 | |
64 for(i=0;i<16;i++) printf(" %02X",b_ptr[i]); printf("\n"); | |
2665 | 65 |
66 buffer=b_ptr; | |
67 bufptr=bitcnt=buf=0; | |
68 | |
69 /* picture header */ | |
2696 | 70 if (get_bits(&s->gb, 22) != 0x20){ |
71 printf("bad picture header\n"); | |
2665 | 72 return -1; |
2696 | 73 } |
2665 | 74 skip_bits(&s->gb, 8); /* picture timestamp */ |
75 | |
2696 | 76 if (get_bits1(&s->gb) != 1){ |
77 printf("bad marker\n"); | |
2665 | 78 return -1; /* marker */ |
2696 | 79 } |
80 if (get_bits1(&s->gb) != 0){ | |
81 printf("bad h263 id\n"); | |
2665 | 82 return -1; /* h263 id */ |
2696 | 83 } |
2665 | 84 skip_bits1(&s->gb); /* split screen off */ |
85 skip_bits1(&s->gb); /* camera off */ | |
86 skip_bits1(&s->gb); /* freeze picture release off */ | |
87 | |
88 format = get_bits(&s->gb, 3); | |
89 | |
90 if (format != 7) { | |
91 printf("h263_plus = 0 format = %d\n",format); | |
92 /* H.263v1 */ | |
93 width = h263_format[format][0]; | |
94 height = h263_format[format][1]; | |
95 printf("%d x %d\n",width,height); | |
2696 | 96 // if (!width) return -1; |
2665 | 97 |
98 printf("pict_type=%d\n",get_bits1(&s->gb)); | |
99 printf("unrestricted_mv=%d\n",get_bits1(&s->gb)); | |
100 #if 1 | |
101 printf("SAC: %d\n",get_bits1(&s->gb)); | |
102 printf("advanced prediction mode: %d\n",get_bits1(&s->gb)); | |
103 printf("PB frame: %d\n",get_bits1(&s->gb)); | |
104 #else | |
105 if (get_bits1(&s->gb) != 0) | |
106 return -1; /* SAC: off */ | |
107 if (get_bits1(&s->gb) != 0) | |
108 return -1; /* advanced prediction mode: off */ | |
109 if (get_bits1(&s->gb) != 0) | |
110 return -1; /* not PB frame */ | |
111 #endif | |
112 printf("qscale=%d\n",get_bits(&s->gb, 5)); | |
113 skip_bits1(&s->gb); /* Continuous Presence Multipoint mode: off */ | |
114 } else { | |
115 printf("h263_plus = 1\n"); | |
116 /* H.263v2 */ | |
2696 | 117 if (get_bits(&s->gb, 3) != 1){ |
118 printf("H.263v2 A error\n"); | |
2665 | 119 return -1; |
2696 | 120 } |
121 if (get_bits(&s->gb, 3) != 6){ /* custom source format */ | |
122 printf("custom source format\n"); | |
2665 | 123 return -1; |
2696 | 124 } |
2665 | 125 skip_bits(&s->gb, 12); |
126 skip_bits(&s->gb, 3); | |
127 printf("pict_type=%d\n",get_bits(&s->gb, 3) + 1); | |
128 // if (s->pict_type != I_TYPE && | |
129 // s->pict_type != P_TYPE) | |
130 // return -1; | |
131 skip_bits(&s->gb, 7); | |
132 skip_bits(&s->gb, 4); /* aspect ratio */ | |
133 width = (get_bits(&s->gb, 9) + 1) * 4; | |
134 skip_bits1(&s->gb); | |
135 height = get_bits(&s->gb, 9) * 4; | |
136 printf("%d x %d\n",width,height); | |
2696 | 137 //if (height == 0) |
138 // return -1; | |
2665 | 139 printf("qscale=%d\n",get_bits(&s->gb, 5)); |
140 } | |
141 | |
142 /* PEI */ | |
143 while (get_bits1(&s->gb) != 0) { | |
144 skip_bits(&s->gb, 8); | |
145 } | |
146 // s->f_code = 1; | |
147 // s->width = width; | |
148 // s->height = height; | |
149 return 0; | |
150 } | |
151 | |
2667 | 152 int postable[32768]; |
2665 | 153 |
154 int main(){ | |
155 int c; | |
156 unsigned int head=-1; | |
157 int pos=0; | |
2667 | 158 int frames=0; |
3233 | 159 FILE *f=fopen("paulvandykforanangel.viv","rb"); |
2696 | 160 FILE *f2=fopen("GB1.avi","wb"); |
9014
c671e9adbe22
Cleanup of the muxer API, func parameters muxer & muxer_f eliminated.
arpi
parents:
8585
diff
changeset
|
161 muxer_t* avi=muxer_new_muxer(MUXER_TYPE_AVI,f2); |
8585 | 162 muxer_stream_t* mux=muxer_new_stream(avi,MUXER_TYPE_VIDEO); |
2672
1ff47e4ff44d
works! copy video steram to .avi file playable with ivvideo.dll
arpi
parents:
2667
diff
changeset
|
163 //unsigned char* buffer=malloc(0x200000); |
2696 | 164 int i,len; |
2672
1ff47e4ff44d
works! copy video steram to .avi file playable with ivvideo.dll
arpi
parents:
2667
diff
changeset
|
165 int v_id=0; |
1ff47e4ff44d
works! copy video steram to .avi file playable with ivvideo.dll
arpi
parents:
2667
diff
changeset
|
166 int flag=0; |
2696 | 167 int flag2=0; |
3233 | 168 int prefix=0; |
2667 | 169 |
170 mux->buffer_size=0x200000; | |
171 mux->buffer=malloc(mux->buffer_size); | |
172 | |
173 mux->h.dwScale=1; | |
174 mux->h.dwRate=10; | |
2665 | 175 |
2667 | 176 mux->bih=malloc(sizeof(BITMAPINFOHEADER)); |
177 mux->bih->biSize=sizeof(BITMAPINFOHEADER); | |
178 mux->bih->biPlanes=1; | |
179 mux->bih->biBitCount=24; | |
180 mux->bih->biCompression=0x6f766976;// 7669766f; | |
9014
c671e9adbe22
Cleanup of the muxer API, func parameters muxer & muxer_f eliminated.
arpi
parents:
8585
diff
changeset
|
181 muxer_write_header(avi); |
2667 | 182 |
2696 | 183 /* |
184 c=fgetc(f); if(c) printf("error! not vivo file?\n"); | |
185 len=0; | |
186 while((c=fgetc(f))>=0x80) len+=0x80*(c&0x0F); | |
187 len+=c; | |
188 printf("hdr1: %d\n",len); | |
189 for(i=0;i<len;i++) fgetc(f); | |
190 */ | |
191 | |
2672
1ff47e4ff44d
works! copy video steram to .avi file playable with ivvideo.dll
arpi
parents:
2667
diff
changeset
|
192 while((c=fgetc(f))>=0){ |
2696 | 193 |
3233 | 194 printf("%08X %02X\n",ftell(f),c); |
195 | |
196 prefix=0; | |
197 if(c==0x82){ | |
198 prefix=1; | |
199 //continue; | |
200 c=fgetc(f); | |
201 printf("%08X %02X\n",ftell(f),c); | |
202 } | |
2672
1ff47e4ff44d
works! copy video steram to .avi file playable with ivvideo.dll
arpi
parents:
2667
diff
changeset
|
203 |
2696 | 204 if(c==0x00){ |
205 // header | |
206 int len=0; | |
207 while((c=fgetc(f))>=0x80) len+=0x80*(c&0x0F); | |
208 len+=c; | |
209 printf("header: 00 (%d)\n",len); | |
210 for(i=0;i<len;i++) fgetc(f); | |
211 continue; | |
212 } | |
213 | |
2672
1ff47e4ff44d
works! copy video steram to .avi file playable with ivvideo.dll
arpi
parents:
2667
diff
changeset
|
214 if((c&0xF0)==0x40){ |
1ff47e4ff44d
works! copy video steram to .avi file playable with ivvideo.dll
arpi
parents:
2667
diff
changeset
|
215 // audio |
3233 | 216 len=24; |
217 if(prefix) len=fgetc(f); | |
218 printf("audio: %02X (%d)\n",c,len); | |
219 for(i=0;i<len;i++) fgetc(f); | |
2672
1ff47e4ff44d
works! copy video steram to .avi file playable with ivvideo.dll
arpi
parents:
2667
diff
changeset
|
220 continue; |
1ff47e4ff44d
works! copy video steram to .avi file playable with ivvideo.dll
arpi
parents:
2667
diff
changeset
|
221 } |
2696 | 222 if((c&0xF0)==0x30){ |
223 // audio | |
3233 | 224 len=40; |
225 if(prefix) len=fgetc(f); | |
226 printf("audio: %02X (%d)\n",c,len); | |
227 for(i=0;i<len;i++) fgetc(f); | |
2696 | 228 continue; |
229 } | |
230 if(flag2 || (((c&0xF0)==0x10 || (c&0xF0)==0x20) && (c&0x0F)!=(v_id&0xF))){ | |
2672
1ff47e4ff44d
works! copy video steram to .avi file playable with ivvideo.dll
arpi
parents:
2667
diff
changeset
|
231 // end of frame: |
1ff47e4ff44d
works! copy video steram to .avi file playable with ivvideo.dll
arpi
parents:
2667
diff
changeset
|
232 printf("Frame size: %d\n",mux->buffer_len); |
1ff47e4ff44d
works! copy video steram to .avi file playable with ivvideo.dll
arpi
parents:
2667
diff
changeset
|
233 h263_decode_picture_header(mux->buffer); |
9014
c671e9adbe22
Cleanup of the muxer API, func parameters muxer & muxer_f eliminated.
arpi
parents:
8585
diff
changeset
|
234 muxer_write_chunk(mux,mux->buffer_len,0x10); |
2672
1ff47e4ff44d
works! copy video steram to .avi file playable with ivvideo.dll
arpi
parents:
2667
diff
changeset
|
235 mux->buffer_len=0; |
2696 | 236 |
237 if((v_id&0xF0)==0x10) fprintf(stderr,"hmm. last video packet %02X\n",v_id); | |
2672
1ff47e4ff44d
works! copy video steram to .avi file playable with ivvideo.dll
arpi
parents:
2667
diff
changeset
|
238 } |
2696 | 239 flag2=0; |
2672
1ff47e4ff44d
works! copy video steram to .avi file playable with ivvideo.dll
arpi
parents:
2667
diff
changeset
|
240 if((c&0xF0)==0x10){ |
1ff47e4ff44d
works! copy video steram to .avi file playable with ivvideo.dll
arpi
parents:
2667
diff
changeset
|
241 // 128 byte |
3233 | 242 len=128; |
243 if(prefix) len=fgetc(f); | |
244 printf("video: %02X (%d)\n",c,len); | |
245 fread(mux->buffer+mux->buffer_len,len,1,f); | |
246 mux->buffer_len+=len; | |
247 v_id=c; | |
2672
1ff47e4ff44d
works! copy video steram to .avi file playable with ivvideo.dll
arpi
parents:
2667
diff
changeset
|
248 continue; |
1ff47e4ff44d
works! copy video steram to .avi file playable with ivvideo.dll
arpi
parents:
2667
diff
changeset
|
249 } |
1ff47e4ff44d
works! copy video steram to .avi file playable with ivvideo.dll
arpi
parents:
2667
diff
changeset
|
250 if((c&0xF0)==0x20){ |
1ff47e4ff44d
works! copy video steram to .avi file playable with ivvideo.dll
arpi
parents:
2667
diff
changeset
|
251 int len=fgetc(f); |
1ff47e4ff44d
works! copy video steram to .avi file playable with ivvideo.dll
arpi
parents:
2667
diff
changeset
|
252 printf("video: %02X (%d)\n",c,len); |
1ff47e4ff44d
works! copy video steram to .avi file playable with ivvideo.dll
arpi
parents:
2667
diff
changeset
|
253 fread(mux->buffer+mux->buffer_len,len,1,f); |
1ff47e4ff44d
works! copy video steram to .avi file playable with ivvideo.dll
arpi
parents:
2667
diff
changeset
|
254 mux->buffer_len+=len; |
2696 | 255 flag2=1; |
3233 | 256 v_id=c; |
2672
1ff47e4ff44d
works! copy video steram to .avi file playable with ivvideo.dll
arpi
parents:
2667
diff
changeset
|
257 continue; |
1ff47e4ff44d
works! copy video steram to .avi file playable with ivvideo.dll
arpi
parents:
2667
diff
changeset
|
258 } |
2696 | 259 printf("error: %02X!\n",c); |
3233 | 260 exit(1); |
2665 | 261 } |
2672
1ff47e4ff44d
works! copy video steram to .avi file playable with ivvideo.dll
arpi
parents:
2667
diff
changeset
|
262 |
2696 | 263 if(!width) width=320; |
264 if(!height) height=240; | |
265 | |
2672
1ff47e4ff44d
works! copy video steram to .avi file playable with ivvideo.dll
arpi
parents:
2667
diff
changeset
|
266 mux->bih->biWidth=width; |
1ff47e4ff44d
works! copy video steram to .avi file playable with ivvideo.dll
arpi
parents:
2667
diff
changeset
|
267 mux->bih->biHeight=height; |
1ff47e4ff44d
works! copy video steram to .avi file playable with ivvideo.dll
arpi
parents:
2667
diff
changeset
|
268 mux->bih->biSizeImage=3*width*height; |
1ff47e4ff44d
works! copy video steram to .avi file playable with ivvideo.dll
arpi
parents:
2667
diff
changeset
|
269 |
9014
c671e9adbe22
Cleanup of the muxer API, func parameters muxer & muxer_f eliminated.
arpi
parents:
8585
diff
changeset
|
270 muxer_write_index(avi); |
2667 | 271 fseek(f2,0,SEEK_SET); |
9014
c671e9adbe22
Cleanup of the muxer API, func parameters muxer & muxer_f eliminated.
arpi
parents:
8585
diff
changeset
|
272 muxer_write_header(avi); |
2667 | 273 |
274 } |