1 /*****************************************************************************
3 *****************************************************************************
4 * Copyright (C) 2005 the VideoLAN team
7 * Authors: Laurent Aimar <fenrir@via.ecp.fr>
8 * Gertjan Van Droogenbroeck <gertjanvd _PLUS_ vlc _AT_ gmail _DOT_ com>
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
23 *****************************************************************************/
25 /*****************************************************************************
27 *****************************************************************************/
32 #include <vlc_common.h>
33 #include <vlc_plugin.h>
34 #include <vlc_demux.h>
40 /*****************************************************************************
42 *****************************************************************************/
43 static int Open ( vlc_object_t
* );
44 static void Close ( vlc_object_t
* );
47 set_category( CAT_INPUT
)
48 set_subcategory( SUBCAT_INPUT_DEMUX
)
49 set_description( N_("Nuv demuxer") )
50 set_capability( "demux", 145 )
51 set_callbacks( Open
, Close
)
55 /*****************************************************************************
57 *****************************************************************************/
58 static int Demux ( demux_t
* );
59 static int Control( demux_t
*, int, va_list );
67 } demux_index_entry_t
;
74 demux_index_entry_t
*idx
;
78 static void demux_IndexInit( demux_index_t
* );
79 static void demux_IndexClean( demux_index_t
* );
80 static void demux_IndexAppend( demux_index_t
*,
81 int64_t i_time
, int64_t i_offset
);
82 /* Convert a time into offset */
83 static int64_t demux_IndexConvertTime( demux_index_t
*, int64_t i_time
);
84 /* Find the nearest offset in the index */
85 static int64_t demux_IndexFindOffset( demux_index_t
*, int64_t i_offset
);
91 char id
[12]; /* "NuppelVideo\0" or "MythTVVideo\0" */
92 char version
[5]; /* "x.xx\0" */
99 char i_mode
; /* P progressive, I interlaced */
101 double d_aspect
; /* 1.0 squared pixel */
104 int i_video_blocks
; /* 0 no video, -1 unknown */
108 int i_keyframe_distance
;
112 #define NUV_FH_SIZE 12
115 char i_type
; /* A: audio, V: video, S: sync; T: test
116 R: Seekpoint (string:RTjjjjjjjj)
117 D: Extra data for codec
118 X: extended data Q: seektable */
119 char i_compression
; /* V: 0 uncompressed
124 A: 0 uncompressed (44100 1-bits, 2ch)
130 N null frame loudless
132 S: B audio and vdeo sync point
133 A audio sync info (timecode == effective
135 V next video sync (timecode == next video
137 S audio,video,text correlation */
138 char i_keyframe
; /* 0 keyframe, else no no key frame */
139 uint8_t i_filters
; /* 0x01: gauss 5 pixel (8,2,2,2,2)/16
140 0x02: gauss 5 pixel (8,1,1,1,1)/12
141 0x04: cartoon filter */
143 int i_timecode
; /* ms */
145 int i_length
; /* V,A,T: length of following data
146 S: length of packet correl */
152 vlc_fourcc_t i_video_fcc
;
154 vlc_fourcc_t i_audio_fcc
;
155 int i_audio_sample_rate
;
156 int i_audio_bits_per_sample
;
157 int i_audio_channels
;
158 int i_audio_compression_ratio
;
160 int i_rtjpeg_quality
;
161 int i_rtjpeg_luma_filter
;
162 int i_rtjpeg_chroma_filter
;
167 int64_t i_seektable_offset
;
168 int64_t i_keyframe_adjust_offset
;
175 extended_header_t exh
;
178 es_out_id_t
*p_es_video
;
182 es_out_id_t
*p_es_audio
;
188 /* frameheader buffer */
189 uint8_t fh_buffer
[NUV_FH_SIZE
];
190 int64_t i_total_frames
;
191 int64_t i_total_length
;
192 /* first frame position (used for calculating size without seektable) */
193 int i_first_frame_offset
;
196 static int HeaderLoad( demux_t
*, header_t
*h
);
197 static int FrameHeaderLoad( demux_t
*, frame_header_t
*h
);
198 static int ExtendedHeaderLoad( demux_t
*, extended_header_t
*h
);
199 static int SeekTableLoad( demux_t
*, demux_sys_t
* );
200 static int ControlSetPosition( demux_t
*p_demux
, int64_t i_pos
, bool b_guess
);
202 /*****************************************************************************
203 * Open: initializes ES structures
204 *****************************************************************************/
205 static int Open( vlc_object_t
* p_this
)
207 demux_t
*p_demux
= (demux_t
*)p_this
;
209 const uint8_t *p_peek
;
214 if( stream_Peek( p_demux
->s
, &p_peek
, 12 ) != 12 ||
215 ( strncmp( (char *)p_peek
, "MythTVVideo", 11 ) &&
216 strncmp( (char *)p_peek
, "NuppelVideo", 11 ) ) )
219 p_sys
= malloc( sizeof( demux_sys_t
) );
222 memset( p_sys
, 0, sizeof( demux_sys_t
) );
223 p_sys
->p_es_video
= NULL
;
224 p_sys
->p_es_audio
= NULL
;
225 p_sys
->p_extra_f
= NULL
;
227 p_sys
->b_index
= false;
228 p_sys
->i_total_frames
= -1;
229 p_sys
->i_total_length
= -1;
230 demux_IndexInit( &p_sys
->idx
);
232 p_demux
->p_sys
= p_sys
;
234 /* Info about the stream */
235 stream_Control( p_demux
->s
, STREAM_CAN_SEEK
, &p_sys
->b_seekable
);
237 if( p_sys
->b_seekable
)
238 msg_Dbg( p_demux
, "stream is seekable" );
240 msg_Dbg( p_demux
, "stream is NOT seekable" );
243 if( HeaderLoad( p_demux
, &p_sys
->hdr
) )
247 if( FrameHeaderLoad( p_demux
, &fh
) || fh
.i_type
!= 'D' )
249 if( fh
.i_length
> 0 )
251 if( fh
.i_compression
== 'F' || fh
.i_compression
== 'R' )
253 /* ffmpeg extra data */
254 p_sys
->i_extra_f
= fh
.i_length
;
255 p_sys
->p_extra_f
= malloc( fh
.i_length
);
256 if( p_sys
->p_extra_f
== NULL
|| stream_Read( p_demux
->s
,
257 p_sys
->p_extra_f
, fh
.i_length
) != fh
.i_length
)
262 msg_Warn( p_demux
, "unsupported 'D' frame (c=%c)", fh
.i_compression
);
263 if( stream_Read( p_demux
->s
, NULL
, fh
.i_length
) != fh
.i_length
)
268 /* Check and load extented */
269 if( stream_Peek( p_demux
->s
, &p_peek
, 1 ) != 1 )
271 if( p_peek
[0] == 'X' )
275 if( FrameHeaderLoad( p_demux
, &fh
) )
277 if( fh
.i_length
!= 512 )
280 if( ExtendedHeaderLoad( p_demux
, &p_sys
->exh
) )
283 if( !p_sys
->b_seekable
)
284 msg_Warn( p_demux
, "stream is not seekable, skipping seektable" );
285 else if( SeekTableLoad( p_demux
, p_sys
) )
287 p_sys
->b_index
= false;
288 msg_Warn( p_demux
, "Seektable is broken, seek won't be accurate" );
295 /* XXX: for now only file with extended chunk are supported
296 * why: because else we need to have support for rtjpeg+stupid nuv shit */
297 msg_Err( p_demux
, "incomplete NUV support (upload samples)" );
301 /* Create audio/video (will work only with extended header and audio=mp3 */
302 if( p_sys
->hdr
.i_video_blocks
!= 0 )
306 es_format_Init( &fmt
, VIDEO_ES
, p_sys
->exh
.i_video_fcc
);
307 fmt
.video
.i_width
= p_sys
->hdr
.i_width
;
308 fmt
.video
.i_height
= p_sys
->hdr
.i_height
;
309 fmt
.i_extra
= p_sys
->i_extra_f
;
310 fmt
.p_extra
= p_sys
->p_extra_f
;
311 fmt
.video
.i_sar_num
= p_sys
->hdr
.d_aspect
* fmt
.video
.i_height
;
312 fmt
.video
.i_sar_den
= fmt
.video
.i_width
;
314 p_sys
->p_es_video
= es_out_Add( p_demux
->out
, &fmt
);
316 if( p_sys
->hdr
.i_audio_blocks
!= 0 )
320 es_format_Init( &fmt
, AUDIO_ES
, VLC_CODEC_MPGA
);
321 fmt
.audio
.i_rate
= p_sys
->exh
.i_audio_sample_rate
;
322 fmt
.audio
.i_bitspersample
= p_sys
->exh
.i_audio_bits_per_sample
;
324 p_sys
->p_es_audio
= es_out_Add( p_demux
->out
, &fmt
);
326 if( p_sys
->hdr
.i_text_blocks
!= 0 )
328 msg_Warn( p_demux
, "text not yet supported (upload samples)" );
331 p_sys
->i_first_frame_offset
= stream_Tell( p_demux
->s
);
333 /* Fill p_demux fields */
334 p_demux
->pf_demux
= Demux
;
335 p_demux
->pf_control
= Control
;
340 msg_Warn( p_demux
, "cannot load Nuv file" );
341 p_demux
->p_sys
= NULL
;
346 /*****************************************************************************
347 * Close: frees unused data
348 *****************************************************************************/
349 static void Close( vlc_object_t
* p_this
)
351 demux_t
*p_demux
= (demux_t
*)p_this
;
352 demux_sys_t
*p_sys
= p_demux
->p_sys
;
354 free( p_sys
->p_extra_f
);
355 demux_IndexClean( &p_sys
->idx
);
359 /*****************************************************************************
360 * Demux: reads and demuxes data packets
361 *****************************************************************************
362 * Returns -1 in case of error, 0 in case of EOF, 1 otherwise
363 *****************************************************************************/
364 static int Demux( demux_t
*p_demux
)
366 demux_sys_t
*p_sys
= p_demux
->p_sys
;
372 if( !vlc_object_alive (p_demux
) )
375 if( FrameHeaderLoad( p_demux
, &fh
) )
378 if( fh
.i_type
== 'A' || fh
.i_type
== 'V' )
381 /* TODO add support for some block type */
383 if( fh
.i_type
!= 'R' && fh
.i_length
> 0 )
385 if( stream_Read( p_demux
->s
, NULL
, fh
.i_length
) != fh
.i_length
)
391 if( ( p_data
= stream_Block( p_demux
->s
, fh
.i_length
) ) == NULL
)
394 p_data
->i_dts
= VLC_TS_0
+ (int64_t)fh
.i_timecode
* 1000;
395 p_data
->i_pts
= (fh
.i_type
== 'V') ? VLC_TS_INVALID
: p_data
->i_dts
;
397 /* only add keyframes to index */
398 if( !fh
.i_keyframe
&& !p_sys
->b_index
)
399 demux_IndexAppend( &p_sys
->idx
,
400 p_data
->i_dts
- VLC_TS_0
,
401 stream_Tell(p_demux
->s
) - NUV_FH_SIZE
);
404 if( p_sys
->i_pcr
< 0 || p_sys
->i_pcr
< p_data
->i_dts
- VLC_TS_0
)
406 p_sys
->i_pcr
= p_data
->i_dts
- VLC_TS_0
;
407 es_out_Control( p_demux
->out
, ES_OUT_SET_PCR
, VLC_TS_0
+ p_sys
->i_pcr
);
410 if( fh
.i_type
== 'A' && p_sys
->p_es_audio
)
412 if( fh
.i_compression
== '3' )
413 es_out_Send( p_demux
->out
, p_sys
->p_es_audio
, p_data
);
416 msg_Dbg( p_demux
, "unsupported compression %c for audio (upload samples)", fh
.i_compression
);
417 block_Release( p_data
);
420 else if( fh
.i_type
== 'V' && p_sys
->p_es_video
)
422 if( fh
.i_compression
>='0' && fh
.i_compression
<='3' )
424 /* for rtjpeg data, the header is also needed */
425 p_data
= block_Realloc( p_data
, NUV_FH_SIZE
, fh
.i_length
);
426 memcpy( p_data
->p_buffer
, p_sys
->fh_buffer
, NUV_FH_SIZE
);
428 /* 0,1,2,3 -> rtjpeg, >=4 mpeg4 */
429 if( fh
.i_compression
>= '0' )
430 es_out_Send( p_demux
->out
, p_sys
->p_es_video
, p_data
);
433 msg_Dbg( p_demux
, "unsupported compression %c for video (upload samples)", fh
.i_compression
);
434 block_Release( p_data
);
439 block_Release( p_data
);
445 /*****************************************************************************
447 *****************************************************************************/
448 static int Control( demux_t
*p_demux
, int i_query
, va_list args
)
450 demux_sys_t
*p_sys
= p_demux
->p_sys
;
458 case DEMUX_GET_POSITION
:
459 pf
= (double*)va_arg( args
, double * );
461 if( p_sys
->i_total_length
> 0 && p_sys
->i_pcr
>= 0 )
463 *pf
= (double)p_sys
->i_pcr
/ (double)p_sys
->i_total_length
;
467 i64
= stream_Size( p_demux
->s
);
470 const double f_current
= stream_Tell( p_demux
->s
);
471 *pf
= f_current
/ (double)i64
;
480 case DEMUX_SET_POSITION
:
484 f
= (double)va_arg( args
, double );
488 /* first try to see if we can seek based on time (== GET_LENGTH works) */
489 if( p_sys
->i_total_length
> 0 && ( i_pos
= demux_IndexConvertTime( &p_sys
->idx
, p_sys
->i_total_length
* f
) ) > 0 )
490 return ControlSetPosition( p_demux
, i_pos
, false );
492 /* if not search based on total stream size */
493 else if( ( i_pos
= demux_IndexFindOffset( &p_sys
->idx
, stream_Size( p_demux
->s
) * f
) ) >= 0 )
494 return ControlSetPosition( p_demux
, i_pos
, false );
496 else if( ( i_pos
= p_sys
->i_first_frame_offset
+ ( stream_Size( p_demux
->s
) - p_sys
->i_first_frame_offset
) * f
) >= 0 )
497 return ControlSetPosition( p_demux
, i_pos
, true );
504 pi64
= (int64_t*)va_arg( args
, int64_t * );
505 *pi64
= p_sys
->i_pcr
>= 0 ? p_sys
->i_pcr
: 0;
511 i64
= (int64_t)va_arg( args
, int64_t );
515 i_pos
= demux_IndexConvertTime( &p_sys
->idx
, i64
);
519 return ControlSetPosition( p_demux
, i_pos
, false );
522 case DEMUX_GET_LENGTH
:
523 pi64
= (int64_t*)va_arg( args
, int64_t * );
524 if( p_sys
->i_total_length
>= 0 )
526 *pi64
= p_sys
->i_total_length
;
529 else if( stream_Tell( p_demux
->s
) > p_sys
->i_first_frame_offset
)
531 /* This should give an approximation of the total duration */
532 *pi64
= (double)( stream_Size( p_demux
->s
) - p_sys
->i_first_frame_offset
) /
533 (double)( stream_Tell( p_demux
->s
) - p_sys
->i_first_frame_offset
)
534 * (double)( p_sys
->i_pcr
>= 0 ? p_sys
->i_pcr
: 0 );
541 pf
= (double*)va_arg( args
, double * );
542 *pf
= p_sys
->hdr
.d_fps
;
551 static int ControlSetPosition( demux_t
*p_demux
, int64_t i_pos
, bool b_guess
)
553 demux_sys_t
*p_sys
= p_demux
->p_sys
;
558 /* if we can seek in the stream */
559 if( p_sys
->b_seekable
&& !b_guess
)
561 if( stream_Seek( p_demux
->s
, i_pos
) )
567 if( i_pos
> stream_Tell( p_demux
->s
) )
569 msg_Dbg( p_demux
, "unable to seek, skipping frames (slow)" );
573 msg_Warn( p_demux
, "unable to seek, only forward seeking is possible" );
579 while( vlc_object_alive (p_demux
) )
584 if( ( i_tell
= stream_Tell( p_demux
->s
) ) >= i_pos
)
587 if( FrameHeaderLoad( p_demux
, &fh
) )
590 if( fh
.i_type
== 'A' || fh
.i_type
== 'V' )
592 if( !fh
.i_keyframe
&& !p_sys
->b_index
)
593 demux_IndexAppend( &p_sys
->idx
,(int64_t)fh
.i_timecode
*1000, i_tell
);
596 if( fh
.i_type
!= 'R' && fh
.i_length
> 0 )
598 if( stream_Read( p_demux
->s
, NULL
, fh
.i_length
) != fh
.i_length
)
606 /*****************************************************************************
608 *****************************************************************************/
609 static inline void GetDoubleLE( double *pd
, void *src
)
611 /* FIXME works only if sizeof(double) == 8 */
612 #ifdef WORDS_BIGENDIAN
613 uint8_t *p
= (uint8_t*)pd
, *q
= (uint8_t*)src
;
615 for( i
= 0; i
< 8; i
++ )
618 memcpy( pd
, src
, 8 );
624 static int HeaderLoad( demux_t
*p_demux
, header_t
*h
)
628 if( stream_Read( p_demux
->s
, buffer
, 72 ) != 72 )
631 /* XXX: they are alignment to take care of (another broken format) */
632 memcpy( h
->id
, &buffer
[ 0], 12 );
633 memcpy( h
->version
, &buffer
[12], 5 );
634 h
->i_width
= GetDWLE( &buffer
[20] );
635 h
->i_height
= GetDWLE( &buffer
[24] );
636 h
->i_width_desired
= GetDWLE( &buffer
[28] );
637 h
->i_height_desired
= GetDWLE( &buffer
[32] );
638 h
->i_mode
= buffer
[36];
639 GetDoubleLE( &h
->d_aspect
, &buffer
[40] );
640 GetDoubleLE( &h
->d_fps
, &buffer
[48] );
641 h
->i_video_blocks
= GetDWLE( &buffer
[56] );
642 h
->i_audio_blocks
= GetDWLE( &buffer
[60] );
643 h
->i_text_blocks
= GetDWLE( &buffer
[64] );
644 h
->i_keyframe_distance
= GetDWLE( &buffer
[68] );
646 msg_Dbg( p_demux
, "nuv: h=%s v=%s %dx%d a=%f fps=%f v=%d a=%d t=%d kfd=%d",
647 h
->id
, h
->version
, h
->i_width
, h
->i_height
, h
->d_aspect
,
648 h
->d_fps
, h
->i_video_blocks
, h
->i_audio_blocks
, h
->i_text_blocks
,
649 h
->i_keyframe_distance
);
656 static int FrameHeaderLoad( demux_t
*p_demux
, frame_header_t
*h
)
658 uint8_t* buffer
= p_demux
->p_sys
->fh_buffer
;
660 if( stream_Read( p_demux
->s
, buffer
, 12 ) != 12 )
663 h
->i_type
= buffer
[0];
664 h
->i_compression
= buffer
[1];
665 h
->i_keyframe
= buffer
[2];
666 h
->i_filters
= buffer
[3];
668 h
->i_timecode
= GetDWLE( &buffer
[4] );
669 h
->i_length
= GetDWLE( &buffer
[8] );
671 msg_Dbg( p_demux
, "frame hdr: t=%c c=%c k=%d f=0x%x timecode=%d l=%d",
673 h
->i_compression
? h
->i_compression
: ' ',
674 h
->i_keyframe
? h
->i_keyframe
: ' ',
676 h
->i_timecode
, h
->i_length
);
681 static int ExtendedHeaderLoad( demux_t
*p_demux
, extended_header_t
*h
)
685 if( stream_Read( p_demux
->s
, buffer
, 512 ) != 512 )
688 h
->i_version
= GetDWLE( &buffer
[0] );
689 h
->i_video_fcc
= VLC_FOURCC( buffer
[4], buffer
[5], buffer
[6], buffer
[7] );
690 h
->i_audio_fcc
= VLC_FOURCC( buffer
[8], buffer
[9], buffer
[10], buffer
[11] );
691 h
->i_audio_sample_rate
= GetDWLE( &buffer
[12] );
692 h
->i_audio_bits_per_sample
= GetDWLE( &buffer
[16] );
693 h
->i_audio_channels
= GetDWLE( &buffer
[20] );
694 h
->i_audio_compression_ratio
= GetDWLE( &buffer
[24] );
695 h
->i_audio_quality
= GetDWLE( &buffer
[28] );
696 h
->i_rtjpeg_quality
= GetDWLE( &buffer
[32] );
697 h
->i_rtjpeg_luma_filter
= GetDWLE( &buffer
[36] );
698 h
->i_rtjpeg_chroma_filter
= GetDWLE( &buffer
[40] );
699 h
->i_lavc_bitrate
= GetDWLE( &buffer
[44] );
700 h
->i_lavc_qmin
= GetDWLE( &buffer
[48] );
701 h
->i_lavc_qmin
= GetDWLE( &buffer
[52] );
702 h
->i_lavc_maxqdiff
= GetDWLE( &buffer
[56] );
703 h
->i_seektable_offset
= GetQWLE( &buffer
[60] );
704 h
->i_keyframe_adjust_offset
= GetQWLE( &buffer
[68] );
706 msg_Dbg( p_demux
, "ex hdr: v=%d vffc=%4.4s afcc=%4.4s %dHz %dbits ach=%d acr=%d aq=%d"
707 "rtjpeg q=%d lf=%d lc=%d lavc br=%d qmin=%d qmax=%d maxqdiff=%d seekableoff=%"PRIi64
" keyfao=%"PRIi64
,
709 (char*)&h
->i_video_fcc
,
710 (char*)&h
->i_audio_fcc
, h
->i_audio_sample_rate
, h
->i_audio_bits_per_sample
, h
->i_audio_channels
,
711 h
->i_audio_compression_ratio
, h
->i_audio_quality
,
712 h
->i_rtjpeg_quality
, h
->i_rtjpeg_luma_filter
, h
->i_rtjpeg_chroma_filter
,
713 h
->i_lavc_bitrate
, h
->i_lavc_qmin
, h
->i_lavc_qmax
, h
->i_lavc_maxqdiff
,
714 h
->i_seektable_offset
, h
->i_keyframe_adjust_offset
);
722 int64_t i_file_offset;
723 int32_t i_keyframe_number;
728 int32_t i_keyframe_number;
732 static int SeekTableLoad( demux_t
*p_demux
, demux_sys_t
*p_sys
)
735 int64_t i_original_pos
;
736 int64_t i_time
, i_offset
;
737 int keyframe
, last_keyframe
= 0, frame
= 0, kfa_entry_id
= 0;
739 if( p_sys
->exh
.i_seektable_offset
<= 0 )
742 /* Save current position */
743 i_original_pos
= stream_Tell( p_demux
->s
);
745 msg_Dbg( p_demux
, "current offset %"PRIi64
, i_original_pos
);
747 msg_Dbg( p_demux
, "seeking in stream to %"PRIi64
, p_sys
->exh
.i_seektable_offset
);
749 if( stream_Seek( p_demux
->s
, p_sys
->exh
.i_seektable_offset
) )
752 if( FrameHeaderLoad( p_demux
, &fh
) )
755 if( fh
.i_type
!= 'Q' )
757 msg_Warn( p_demux
, "invalid seektable, frame type=%c", fh
.i_type
);
758 stream_Seek( p_demux
->s
, i_original_pos
);
763 uint8_t *p_seek_table
= malloc( fh
.i_length
);
764 if( p_seek_table
== NULL
)
767 if( stream_Read( p_demux
->s
, p_seek_table
, fh
.i_length
) != fh
.i_length
)
769 free( p_seek_table
);
772 const int32_t i_seek_elements
= fh
.i_length
/ 12;
774 /* Get keyframe adjust offsets */
775 int32_t i_kfa_elements
;
776 uint8_t *p_kfa_table
;
778 if( p_sys
->exh
.i_keyframe_adjust_offset
> 0 )
780 msg_Dbg( p_demux
, "seeking in stream to %"PRIi64
, p_sys
->exh
.i_keyframe_adjust_offset
);
781 if( stream_Seek( p_demux
->s
, p_sys
->exh
.i_keyframe_adjust_offset
) )
783 free( p_seek_table
);
787 if( FrameHeaderLoad( p_demux
, &fh
) )
789 free( p_seek_table
);
793 if( fh
.i_type
== 'K' && fh
.i_length
>= 8 )
795 p_kfa_table
= malloc( fh
.i_length
);
797 if( p_kfa_table
== NULL
)
799 free( p_seek_table
);
803 if( stream_Read( p_demux
->s
, p_kfa_table
, fh
.i_length
) != fh
.i_length
)
805 free( p_seek_table
);
810 i_kfa_elements
= fh
.i_length
/ 8;
819 if( i_kfa_elements
> 0 )
820 msg_Warn( p_demux
, "untested keyframe adjust support, upload samples" );
822 for( int32_t j
= 0; j
< i_seek_elements
; j
++)
825 uint8_t* p
= p_seek_table
+ j
* 12;
826 msg_Dbg( p_demux
, "%x %x %x %x %x %x %x %x %x %x %x %x",
827 p
[0], p
[1], p
[2], p
[3], p
[4], p
[5], p
[6], p
[7], p
[8], p
[9], p
[10], p
[11]);
829 keyframe
= GetDWLE( p_seek_table
+ j
* 12 + 8 );
831 frame
+= (keyframe
- last_keyframe
) * p_sys
->hdr
.i_keyframe_distance
;
833 if( kfa_entry_id
< i_kfa_elements
&& *(int32_t*)(p_kfa_table
+ kfa_entry_id
* 12 + 4) == j
)
835 frame
-= *(int32_t*)(p_kfa_table
+ kfa_entry_id
* 12);
836 msg_Dbg( p_demux
, "corrected keyframe %d with current frame number %d (corrected with %d)",
837 keyframe
, frame
, *(int32_t*)(p_kfa_table
+ kfa_entry_id
* 12) );
841 i_time
= (double)( (int64_t)frame
* 1000000 ) / p_sys
->hdr
.d_fps
;
842 i_offset
= GetQWLE( p_seek_table
+ j
* 12 );
844 if( i_offset
== 0 && i_time
!= 0 )
845 msg_Dbg( p_demux
, "invalid file offset %d %"PRIi64
, keyframe
, i_offset
);
848 demux_IndexAppend( &p_sys
->idx
, i_time
, i_offset
);
850 msg_Dbg( p_demux
, "adding entry position %d %"PRIi64
" file offset %"PRIi64
, keyframe
, i_time
, i_offset
);
854 last_keyframe
= keyframe
;
857 p_sys
->i_total_frames
= (int64_t)frame
;
859 p_sys
->b_index
= true;
861 p_sys
->i_total_length
= p_sys
->i_total_frames
* 1000000 / p_sys
->hdr
.d_fps
;
863 msg_Dbg( p_demux
, "index table loaded (%d elements)", i_seek_elements
);
866 free ( p_kfa_table
);
868 free ( p_seek_table
);
870 /* Restore stream position */
871 if( stream_Seek( p_demux
->s
, i_original_pos
) )
878 /*****************************************************************************/
879 #define DEMUX_INDEX_SIZE_MAX (100000)
880 static void demux_IndexInit( demux_index_t
*p_idx
)
883 p_idx
->i_idx_max
= 0;
886 static void demux_IndexClean( demux_index_t
*p_idx
)
891 static void demux_IndexAppend( demux_index_t
*p_idx
,
892 int64_t i_time
, int64_t i_offset
)
894 /* Be sure to append new entry (we don't insert point) */
895 if( p_idx
->i_idx
> 0 && p_idx
->idx
[p_idx
->i_idx
-1].i_time
>= i_time
)
899 if( p_idx
->i_idx
>= p_idx
->i_idx_max
)
901 if( p_idx
->i_idx
>= DEMUX_INDEX_SIZE_MAX
)
903 /* Avoid too big index */
904 const int64_t i_length
= p_idx
->idx
[p_idx
->i_idx
-1].i_time
-
905 p_idx
->idx
[0].i_time
;
906 const int i_count
= DEMUX_INDEX_SIZE_MAX
/2;
909 /* We try to reduce the resolution of the index by a factor 2 */
910 for( i
= 1, j
= 1; i
< p_idx
->i_idx
; i
++ )
912 if( p_idx
->idx
[i
].i_time
< j
* i_length
/ i_count
)
915 p_idx
->idx
[j
++] = p_idx
->idx
[i
];
919 if( p_idx
->i_idx
> 3 * DEMUX_INDEX_SIZE_MAX
/ 4 )
921 /* We haven't created enough space
922 * (This method won't create a good index but work for sure) */
923 for( i
= 0; i
< p_idx
->i_idx
/2; i
++ )
924 p_idx
->idx
[i
] = p_idx
->idx
[2*i
];
930 p_idx
->i_idx_max
+= 1000;
931 p_idx
->idx
= xrealloc( p_idx
->idx
,
932 p_idx
->i_idx_max
*sizeof(demux_index_entry_t
));
937 p_idx
->idx
[p_idx
->i_idx
].i_time
= i_time
;
938 p_idx
->idx
[p_idx
->i_idx
].i_offset
= i_offset
;
942 static int64_t demux_IndexConvertTime( demux_index_t
*p_idx
, int64_t i_time
)
945 int i_max
= p_idx
->i_idx
-1;
948 if( p_idx
->i_idx
<= 0 )
951 /* Special border case */
952 if( i_time
<= p_idx
->idx
[0].i_time
)
953 return p_idx
->idx
[0].i_offset
;
954 if( i_time
>= p_idx
->idx
[i_max
].i_time
)
955 return p_idx
->idx
[i_max
].i_offset
;
962 if( i_max
- i_min
<= 1 )
965 i_med
= (i_min
+i_max
)/2;
966 if( p_idx
->idx
[i_med
].i_time
< i_time
)
968 else if( p_idx
->idx
[i_med
].i_time
> i_time
)
971 return p_idx
->idx
[i_med
].i_offset
;
974 /* return nearest in time */
975 if( i_time
- p_idx
->idx
[i_min
].i_time
< p_idx
->idx
[i_max
].i_time
- i_time
)
976 return p_idx
->idx
[i_min
].i_offset
;
978 return p_idx
->idx
[i_max
].i_offset
;
982 static int64_t demux_IndexFindOffset( demux_index_t
*p_idx
, int64_t i_offset
)
985 int i_max
= p_idx
->i_idx
-1;
988 if( p_idx
->i_idx
<= 0 )
991 /* Special border case */
992 if( i_offset
<= p_idx
->idx
[0].i_offset
)
993 return p_idx
->idx
[0].i_offset
;
994 if( i_offset
== p_idx
->idx
[i_max
].i_offset
)
995 return p_idx
->idx
[i_max
].i_offset
;
996 if( i_offset
> p_idx
->idx
[i_max
].i_offset
)
1004 if( i_max
- i_min
<= 1 )
1007 i_med
= (i_min
+i_max
)/2;
1008 if( p_idx
->idx
[i_med
].i_offset
< i_offset
)
1010 else if( p_idx
->idx
[i_med
].i_offset
> i_offset
)
1013 return p_idx
->idx
[i_med
].i_offset
;
1016 /* return nearest */
1017 if( i_offset
- p_idx
->idx
[i_min
].i_offset
< p_idx
->idx
[i_max
].i_offset
- i_offset
)
1018 return p_idx
->idx
[i_min
].i_offset
;
1020 return p_idx
->idx
[i_max
].i_offset
;