ffmpeg: targetos must now be in lower case.
[vlc.git] / modules / demux / nsv.c
blob3e80d2352fca57b7072c08f1d8eee6cc535348a2
1 /*****************************************************************************
2 * nsv.c: NullSoft Video demuxer.
3 *****************************************************************************
4 * Copyright (C) 2004 the VideoLAN team
5 * $Id$
7 * Authors: Laurent Aimar <fenrir@via.ecp.fr>
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22 *****************************************************************************/
24 /*****************************************************************************
25 * Preamble
26 *****************************************************************************/
27 #include <stdlib.h> /* malloc(), free() */
29 #include <vlc/vlc.h>
30 #include <vlc_demux.h>
32 /* TODO:
33 * - implement NSVf parsing (to get meta data)
34 * - implement missing Control (and in the right way)
35 * - ...
38 /*****************************************************************************
39 * Module descriptor
40 *****************************************************************************/
41 static int Open ( vlc_object_t * );
42 static void Close ( vlc_object_t * );
44 vlc_module_begin();
45 set_description( _("NullSoft demuxer" ) );
46 set_capability( "demux2", 10 );
47 set_category( CAT_INPUT );
48 set_subcategory( SUBCAT_INPUT_DEMUX );
49 set_callbacks( Open, Close );
50 add_shortcut( "nsv" );
51 vlc_module_end();
53 /*****************************************************************************
54 * Local prototypes
55 *****************************************************************************/
57 struct demux_sys_t
59 es_format_t fmt_audio;
60 es_out_id_t *p_audio;
62 es_format_t fmt_video;
63 es_out_id_t *p_video;
65 es_format_t fmt_sub;
66 es_out_id_t *p_sub;
68 int64_t i_pcr;
69 int64_t i_time;
70 int64_t i_pcr_inc;
73 static int Demux ( demux_t *p_demux );
74 static int Control( demux_t *p_demux, int i_query, va_list args );
76 static int ReSynch( demux_t *p_demux );
78 static int ReadNSVf( demux_t *p_demux );
79 static int ReadNSVs( demux_t *p_demux );
81 /*****************************************************************************
82 * Open
83 *****************************************************************************/
84 static int Open( vlc_object_t *p_this )
86 demux_t *p_demux = (demux_t*)p_this;
87 demux_sys_t *p_sys;
89 uint8_t *p_peek;
91 if( stream_Peek( p_demux->s, &p_peek, 8 ) < 8 )
92 return VLC_EGENERIC;
94 if( strncmp( (char *)p_peek, "NSVf", 4 )
95 && strncmp( (char *)p_peek, "NSVs", 4 ))
97 /* In case we had force this demuxer we try to resynch */
98 if( strcmp( p_demux->psz_demux, "nsv" ) || ReSynch( p_demux ) )
100 return VLC_EGENERIC;
104 /* Fill p_demux field */
105 p_demux->pf_demux = Demux;
106 p_demux->pf_control = Control;
107 p_demux->p_sys = p_sys = malloc( sizeof( demux_sys_t ) );
109 es_format_Init( &p_sys->fmt_audio, AUDIO_ES, 0 );
110 p_sys->p_audio = NULL;
112 es_format_Init( &p_sys->fmt_video, VIDEO_ES, 0 );
113 p_sys->p_video = NULL;
115 es_format_Init( &p_sys->fmt_sub, SPU_ES, 0 );
116 p_sys->p_sub = NULL;
118 p_sys->i_pcr = 1;
119 p_sys->i_time = 0;
120 p_sys->i_pcr_inc = 0;
122 return VLC_SUCCESS;
125 /*****************************************************************************
126 * Close
127 *****************************************************************************/
128 static void Close( vlc_object_t *p_this )
130 demux_t *p_demux = (demux_t*)p_this;
131 demux_sys_t *p_sys = p_demux->p_sys;
133 free( p_sys );
137 /*****************************************************************************
138 * Demux:
139 *****************************************************************************/
140 static int Demux( demux_t *p_demux )
142 demux_sys_t *p_sys = p_demux->p_sys;
144 uint8_t header[5];
145 uint8_t *p_peek;
147 int i_size;
148 block_t *p_frame;
150 for( ;; )
152 if( stream_Peek( p_demux->s, &p_peek, 8 ) < 8 )
154 msg_Warn( p_demux, "cannot peek" );
155 return 0;
158 if( !strncmp( (char *)p_peek, "NSVf", 4 ) )
160 if( ReadNSVf( p_demux ) )
162 return -1;
165 else if( !strncmp( (char *)p_peek, "NSVs", 4 ) )
167 if( ReadNSVs( p_demux ) )
169 return -1;
171 break;
173 else if( GetWLE( p_peek ) == 0xbeef )
175 /* Next frame of the current NSVs chunk */
176 if( stream_Read( p_demux->s, NULL, 2 ) < 2 )
178 msg_Warn( p_demux, "cannot read" );
179 return 0;
181 break;
183 else
185 msg_Err( p_demux, "invalid signature 0x%x (%4.4s)", *(uint32_t*)p_peek, (char*)p_peek );
186 if( ReSynch( p_demux ) )
188 return -1;
193 if( stream_Read( p_demux->s, header, 5 ) < 5 )
195 msg_Warn( p_demux, "cannot read" );
196 return 0;
199 /* Set PCR */
200 es_out_Control( p_demux->out, ES_OUT_SET_PCR, (int64_t)p_sys->i_pcr );
202 /* Read video */
203 i_size = ( header[0] >> 4 ) | ( header[1] << 4 ) | ( header[2] << 12 );
204 if( i_size > 0 )
206 /* extra data ? */
207 if( (header[0]&0x0f) != 0x0 )
209 uint8_t aux[6];
210 int i_aux;
211 vlc_fourcc_t fcc;
212 if( stream_Read( p_demux->s, aux, 6 ) < 6 )
214 msg_Warn( p_demux, "cannot read" );
215 return 0;
217 i_aux = GetWLE( aux );
218 fcc = VLC_FOURCC( aux[2], aux[3], aux[4], aux[5] );
220 msg_Dbg( p_demux, "Belekas: %d - size=%d fcc=%4.4s",
221 header[0]&0xf, i_aux, (char*)&fcc );
223 if( fcc == VLC_FOURCC( 'S', 'U', 'B', 'T' ) && i_aux > 2 )
225 if( p_sys->p_sub == NULL )
227 p_sys->fmt_sub.i_codec = VLC_FOURCC( 's', 'u', 'b', 't' );
228 p_sys->p_sub = es_out_Add( p_demux->out, &p_sys->fmt_sub );
229 es_out_Control( p_demux->out, ES_OUT_SET_ES, p_sys->p_sub );
231 stream_Read( p_demux->s, NULL, 2 );
233 if( ( p_frame = stream_Block( p_demux->s, i_aux - 2 ) ) )
235 uint8_t *p = p_frame->p_buffer;
237 while( p < &p_frame->p_buffer[p_frame->i_buffer] && *p != 0 )
239 p++;
241 if( *p == 0 && p + 1 < &p_frame->p_buffer[p_frame->i_buffer] )
243 p_frame->i_buffer -= p + 1 - p_frame->p_buffer;
244 p_frame->p_buffer = p + 1;
247 /* Skip the first part (it is the language name) */
248 p_frame->i_pts = p_sys->i_pcr;
249 p_frame->i_dts = p_sys->i_pcr + 4000000; /* 4s */
251 es_out_Send( p_demux->out, p_sys->p_sub, p_frame );
254 else
256 /* We skip this extra data */
257 if( stream_Read( p_demux->s, NULL, i_aux ) < i_aux )
259 msg_Warn( p_demux, "cannot read" );
260 return 0;
263 i_size -= 6 + i_aux;
266 /* msg_Dbg( p_demux, "frame video size=%d", i_size ); */
267 if( i_size > 0 && ( p_frame = stream_Block( p_demux->s, i_size ) ) )
269 p_frame->i_dts = p_sys->i_pcr;
270 es_out_Send( p_demux->out, p_sys->p_video, p_frame );
274 /* Read audio */
275 i_size = header[3] | ( header[4] << 8 );
276 if( i_size > 0 )
278 /* msg_Dbg( p_demux, "frame audio size=%d", i_size ); */
279 if( p_sys->fmt_audio.i_codec == VLC_FOURCC( 'a', 'r', 'a', 'w' ) )
281 uint8_t h[4];
282 stream_Read( p_demux->s, h, 4 );
284 p_sys->fmt_audio.audio.i_channels = h[1];
285 p_sys->fmt_audio.audio.i_rate = GetWLE( &h[2] );
287 i_size -= 4;
289 if( p_sys->p_audio == NULL )
291 p_sys->p_audio = es_out_Add( p_demux->out, &p_sys->fmt_audio );
294 if( ( p_frame = stream_Block( p_demux->s, i_size ) ) )
296 p_frame->i_dts =
297 p_frame->i_pts = p_sys->i_pcr;
298 es_out_Send( p_demux->out, p_sys->p_audio, p_frame );
302 p_sys->i_pcr += p_sys->i_pcr_inc;
303 if( p_sys->i_time >= 0 )
305 p_sys->i_time += p_sys->i_pcr_inc;
308 return 1;
311 /*****************************************************************************
312 * Control:
313 *****************************************************************************/
314 static int Control( demux_t *p_demux, int i_query, va_list args )
316 demux_sys_t *p_sys = p_demux->p_sys;
317 double f, *pf;
318 int64_t i64, *pi64;
320 switch( i_query )
322 case DEMUX_GET_POSITION:
323 pf = (double*) va_arg( args, double* );
324 i64 = stream_Size( p_demux->s );
325 if( i64 > 0 )
327 *pf = (double)stream_Tell( p_demux->s ) / (double)i64;
329 else
331 *pf = 0.0;
333 return VLC_SUCCESS;
335 case DEMUX_SET_POSITION:
336 f = (double) va_arg( args, double );
337 i64 = stream_Size( p_demux->s );
339 es_out_Control( p_demux->out, ES_OUT_RESET_PCR );
340 if( stream_Seek( p_demux->s, (int64_t)(i64 * f) ) || ReSynch( p_demux ) )
342 return VLC_EGENERIC;
344 p_sys->i_time = -1; /* Invalidate time display */
345 return VLC_SUCCESS;
347 case DEMUX_GET_TIME:
348 pi64 = (int64_t*)va_arg( args, int64_t * );
349 if( p_sys->i_time < 0 )
351 *pi64 = 0;
352 return VLC_EGENERIC;
354 *pi64 = p_sys->i_time;
355 return VLC_SUCCESS;
357 #if 0
358 case DEMUX_GET_LENGTH:
359 pi64 = (int64_t*)va_arg( args, int64_t * );
360 if( p_sys->i_mux_rate > 0 )
362 *pi64 = (int64_t)1000000 * ( stream_Size( p_demux->s ) / 50 ) / p_sys->i_mux_rate;
363 return VLC_SUCCESS;
365 *pi64 = 0;
366 return VLC_EGENERIC;
368 #endif
369 case DEMUX_GET_FPS:
370 pf = (double*)va_arg( args, double * );
371 *pf = (double)1000000.0 / (double)p_sys->i_pcr_inc;
372 return VLC_SUCCESS;
374 case DEMUX_SET_TIME:
375 default:
376 return VLC_EGENERIC;
380 /*****************************************************************************
381 * ReSynch:
382 *****************************************************************************/
383 static int ReSynch( demux_t *p_demux )
385 uint8_t *p_peek;
386 int i_skip;
387 int i_peek;
389 while( !p_demux->b_die )
391 if( ( i_peek = stream_Peek( p_demux->s, &p_peek, 1024 ) ) < 8 )
393 return VLC_EGENERIC;
395 i_skip = 0;
397 while( i_skip < i_peek - 4 )
399 if( !strncmp( (char *)p_peek, "NSVf", 4 )
400 || !strncmp( (char *)p_peek, "NSVs", 4 ) )
402 if( i_skip > 0 )
404 stream_Read( p_demux->s, NULL, i_skip );
406 return VLC_SUCCESS;
408 p_peek++;
409 i_skip++;
412 stream_Read( p_demux->s, NULL, i_skip );
414 return VLC_EGENERIC;
417 /*****************************************************************************
418 * ReadNSVf:
419 *****************************************************************************/
420 static int ReadNSVf( demux_t *p_demux )
422 /* demux_sys_t *p_sys = p_demux->p_sys; */
423 uint8_t *p;
424 int i_size;
426 msg_Dbg( p_demux, "new NSVf chunk" );
427 if( stream_Peek( p_demux->s, &p, 8 ) < 8 )
429 return VLC_EGENERIC;
432 i_size = GetDWLE( &p[4] );
433 msg_Dbg( p_demux, " - size=%d", i_size );
435 return stream_Read( p_demux->s, NULL, i_size ) == i_size ? VLC_SUCCESS : VLC_EGENERIC;
437 /*****************************************************************************
438 * ReadNSVf:
439 *****************************************************************************/
440 static int ReadNSVs( demux_t *p_demux )
442 demux_sys_t *p_sys = p_demux->p_sys;
443 uint8_t header[19];
444 vlc_fourcc_t fcc;
446 if( stream_Read( p_demux->s, header, 19 ) < 19 )
448 msg_Warn( p_demux, "cannot read" );
449 return VLC_EGENERIC;
452 /* Video */
453 switch( ( fcc = VLC_FOURCC( header[4], header[5], header[6], header[7] ) ) )
455 case VLC_FOURCC( 'V', 'P', '3', ' ' ):
456 case VLC_FOURCC( 'V', 'P', '3', '1' ):
457 fcc = VLC_FOURCC( 'V', 'P', '3', '1' );
458 break;
459 case VLC_FOURCC( 'V', 'P', '6', '0' ):
460 case VLC_FOURCC( 'V', 'P', '6', '1' ):
461 case VLC_FOURCC( 'V', 'P', '6', '2' ):
462 case VLC_FOURCC( 'N', 'O', 'N', 'E' ):
463 break;
464 default:
465 msg_Warn( p_demux, "unknown codec %4.4s", (char *)&fcc );
466 break;
468 if( fcc != VLC_FOURCC( 'N', 'O', 'N', 'E' ) && fcc != p_sys->fmt_video.i_codec )
470 es_format_Init( &p_sys->fmt_video, VIDEO_ES, fcc );
471 p_sys->fmt_video.video.i_width = GetWLE( &header[12] );
472 p_sys->fmt_video.video.i_height = GetWLE( &header[14] );
473 if( p_sys->p_video )
475 es_out_Del( p_demux->out, p_sys->p_video );
477 p_sys->p_video = es_out_Add( p_demux->out, &p_sys->fmt_video );
479 msg_Dbg( p_demux, " - video `%4.4s' %dx%d",
480 (char*)&fcc,
481 p_sys->fmt_video.video.i_width,
482 p_sys->fmt_video.video.i_height );
485 /* Audio */
486 switch( ( fcc = VLC_FOURCC( header[8], header[9], header[10], header[11] ) ) )
488 case VLC_FOURCC( 'M', 'P', '3', ' ' ):
489 fcc = VLC_FOURCC( 'm', 'p', 'g', 'a' );
490 break;
491 case VLC_FOURCC( 'P', 'C', 'M', ' ' ):
492 fcc = VLC_FOURCC( 'a', 'r', 'a', 'w' );
493 break;
494 case VLC_FOURCC( 'A', 'A', 'C', ' ' ):
495 case VLC_FOURCC( 'A', 'A', 'C', 'P' ):
496 fcc = VLC_FOURCC( 'm', 'p', '4', 'a' );
497 break;
498 case VLC_FOURCC( 'N', 'O', 'N', 'E' ):
499 break;
500 default:
501 msg_Warn( p_demux, "unknown codec %4.4s", (char *)&fcc );
502 break;
505 if( fcc != VLC_FOURCC( 'N', 'O', 'N', 'E' ) && fcc != p_sys->fmt_audio.i_codec )
507 msg_Dbg( p_demux, " - audio `%4.4s'", (char*)&fcc );
509 if( p_sys->p_audio )
511 es_out_Del( p_demux->out, p_sys->p_audio );
512 p_sys->p_audio = NULL;
514 es_format_Init( &p_sys->fmt_audio, AUDIO_ES, fcc );
517 if( header[16]&0x80 )
519 /* Fractional frame rate */
520 switch( header[16]&0x03 )
522 case 0: /* 30 fps */
523 p_sys->i_pcr_inc = 33333; /* 300000/9 */
524 break;
525 case 1: /* 29.97 fps */
526 p_sys->i_pcr_inc = 33367; /* 300300/9 */
527 break;
528 case 2: /* 25 fps */
529 p_sys->i_pcr_inc = 40000; /* 360000/9 */
530 break;
531 case 3: /* 23.98 fps */
532 p_sys->i_pcr_inc = 41700; /* 375300/9 */
533 break;
536 if( header[16] < 0xc0 )
537 p_sys->i_pcr_inc = p_sys->i_pcr_inc * (((header[16] ^ 0x80) >> 2 ) +1 );
538 else
539 p_sys->i_pcr_inc = p_sys->i_pcr_inc / (((header[16] ^ 0xc0) >> 2 ) +1 );
541 else if( header[16] != 0 )
543 /* Integer frame rate */
544 p_sys->i_pcr_inc = 1000000 / header[16];
546 else
548 msg_Dbg( p_demux, "invalid fps (0x00)" );
549 p_sys->i_pcr_inc = 40000;
551 //msg_Dbg( p_demux, " - fps=%.3f", 1000000.0 / (double)p_sys->i_pcr_inc );
553 return VLC_SUCCESS;