Mercurial > mplayer.hg
annotate libmpdemux/demux_viv.c @ 17626:5627625b0cdb
Don't test the v4l2_input audioset field for audio capabilities but still try changing the mute setting (patch by Jesse Allen < the3dfxdude _at_ gmail.com >)
author | aurel |
---|---|
date | Tue, 14 Feb 2006 20:13:55 +0000 |
parents | 934380353fd6 |
children | 4928dd61f136 |
rev | line source |
---|---|
2687 | 1 // VIVO file parser by A'rpi |
3471 | 2 // VIVO text header parser and audio support by alex |
2687 | 3 |
4 #include <stdio.h> | |
5 #include <stdlib.h> | |
6 #include <unistd.h> | |
2928 | 7 #include <string.h> /* strtok */ |
2687 | 8 |
9 #include "config.h" | |
10 #include "mp_msg.h" | |
11 #include "help_mp.h" | |
12 | |
13 #include "stream.h" | |
14 #include "demuxer.h" | |
15 #include "stheader.h" | |
3471 | 16 #include "bswap.h" |
2687 | 17 |
17343
b07bb7ee7ce4
include the right avcodec.h, consistently with the rest of mplayer
nicodvb
parents:
17226
diff
changeset
|
18 #ifdef USE_LIBAVCODEC_SO |
b07bb7ee7ce4
include the right avcodec.h, consistently with the rest of mplayer
nicodvb
parents:
17226
diff
changeset
|
19 #include <ffmpeg/avcodec.h> |
b07bb7ee7ce4
include the right avcodec.h, consistently with the rest of mplayer
nicodvb
parents:
17226
diff
changeset
|
20 #elif defined(USE_LIBAVCODEC) |
b07bb7ee7ce4
include the right avcodec.h, consistently with the rest of mplayer
nicodvb
parents:
17226
diff
changeset
|
21 #include "libavcodec/avcodec.h" |
17226
255b14c0bc36
malloc padding to avoid access beyond allocated memory
henry
parents:
16175
diff
changeset
|
22 #else |
255b14c0bc36
malloc padding to avoid access beyond allocated memory
henry
parents:
16175
diff
changeset
|
23 #define FF_INPUT_BUFFER_PADDING_SIZE 8 |
255b14c0bc36
malloc padding to avoid access beyond allocated memory
henry
parents:
16175
diff
changeset
|
24 #endif |
255b14c0bc36
malloc padding to avoid access beyond allocated memory
henry
parents:
16175
diff
changeset
|
25 |
3502 | 26 /* parameters ! */ |
3503 | 27 int vivo_param_version = -1; |
3502 | 28 char *vivo_param_acodec = NULL; |
29 int vivo_param_abitrate = -1; | |
30 int vivo_param_samplerate = -1; | |
31 int vivo_param_bytesperblock = -1; | |
32 int vivo_param_width = -1; | |
33 int vivo_param_height = -1; | |
34 int vivo_param_vformat = -1; | |
35 | |
3471 | 36 /* VIVO audio standards from vivog723.acm: |
37 | |
38 G.723: | |
39 FormatTag = 0x111 | |
40 Channels = 1 - mono | |
41 SamplesPerSec = 8000 - 8khz | |
42 AvgBytesPerSec = 800 | |
43 BlockAlign (bytes per block) = 24 | |
44 BitsPerSample = 8 | |
45 | |
46 Siren: | |
47 FormatTag = 0x112 | |
48 Channels = 1 - mono | |
49 SamplesPerSec = 16000 - 16khz | |
50 AvgBytesPerSec = 2000 | |
51 BlockAlign (bytes per block) = 40 | |
52 BitsPerSample = 8 | |
53 */ | |
54 | |
3502 | 55 //enum { VIVO_AUDIO_G723, VIVO_AUDIO_SIREN }; |
56 | |
3471 | 57 #define VIVO_AUDIO_G723 1 |
58 #define VIVO_AUDIO_SIREN 2 | |
2687 | 59 |
60 typedef struct { | |
2784 | 61 /* generic */ |
3113
c0e6a39d2ab7
changed to generate fourcc's like: viv<version> -> viv1,viv2
alex
parents:
3069
diff
changeset
|
62 char version; |
2784 | 63 int supported; |
64 /* info */ | |
65 char *title; | |
66 char *author; | |
67 char *copyright; | |
68 char *producer; | |
69 /* video */ | |
70 float fps; | |
71 int width; | |
72 int height; | |
73 int disp_width; | |
74 int disp_height; | |
75 /* audio */ | |
3471 | 76 int audio_codec; |
77 int audio_bitrate; | |
78 int audio_samplerate; | |
79 int audio_bytesperblock; | |
2687 | 80 } vivo_priv_t; |
81 | |
2784 | 82 /* parse all possible extra headers */ |
3439
192449c155c7
fixed Waveformatheader emu and added vivo1/2 audio detection
alex
parents:
3245
diff
changeset
|
83 /* (audio headers are seperate - mostly with recordtype=3 or 4) */ |
2784 | 84 #define TEXTPARSE_ALL 1 |
85 | |
86 static void vivo_parse_text_header(demuxer_t *demux, int header_len) | |
87 { | |
88 vivo_priv_t* priv = demux->priv; | |
89 char *buf; | |
90 int i; | |
91 char *token; | |
92 char *opt, *param; | |
3439
192449c155c7
fixed Waveformatheader emu and added vivo1/2 audio detection
alex
parents:
3245
diff
changeset
|
93 int parser_in_audio_block = 0; |
2784 | 94 |
95 if (!demux->priv) | |
96 { | |
97 priv = malloc(sizeof(vivo_priv_t)); | |
98 memset(priv, 0, sizeof(vivo_priv_t)); | |
99 demux->priv = priv; | |
100 priv->supported = 0; | |
101 } | |
102 | |
103 buf = malloc(header_len); | |
104 opt = malloc(header_len); | |
105 param = malloc(header_len); | |
106 stream_read(demux->stream, buf, header_len); | |
107 i=0; | |
108 while(i<header_len && buf[i]==0x0D && buf[i+1]==0x0A) i+=2; // skip empty lines | |
109 | |
110 token = strtok(buf, (char *)&("\x0d\x0a")); | |
111 while (token && (header_len>2)) | |
112 { | |
113 header_len -= strlen(token)+2; | |
114 if (sscanf(token, "%[^:]:%[^\n]", opt, param) != 2) | |
115 { | |
17366 | 116 mp_msg(MSGT_DEMUX, MSGL_V, "viv_text_header_parser: bad line: '%s' at ~%#"PRIx64"\n", |
117 token, (int64_t)stream_tell(demux->stream)); | |
2784 | 118 break; |
119 } | |
3471 | 120 mp_dbg(MSGT_DEMUX, MSGL_DBG3, "token: '%s' (%d bytes/%d bytes left)\n", |
2784 | 121 token, strlen(token), header_len); |
3471 | 122 mp_dbg(MSGT_DEMUX, MSGL_DBG3, "token => o: '%s', p: '%s'\n", |
2784 | 123 opt, param); |
124 | |
125 /* checking versions: only v1 or v2 is suitable (or known?:) */ | |
126 if (!strcmp(opt, "Version")) | |
127 { | |
128 mp_msg(MSGT_DEMUX, MSGL_DBG2, "Version: %s\n", param); | |
2928 | 129 if (!strncmp(param, "Vivo/1", 6) || !strncmp(param, "Vivo/2", 6)) |
3113
c0e6a39d2ab7
changed to generate fourcc's like: viv<version> -> viv1,viv2
alex
parents:
3069
diff
changeset
|
130 { |
2784 | 131 priv->supported = 1; |
3439
192449c155c7
fixed Waveformatheader emu and added vivo1/2 audio detection
alex
parents:
3245
diff
changeset
|
132 /* save major version for fourcc */ |
3113
c0e6a39d2ab7
changed to generate fourcc's like: viv<version> -> viv1,viv2
alex
parents:
3069
diff
changeset
|
133 priv->version = param[5]; |
c0e6a39d2ab7
changed to generate fourcc's like: viv<version> -> viv1,viv2
alex
parents:
3069
diff
changeset
|
134 } |
2784 | 135 } |
136 | |
137 /* video specific */ | |
138 if (!strcmp(opt, "FPS")) | |
139 { | |
140 mp_msg(MSGT_DEMUX, MSGL_DBG2, "FPS: %f\n", atof(param)); | |
141 priv->fps = atof(param); | |
142 } | |
143 if (!strcmp(opt, "Width")) | |
144 { | |
145 mp_msg(MSGT_DEMUX, MSGL_DBG2, "Width: %d\n", atoi(param)); | |
146 priv->width = atoi(param); | |
147 } | |
148 if (!strcmp(opt, "Height")) | |
149 { | |
150 mp_msg(MSGT_DEMUX, MSGL_DBG2, "Height: %d\n", atoi(param)); | |
151 priv->height = atoi(param); | |
152 } | |
153 if (!strcmp(opt, "DisplayWidth")) | |
154 { | |
155 mp_msg(MSGT_DEMUX, MSGL_DBG2, "Display Width: %d\n", atoi(param)); | |
156 priv->disp_width = atoi(param); | |
157 } | |
158 if (!strcmp(opt, "DisplayHeight")) | |
159 { | |
160 mp_msg(MSGT_DEMUX, MSGL_DBG2, "Display Height: %d\n", atoi(param)); | |
161 priv->disp_height = atoi(param); | |
162 } | |
163 | |
164 /* audio specific */ | |
3439
192449c155c7
fixed Waveformatheader emu and added vivo1/2 audio detection
alex
parents:
3245
diff
changeset
|
165 if (!strcmp(opt, "RecordType")) |
192449c155c7
fixed Waveformatheader emu and added vivo1/2 audio detection
alex
parents:
3245
diff
changeset
|
166 { |
3471 | 167 /* no audio recordblock by Vivo/1.00, 3 and 4 by Vivo/2.00 */ |
3439
192449c155c7
fixed Waveformatheader emu and added vivo1/2 audio detection
alex
parents:
3245
diff
changeset
|
168 if ((atoi(param) == 3) || (atoi(param) == 4)) |
192449c155c7
fixed Waveformatheader emu and added vivo1/2 audio detection
alex
parents:
3245
diff
changeset
|
169 parser_in_audio_block = 1; |
192449c155c7
fixed Waveformatheader emu and added vivo1/2 audio detection
alex
parents:
3245
diff
changeset
|
170 else |
192449c155c7
fixed Waveformatheader emu and added vivo1/2 audio detection
alex
parents:
3245
diff
changeset
|
171 parser_in_audio_block = 0; |
192449c155c7
fixed Waveformatheader emu and added vivo1/2 audio detection
alex
parents:
3245
diff
changeset
|
172 } |
2784 | 173 if (!strcmp(opt, "NominalBitrate")) |
174 { | |
3471 | 175 priv->audio_bitrate = atoi(param); |
176 if (priv->audio_bitrate == 2000) | |
177 priv->audio_codec = VIVO_AUDIO_SIREN; | |
178 if (priv->audio_bitrate == 800) | |
179 priv->audio_codec = VIVO_AUDIO_G723; | |
2784 | 180 } |
181 if (!strcmp(opt, "SamplingFrequency")) | |
182 { | |
3471 | 183 priv->audio_samplerate = atoi(param); |
184 if (priv->audio_samplerate == 16000) | |
185 priv->audio_codec = VIVO_AUDIO_SIREN; | |
186 if (priv->audio_samplerate == 8000) | |
187 priv->audio_codec = VIVO_AUDIO_G723; | |
2784 | 188 } |
3439
192449c155c7
fixed Waveformatheader emu and added vivo1/2 audio detection
alex
parents:
3245
diff
changeset
|
189 if (!strcmp(opt, "Length") && (parser_in_audio_block == 1)) |
192449c155c7
fixed Waveformatheader emu and added vivo1/2 audio detection
alex
parents:
3245
diff
changeset
|
190 { |
3471 | 191 priv->audio_bytesperblock = atoi(param); /* 24 or 40 kbps */ |
192 if (priv->audio_bytesperblock == 40) | |
193 priv->audio_codec = VIVO_AUDIO_SIREN; | |
194 if (priv->audio_bytesperblock == 24) | |
195 priv->audio_codec = VIVO_AUDIO_G723; | |
3439
192449c155c7
fixed Waveformatheader emu and added vivo1/2 audio detection
alex
parents:
3245
diff
changeset
|
196 } |
2784 | 197 |
198 /* only for displaying some informations about movie*/ | |
199 if (!strcmp(opt, "Title")) | |
200 { | |
3068 | 201 demux_info_add(demux, "name", param); |
3612 | 202 priv->title = strdup(param); |
2784 | 203 } |
204 if (!strcmp(opt, "Author")) | |
205 { | |
3068 | 206 demux_info_add(demux, "author", param); |
3612 | 207 priv->author = strdup(param); |
2784 | 208 } |
209 if (!strcmp(opt, "Copyright")) | |
210 { | |
3068 | 211 demux_info_add(demux, "copyright", param); |
3612 | 212 priv->copyright = strdup(param); |
2784 | 213 } |
214 if (!strcmp(opt, "Producer")) | |
215 { | |
3069 | 216 demux_info_add(demux, "encoder", param); |
3612 | 217 priv->producer = strdup(param); |
2784 | 218 } |
219 | |
220 /* get next token */ | |
221 token = strtok(NULL, (char *)&("\x0d\x0a")); | |
222 } | |
2788 | 223 |
224 if (buf) | |
225 free(buf); | |
226 if (opt) | |
227 free(opt); | |
228 if (param) | |
229 free(param); | |
2784 | 230 } |
231 | |
16175 | 232 static int vivo_check_file(demuxer_t* demuxer){ |
2687 | 233 int i=0; |
234 int len; | |
235 int c; | |
236 unsigned char buf[2048+256]; | |
237 vivo_priv_t* priv; | |
2784 | 238 int orig_pos = stream_tell(demuxer->stream); |
2687 | 239 |
240 mp_msg(MSGT_DEMUX,MSGL_V,"Checking for VIVO\n"); | |
241 | |
242 c=stream_read_char(demuxer->stream); | |
2792 | 243 if(c==-256) return 0; |
2687 | 244 len=0; |
245 while((c=stream_read_char(demuxer->stream))>=0x80){ | |
246 len+=0x80*(c-0x80); | |
247 if(len>1024) return 0; | |
248 } | |
249 len+=c; | |
6139
3898967fcc96
some more output cosmetics, especially for vivo and mov demuxers
arpi
parents:
4407
diff
changeset
|
250 mp_msg(MSGT_DEMUX,MSGL_V,"header block 1 size: %d\n",len); |
2687 | 251 //stream_skip(demuxer->stream,len); |
2928 | 252 |
253 priv=malloc(sizeof(vivo_priv_t)); | |
254 memset(priv,0,sizeof(vivo_priv_t)); | |
255 demuxer->priv=priv; | |
2784 | 256 |
2805 | 257 #if 0 |
2785 | 258 vivo_parse_text_header(demuxer, len); |
2784 | 259 if (priv->supported == 0) |
260 return 0; | |
261 #else | |
2928 | 262 /* this is enought for check (for now) */ |
263 stream_read(demuxer->stream,buf,len); | |
264 buf[len]=0; | |
265 // printf("VIVO header: '%s'\n",buf); | |
266 | |
2687 | 267 // parse header: |
268 i=0; | |
269 while(i<len && buf[i]==0x0D && buf[i+1]==0x0A) i+=2; // skip empty lines | |
2695 | 270 if(strncmp(buf+i,"Version:Vivo/",13)) return 0; // bad version/type! |
2784 | 271 #endif |
2687 | 272 |
2695 | 273 #if 0 |
2687 | 274 c=stream_read_char(demuxer->stream); |
275 if(c) return 0; | |
276 len2=0; | |
277 while((c=stream_read_char(demuxer->stream))>=0x80){ | |
278 len2+=0x80*(c-0x80); | |
279 if(len+len2>2048) return 0; | |
280 } | |
281 len2+=c; | |
6139
3898967fcc96
some more output cosmetics, especially for vivo and mov demuxers
arpi
parents:
4407
diff
changeset
|
282 mp_msg(MSGT_DEMUX,MSGL_V,"header block 2 size: %d\n",len2); |
2687 | 283 stream_skip(demuxer->stream,len2); |
284 // stream_read(demuxer->stream,buf+len,len2); | |
2695 | 285 #endif |
2687 | 286 |
287 // c=stream_read_char(demuxer->stream); | |
288 // printf("first packet: %02X\n",c); | |
289 | |
2784 | 290 stream_seek(demuxer->stream, orig_pos); |
291 | |
16175 | 292 return DEMUXER_TYPE_VIVO; |
2687 | 293 } |
294 | |
3733 | 295 static int audio_pos=0; |
296 static int audio_rate=0; | |
3526 | 297 |
2687 | 298 // return value: |
299 // 0 = EOF or no stream found | |
300 // 1 = successfully read a packet | |
16175 | 301 static int demux_vivo_fill_buffer(demuxer_t *demux, demux_stream_t *dsds){ |
2687 | 302 demux_stream_t *ds=NULL; |
303 int c; | |
304 int len=0; | |
305 int seq; | |
3245
1e2a87b7cae8
added support for packet 0x82 (from vivodump.c by arpi)
alex
parents:
3113
diff
changeset
|
306 int prefix=0; |
2687 | 307 demux->filepos=stream_tell(demux->stream); |
308 | |
309 c=stream_read_char(demux->stream); | |
2792 | 310 if (c == -256) /* EOF */ |
311 return 0; | |
3245
1e2a87b7cae8
added support for packet 0x82 (from vivodump.c by arpi)
alex
parents:
3113
diff
changeset
|
312 // printf("c=%x,%02X\n",c,c&0xf0); |
1e2a87b7cae8
added support for packet 0x82 (from vivodump.c by arpi)
alex
parents:
3113
diff
changeset
|
313 if (c == 0x82) |
1e2a87b7cae8
added support for packet 0x82 (from vivodump.c by arpi)
alex
parents:
3113
diff
changeset
|
314 { |
1e2a87b7cae8
added support for packet 0x82 (from vivodump.c by arpi)
alex
parents:
3113
diff
changeset
|
315 /* ok, this works, but pts calculating from header is required! */ |
1e2a87b7cae8
added support for packet 0x82 (from vivodump.c by arpi)
alex
parents:
3113
diff
changeset
|
316 #warning "Calculate PTS from picture header!" |
1e2a87b7cae8
added support for packet 0x82 (from vivodump.c by arpi)
alex
parents:
3113
diff
changeset
|
317 prefix = 1; |
1e2a87b7cae8
added support for packet 0x82 (from vivodump.c by arpi)
alex
parents:
3113
diff
changeset
|
318 c = stream_read_char(demux->stream); |
7472
c4434bdf6e51
tons of warning fixes, also some 10l bugfixes, including Dominik's PVA bug
arpi
parents:
6139
diff
changeset
|
319 printf("packet 0x82(pos=%u) chunk=%x\n", |
c4434bdf6e51
tons of warning fixes, also some 10l bugfixes, including Dominik's PVA bug
arpi
parents:
6139
diff
changeset
|
320 (int)stream_tell(demux->stream), c); |
3245
1e2a87b7cae8
added support for packet 0x82 (from vivodump.c by arpi)
alex
parents:
3113
diff
changeset
|
321 } |
2687 | 322 switch(c&0xF0){ |
2695 | 323 case 0x00: // header - skip it! |
2784 | 324 { |
2687 | 325 len=stream_read_char(demux->stream); |
2695 | 326 if(len>=0x80) len=0x80*(len-0x80)+stream_read_char(demux->stream); |
327 printf("vivo extra header: %d bytes\n",len); | |
2784 | 328 #ifdef TEXTPARSE_ALL |
329 { | |
330 int pos; | |
331 /* also try to parse all headers */ | |
332 pos = stream_tell(demux->stream); | |
333 vivo_parse_text_header(demux, len); | |
334 stream_seek(demux->stream, pos); | |
335 } | |
336 #endif | |
2687 | 337 break; |
2784 | 338 } |
2687 | 339 case 0x10: // video packet |
3245
1e2a87b7cae8
added support for packet 0x82 (from vivodump.c by arpi)
alex
parents:
3113
diff
changeset
|
340 if (prefix == 1) |
1e2a87b7cae8
added support for packet 0x82 (from vivodump.c by arpi)
alex
parents:
3113
diff
changeset
|
341 len = stream_read_char(demux->stream); |
1e2a87b7cae8
added support for packet 0x82 (from vivodump.c by arpi)
alex
parents:
3113
diff
changeset
|
342 else |
1e2a87b7cae8
added support for packet 0x82 (from vivodump.c by arpi)
alex
parents:
3113
diff
changeset
|
343 len=128; |
2687 | 344 ds=demux->video; |
345 break; | |
346 case 0x20: // video packet | |
347 len=stream_read_char(demux->stream); | |
348 ds=demux->video; | |
349 break; | |
3068 | 350 case 0x30: // audio packet |
3245
1e2a87b7cae8
added support for packet 0x82 (from vivodump.c by arpi)
alex
parents:
3113
diff
changeset
|
351 if (prefix == 1) |
1e2a87b7cae8
added support for packet 0x82 (from vivodump.c by arpi)
alex
parents:
3113
diff
changeset
|
352 len = stream_read_char(demux->stream); |
1e2a87b7cae8
added support for packet 0x82 (from vivodump.c by arpi)
alex
parents:
3113
diff
changeset
|
353 else |
1e2a87b7cae8
added support for packet 0x82 (from vivodump.c by arpi)
alex
parents:
3113
diff
changeset
|
354 len=40; /* 40kbps */ |
2695 | 355 ds=demux->audio; |
3526 | 356 audio_pos+=len; |
2695 | 357 break; |
2687 | 358 case 0x40: // audio packet |
3245
1e2a87b7cae8
added support for packet 0x82 (from vivodump.c by arpi)
alex
parents:
3113
diff
changeset
|
359 if (prefix == 1) |
1e2a87b7cae8
added support for packet 0x82 (from vivodump.c by arpi)
alex
parents:
3113
diff
changeset
|
360 len = stream_read_char(demux->stream); |
1e2a87b7cae8
added support for packet 0x82 (from vivodump.c by arpi)
alex
parents:
3113
diff
changeset
|
361 else |
1e2a87b7cae8
added support for packet 0x82 (from vivodump.c by arpi)
alex
parents:
3113
diff
changeset
|
362 len=24; /* 24kbps */ |
2687 | 363 ds=demux->audio; |
3526 | 364 audio_pos+=len; |
2687 | 365 break; |
366 default: | |
17366 | 367 mp_msg(MSGT_DEMUX,MSGL_WARN,"VIVO - unknown ID found: %02X at pos %"PRIu64" contact author!\n", |
368 c, (int64_t)stream_tell(demux->stream)); | |
3245
1e2a87b7cae8
added support for packet 0x82 (from vivodump.c by arpi)
alex
parents:
3113
diff
changeset
|
369 return 0; |
2687 | 370 } |
3245
1e2a87b7cae8
added support for packet 0x82 (from vivodump.c by arpi)
alex
parents:
3113
diff
changeset
|
371 |
1e2a87b7cae8
added support for packet 0x82 (from vivodump.c by arpi)
alex
parents:
3113
diff
changeset
|
372 // printf("chunk=%x, len=%d\n", c, len); |
2687 | 373 |
2695 | 374 if(!ds || ds->id<-1){ |
2687 | 375 if(len) stream_skip(demux->stream,len); |
376 return 1; | |
377 } | |
378 | |
379 seq=c&0x0F; | |
380 | |
381 if(ds->asf_packet){ | |
382 if(ds->asf_seq!=seq){ | |
383 // closed segment, finalize packet: | |
384 ds_add_packet(ds,ds->asf_packet); | |
385 ds->asf_packet=NULL; | |
2695 | 386 // printf("packet!\n"); |
2687 | 387 } else { |
388 // append data to it! | |
389 demux_packet_t* dp=ds->asf_packet; | |
17226
255b14c0bc36
malloc padding to avoid access beyond allocated memory
henry
parents:
16175
diff
changeset
|
390 dp->buffer=realloc(dp->buffer,dp->len+len+FF_INPUT_BUFFER_PADDING_SIZE); |
255b14c0bc36
malloc padding to avoid access beyond allocated memory
henry
parents:
16175
diff
changeset
|
391 memset(dp->buffer+dp->len+len, 0, FF_INPUT_BUFFER_PADDING_SIZE); |
2687 | 392 //memcpy(dp->buffer+dp->len,data,len); |
393 stream_read(demux->stream,dp->buffer+dp->len,len); | |
394 mp_dbg(MSGT_DEMUX,MSGL_DBG4,"data appended! %d+%d\n",dp->len,len); | |
395 dp->len+=len; | |
396 // we are ready now. | |
2695 | 397 if((c&0xF0)==0x20) --ds->asf_seq; // hack! |
2687 | 398 return 1; |
399 } | |
400 } | |
401 // create new packet: | |
402 { demux_packet_t* dp; | |
403 dp=new_demux_packet(len); | |
404 //memcpy(dp->buffer,data,len); | |
405 stream_read(demux->stream,dp->buffer,len); | |
3526 | 406 dp->pts=audio_rate?((float)audio_pos/(float)audio_rate):0; |
2687 | 407 // dp->flags=keyframe; |
408 // if(ds==demux->video) printf("ASF time: %8d dur: %5d \n",time,dur); | |
409 dp->pos=demux->filepos; | |
410 ds->asf_packet=dp; | |
411 ds->asf_seq=seq; | |
412 // we are ready now. | |
413 return 1; | |
414 } | |
415 | |
416 } | |
417 | |
418 static const short h263_format[8][2] = { | |
419 { 0, 0 }, | |
420 { 128, 96 }, | |
421 { 176, 144 }, | |
422 { 352, 288 }, | |
423 { 704, 576 }, | |
424 { 1408, 1152 }, | |
2784 | 425 { 320, 240 } // ??????? or 240x180 (found in vivo2) ? |
2687 | 426 }; |
427 | |
428 static unsigned char* buffer; | |
429 static int bufptr=0; | |
430 static int bitcnt=0; | |
431 static unsigned char buf=0; | |
432 static int format, width, height; | |
433 | |
434 static unsigned int x_get_bits(int n){ | |
435 unsigned int x=0; | |
436 while(n-->0){ | |
437 if(!bitcnt){ | |
438 // fill buff | |
439 buf=buffer[bufptr++]; | |
440 bitcnt=8; | |
441 } | |
442 //x=(x<<1)|(buf&1);buf>>=1; | |
443 x=(x<<1)|(buf>>7);buf<<=1; | |
444 --bitcnt; | |
445 } | |
446 return x; | |
447 } | |
448 | |
449 #define get_bits(xxx,n) x_get_bits(n) | |
450 #define get_bits1(xxx) x_get_bits(1) | |
451 #define skip_bits(xxx,n) x_get_bits(n) | |
452 #define skip_bits1(xxx) x_get_bits(1) | |
453 | |
454 /* most is hardcoded. should extend to handle all h263 streams */ | |
455 static int h263_decode_picture_header(unsigned char *b_ptr) | |
456 { | |
2928 | 457 // int i; |
2695 | 458 |
459 // for(i=0;i<16;i++) printf(" %02X",b_ptr[i]); printf("\n"); | |
2687 | 460 |
461 buffer=b_ptr; | |
462 bufptr=bitcnt=buf=0; | |
463 | |
464 /* picture header */ | |
2695 | 465 if (get_bits(&s->gb, 22) != 0x20){ |
466 printf("bad picture header\n"); | |
2687 | 467 return -1; |
2695 | 468 } |
2687 | 469 skip_bits(&s->gb, 8); /* picture timestamp */ |
470 | |
2695 | 471 if (get_bits1(&s->gb) != 1){ |
472 printf("bad marker\n"); | |
2687 | 473 return -1; /* marker */ |
2695 | 474 } |
475 if (get_bits1(&s->gb) != 0){ | |
476 printf("bad h263 id\n"); | |
2687 | 477 return -1; /* h263 id */ |
2695 | 478 } |
2687 | 479 skip_bits1(&s->gb); /* split screen off */ |
480 skip_bits1(&s->gb); /* camera off */ | |
481 skip_bits1(&s->gb); /* freeze picture release off */ | |
482 | |
483 format = get_bits(&s->gb, 3); | |
484 | |
485 if (format != 7) { | |
486 printf("h263_plus = 0 format = %d\n",format); | |
487 /* H.263v1 */ | |
488 width = h263_format[format][0]; | |
489 height = h263_format[format][1]; | |
490 printf("%d x %d\n",width,height); | |
2695 | 491 // if (!width) return -1; |
2687 | 492 |
493 printf("pict_type=%d\n",get_bits1(&s->gb)); | |
494 printf("unrestricted_mv=%d\n",get_bits1(&s->gb)); | |
495 #if 1 | |
496 printf("SAC: %d\n",get_bits1(&s->gb)); | |
497 printf("advanced prediction mode: %d\n",get_bits1(&s->gb)); | |
498 printf("PB frame: %d\n",get_bits1(&s->gb)); | |
499 #else | |
500 if (get_bits1(&s->gb) != 0) | |
501 return -1; /* SAC: off */ | |
502 if (get_bits1(&s->gb) != 0) | |
503 return -1; /* advanced prediction mode: off */ | |
504 if (get_bits1(&s->gb) != 0) | |
505 return -1; /* not PB frame */ | |
506 #endif | |
507 printf("qscale=%d\n",get_bits(&s->gb, 5)); | |
508 skip_bits1(&s->gb); /* Continuous Presence Multipoint mode: off */ | |
509 } else { | |
510 printf("h263_plus = 1\n"); | |
511 /* H.263v2 */ | |
2695 | 512 if (get_bits(&s->gb, 3) != 1){ |
513 printf("H.263v2 A error\n"); | |
2687 | 514 return -1; |
2695 | 515 } |
516 if (get_bits(&s->gb, 3) != 6){ /* custom source format */ | |
517 printf("custom source format\n"); | |
2687 | 518 return -1; |
2695 | 519 } |
2687 | 520 skip_bits(&s->gb, 12); |
521 skip_bits(&s->gb, 3); | |
522 printf("pict_type=%d\n",get_bits(&s->gb, 3) + 1); | |
523 // if (s->pict_type != I_TYPE && | |
524 // s->pict_type != P_TYPE) | |
525 // return -1; | |
526 skip_bits(&s->gb, 7); | |
527 skip_bits(&s->gb, 4); /* aspect ratio */ | |
528 width = (get_bits(&s->gb, 9) + 1) * 4; | |
529 skip_bits1(&s->gb); | |
530 height = get_bits(&s->gb, 9) * 4; | |
531 printf("%d x %d\n",width,height); | |
2695 | 532 //if (height == 0) |
533 // return -1; | |
2687 | 534 printf("qscale=%d\n",get_bits(&s->gb, 5)); |
535 } | |
536 | |
537 /* PEI */ | |
538 while (get_bits1(&s->gb) != 0) { | |
539 skip_bits(&s->gb, 8); | |
540 } | |
541 // s->f_code = 1; | |
542 // s->width = width; | |
543 // s->height = height; | |
544 return 0; | |
545 } | |
546 | |
547 | |
2695 | 548 |
16175 | 549 static demuxer_t* demux_open_vivo(demuxer_t* demuxer){ |
2687 | 550 vivo_priv_t* priv=demuxer->priv; |
551 | |
552 if(!ds_fill_buffer(demuxer->video)){ | |
553 mp_msg(MSGT_DEMUX,MSGL_ERR,"VIVO: " MSGTR_MissingVideoStreamBug); | |
16175 | 554 return NULL; |
2687 | 555 } |
3526 | 556 |
557 audio_pos=0; | |
2687 | 558 |
559 h263_decode_picture_header(demuxer->video->buffer); | |
560 | |
3503 | 561 if (vivo_param_version != -1) |
562 priv->version = '0' + vivo_param_version; | |
2687 | 563 |
564 { sh_video_t* sh=new_sh_video(demuxer,0); | |
3113
c0e6a39d2ab7
changed to generate fourcc's like: viv<version> -> viv1,viv2
alex
parents:
3069
diff
changeset
|
565 |
c0e6a39d2ab7
changed to generate fourcc's like: viv<version> -> viv1,viv2
alex
parents:
3069
diff
changeset
|
566 /* viv1, viv2 (for better codecs.conf) */ |
c0e6a39d2ab7
changed to generate fourcc's like: viv<version> -> viv1,viv2
alex
parents:
3069
diff
changeset
|
567 sh->format = mmioFOURCC('v', 'i', 'v', priv->version); |
2784 | 568 if(!sh->fps) |
2928 | 569 { |
2784 | 570 if (priv->fps) |
571 sh->fps=priv->fps; | |
572 else | |
573 sh->fps=15.0f; | |
2928 | 574 } |
2687 | 575 sh->frametime=1.0f/sh->fps; |
2805 | 576 |
3502 | 577 /* XXX: FIXME: can't scale image. */ |
578 /* hotfix to disable: */ | |
2805 | 579 priv->disp_width = priv->width; |
580 priv->disp_height = priv->height; | |
581 | |
3502 | 582 if (vivo_param_width != -1) |
583 priv->disp_width = priv->width = vivo_param_width; | |
584 | |
585 if (vivo_param_height != -1) | |
586 priv->disp_height = priv->height = vivo_param_height; | |
587 | |
588 if (vivo_param_vformat != -1) | |
589 { | |
590 priv->disp_width = priv->width = h263_format[vivo_param_vformat][0]; | |
591 priv->disp_height = priv->height = h263_format[vivo_param_vformat][1]; | |
592 } | |
593 | |
2784 | 594 if (priv->disp_width) |
595 sh->disp_w = priv->disp_width; | |
596 else | |
597 sh->disp_w = width; | |
598 if (priv->disp_height) | |
599 sh->disp_h = priv->disp_height; | |
600 else | |
601 sh->disp_h = height; | |
2687 | 602 |
603 // emulate BITMAPINFOHEADER: | |
604 sh->bih=malloc(sizeof(BITMAPINFOHEADER)); | |
605 memset(sh->bih,0,sizeof(BITMAPINFOHEADER)); | |
606 sh->bih->biSize=40; | |
2784 | 607 if (priv->width) |
608 sh->bih->biWidth = priv->width; | |
609 else | |
610 sh->bih->biWidth = width; | |
611 if (priv->height) | |
612 sh->bih->biHeight = priv->height; | |
613 else | |
614 sh->bih->biHeight = height; | |
2687 | 615 sh->bih->biPlanes=1; |
616 sh->bih->biBitCount=24; | |
617 sh->bih->biCompression=sh->format; | |
618 sh->bih->biSizeImage=sh->bih->biWidth*sh->bih->biHeight*3; | |
3502 | 619 |
620 /* insert as stream */ | |
621 demuxer->video->sh=sh; | |
622 sh->ds=demuxer->video; | |
2687 | 623 demuxer->video->id=0; |
2928 | 624 |
3502 | 625 /* disable seeking */ |
2928 | 626 demuxer->seekable = 0; |
2788 | 627 |
17355 | 628 mp_msg(MSGT_DEMUX,MSGL_STATUS,"VIVO Video stream %d size: display: %dx%d, codec: %ux%u\n", |
2788 | 629 demuxer->video->id, sh->disp_w, sh->disp_h, sh->bih->biWidth, |
630 sh->bih->biHeight); | |
2687 | 631 } |
632 | |
3502 | 633 /* AUDIO init */ |
634 if (demuxer->audio->id >= -1){ | |
2687 | 635 if(!ds_fill_buffer(demuxer->audio)){ |
636 mp_msg(MSGT_DEMUX,MSGL_ERR,"VIVO: " MSGTR_MissingAudioStream); | |
637 } else | |
638 { sh_audio_t* sh=new_sh_audio(demuxer,1); | |
2788 | 639 |
3502 | 640 /* Select audio codec */ |
3471 | 641 if (priv->audio_codec == 0) |
642 { | |
643 if (priv->version == '2') | |
644 priv->audio_codec = VIVO_AUDIO_SIREN; | |
645 else | |
646 priv->audio_codec = VIVO_AUDIO_G723; | |
647 } | |
3502 | 648 if (vivo_param_acodec != NULL) |
649 { | |
650 if (!strcasecmp(vivo_param_acodec, "g723")) | |
651 priv->audio_codec = VIVO_AUDIO_G723; | |
652 if (!strcasecmp(vivo_param_acodec, "siren")) | |
653 priv->audio_codec = VIVO_AUDIO_SIREN; | |
654 } | |
3471 | 655 |
3502 | 656 if (priv->audio_codec == VIVO_AUDIO_G723) |
657 sh->format = 0x111; | |
9955
d6be831a5f9a
fixed 2 10l-s (bug found in the spring cleanup patch by Raindel Shachar
alex
parents:
8254
diff
changeset
|
658 else if (priv->audio_codec == VIVO_AUDIO_SIREN) |
3502 | 659 sh->format = 0x112; |
9955
d6be831a5f9a
fixed 2 10l-s (bug found in the spring cleanup patch by Raindel Shachar
alex
parents:
8254
diff
changeset
|
660 else |
3502 | 661 { |
662 mp_msg(MSGT_DEMUX, MSGL_ERR, "VIVO: Not support audio codec (%d)\n", | |
663 priv->audio_codec); | |
11650 | 664 free_sh_audio(sh); |
3502 | 665 goto nosound; |
666 } | |
3439
192449c155c7
fixed Waveformatheader emu and added vivo1/2 audio detection
alex
parents:
3245
diff
changeset
|
667 |
2687 | 668 // Emulate WAVEFORMATEX struct: |
669 sh->wf=malloc(sizeof(WAVEFORMATEX)); | |
670 memset(sh->wf,0,sizeof(WAVEFORMATEX)); | |
3439
192449c155c7
fixed Waveformatheader emu and added vivo1/2 audio detection
alex
parents:
3245
diff
changeset
|
671 sh->wf->wFormatTag=sh->format; |
3502 | 672 sh->wf->nChannels=1; /* 1 channels for both Siren and G.723 */ |
673 | |
674 /* Set bits per sample */ | |
3471 | 675 if (priv->audio_codec == VIVO_AUDIO_SIREN) |
3502 | 676 sh->wf->wBitsPerSample = 16; |
3471 | 677 else |
3502 | 678 if (priv->audio_codec == VIVO_AUDIO_G723) |
679 sh->wf->wBitsPerSample = 8; | |
680 | |
681 /* Set sampling rate */ | |
682 if (priv->audio_samplerate) /* got from header */ | |
683 sh->wf->nSamplesPerSec = priv->audio_samplerate; | |
3471 | 684 else |
685 { | |
686 if (priv->audio_codec == VIVO_AUDIO_SIREN) | |
3502 | 687 sh->wf->nSamplesPerSec = 16000; |
688 if (priv->audio_codec == VIVO_AUDIO_G723) | |
689 sh->wf->nSamplesPerSec = 8000; | |
3471 | 690 } |
3502 | 691 if (vivo_param_samplerate != -1) |
692 sh->wf->nSamplesPerSec = vivo_param_samplerate; | |
693 | |
694 /* Set audio bitrate */ | |
695 if (priv->audio_bitrate) /* got from header */ | |
696 sh->wf->nAvgBytesPerSec = priv->audio_bitrate; | |
2784 | 697 else |
3471 | 698 { |
699 if (priv->audio_codec == VIVO_AUDIO_SIREN) | |
700 sh->wf->nAvgBytesPerSec = 2000; | |
3502 | 701 if (priv->audio_codec == VIVO_AUDIO_G723) |
3471 | 702 sh->wf->nAvgBytesPerSec = 800; |
703 } | |
3502 | 704 if (vivo_param_abitrate != -1) |
705 sh->wf->nAvgBytesPerSec = vivo_param_abitrate; | |
3526 | 706 audio_rate=sh->wf->nAvgBytesPerSec; |
3502 | 707 |
3471 | 708 if (!priv->audio_bytesperblock) |
709 { | |
710 if (priv->audio_codec == VIVO_AUDIO_SIREN) | |
3502 | 711 sh->wf->nBlockAlign = 40; |
712 if (priv->audio_codec == VIVO_AUDIO_G723) | |
713 sh->wf->nBlockAlign = 24; | |
3471 | 714 } |
715 else | |
3502 | 716 sh->wf->nBlockAlign = priv->audio_bytesperblock; |
717 if (vivo_param_bytesperblock != -1) | |
718 sh->wf->nBlockAlign = vivo_param_bytesperblock; | |
719 | |
8254
772d6d27fd66
warning patch by (Dominik Mierzejewski <dominik at rangers dot eu dot org>)
michael
parents:
7472
diff
changeset
|
720 /*sound_ok:*/ |
3502 | 721 /* insert as stream */ |
722 demuxer->audio->sh=sh; | |
723 sh->ds=demuxer->audio; | |
2687 | 724 demuxer->audio->id=1; |
3502 | 725 nosound: |
16175 | 726 return demuxer; |
2687 | 727 } |
2695 | 728 } |
16175 | 729 return demuxer; |
730 } | |
2687 | 731 |
16175 | 732 static void demux_close_vivo(demuxer_t *demuxer) |
2788 | 733 { |
734 vivo_priv_t* priv=demuxer->priv; | |
2809 | 735 |
736 if (priv) { | |
737 if (priv->title) | |
738 free(priv->title); | |
739 if (priv->author) | |
740 free(priv->author); | |
741 if (priv->copyright) | |
742 free(priv->copyright); | |
743 if (priv->producer) | |
744 free(priv->producer); | |
2788 | 745 free(priv); |
2809 | 746 } |
2788 | 747 return; |
748 } | |
16175 | 749 |
750 | |
751 demuxer_desc_t demuxer_desc_vivo = { | |
752 "Vivo demuxer", | |
753 "vivo", | |
754 "VIVO", | |
755 "A'rpi, Alex Beregszasi", | |
756 "", | |
757 DEMUXER_TYPE_VIVO, | |
758 0, // unsafe autodetect | |
759 vivo_check_file, | |
760 demux_vivo_fill_buffer, | |
761 demux_open_vivo, | |
762 demux_close_vivo, | |
763 NULL, | |
764 NULL | |
765 }; |