[vlc-devel] commit: Made the seeking code path a bit more clear (nuv). (Laurent Aimar )
git version control
git at videolan.org
Mon Aug 24 22:43:23 CEST 2009
vlc | branch: master | Laurent Aimar <fenrir at videolan.org> | Mon Aug 24 22:30:29 2009 +0200| [a2c415267738706afc01a4b81df724aa16e14e96] | committer: Laurent Aimar
Made the seeking code path a bit more clear (nuv).
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=a2c415267738706afc01a4b81df724aa16e14e96
---
modules/demux/nuv.c | 39 ++++++++++++++++++++-------------------
1 files changed, 20 insertions(+), 19 deletions(-)
diff --git a/modules/demux/nuv.c b/modules/demux/nuv.c
index 85011cd..d32c671 100644
--- a/modules/demux/nuv.c
+++ b/modules/demux/nuv.c
@@ -728,9 +728,6 @@ static int SeekTableLoad( demux_t *p_demux, demux_sys_t *p_sys )
{
frame_header_t fh;
int64_t i_original_pos;
- uint8_t* p_seek_table;
- uint8_t* p_kfa_table;
- int32_t i_seek_elements = 0, i_kfa_elements = 0, j;
int64_t i_time, i_offset;
int keyframe, last_keyframe = 0, frame = 0, kfa_entry_id = 0;
@@ -750,29 +747,29 @@ static int SeekTableLoad( demux_t *p_demux, demux_sys_t *p_sys )
if( FrameHeaderLoad( p_demux, &fh ) )
return VLC_EGENERIC;
- if( fh.i_type == 'Q' )
- {
- p_seek_table = malloc( fh.i_length );
- if( p_seek_table == NULL )
- return VLC_ENOMEM;
-
- if( stream_Read( p_demux->s, p_seek_table, fh.i_length ) != fh.i_length )
- {
- free( p_seek_table );
- return VLC_EGENERIC;
- }
-
- i_seek_elements = fh.i_length / 12;
- }
- else
+ if( fh.i_type != 'Q' )
{
msg_Warn( p_demux, "invalid seektable, frame type=%c", fh.i_type );
stream_Seek( p_demux->s, i_original_pos );
return VLC_EGENERIC;
}
+ /* */
+ uint8_t *p_seek_table = malloc( fh.i_length );
+ if( p_seek_table == NULL )
+ return VLC_ENOMEM;
+
+ if( stream_Read( p_demux->s, p_seek_table, fh.i_length ) != fh.i_length )
+ {
+ free( p_seek_table );
+ return VLC_EGENERIC;
+ }
+ const int32_t i_seek_elements = fh.i_length / 12;
/* Get keyframe adjust offsets */
+ int32_t i_kfa_elements;
+ uint8_t *p_kfa_table;
+
if( p_sys->exh.i_keyframe_adjust_offset > 0 )
{
msg_Dbg( p_demux, "seeking in stream to %"PRIi64, p_sys->exh.i_keyframe_adjust_offset );
@@ -808,12 +805,16 @@ static int SeekTableLoad( demux_t *p_demux, demux_sys_t *p_sys )
i_kfa_elements = fh.i_length / 8;
}
}
+ else
+ {
+ i_kfa_elements = 0;
+ }
if( i_kfa_elements > 0 )
msg_Warn( p_demux, "untested keyframe adjust support, upload samples" );
- for(j=0; j < i_seek_elements; j++)
+ for( int32_t j = 0; j < i_seek_elements; j++)
{
#if 0
uint8_t* p = p_seek_table + j * 12;
More information about the vlc-devel
mailing list