]> git.sesse.net Git - vlc/blobdiff - modules/demux/avi/avi.c
* Spelling fixes.
[vlc] / modules / demux / avi / avi.c
index 29b161753c71041e283f10f10f937558d0c7868e..eea48b6c522463eb44d9a55ea12fb9ea7f0ae480 100644 (file)
@@ -1,8 +1,8 @@
 /*****************************************************************************
  * avi.c : AVI file Stream input module for vlc
  *****************************************************************************
- * Copyright (C) 2001 VideoLAN
- * $Id: avi.c,v 1.74 2003/11/22 15:10:38 fenrir Exp $
+ * Copyright (C) 2001-2004 VideoLAN
+ * $Id$
  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
  *
  * This program is free software; you can redistribute it and/or modify
 
 #include <vlc/vlc.h>
 #include <vlc/input.h>
+
+#include "vlc_meta.h"
 #include "codecs.h"
 
 #include "libavi.h"
-#include "avi.h"
 
 /*****************************************************************************
  * Module descriptor
  *****************************************************************************/
-static int  Open   ( vlc_object_t * );
-static void Close  ( vlc_object_t * );
+
+#define INTERLEAVE_TEXT N_("Force interleaved method" )
+#define INTERLEAVE_LONGTEXT N_( "Force interleaved method" )
+
+#define INDEX_TEXT N_("Force index creation")
+#define INDEX_LONGTEXT N_( \
+    "Recreate a index for the AVI file so we can seek trough it more reliably." )
+
+static int  Open ( vlc_object_t * );
+static void Close( vlc_object_t * );
 
 vlc_module_begin();
-    add_category_hint( N_("avi-demuxer"), NULL, VLC_TRUE );
-        add_bool( "avi-interleaved", 0, NULL,
-                  N_("force interleaved method"),
-                  N_("force interleaved method"), VLC_TRUE );
-        add_bool( "avi-index", 0, NULL,
-                  N_("force index creation"),
-                  N_("force index creation"), VLC_TRUE );
-
-    set_description( N_("AVI demuxer") );
-    set_capability( "demux", 212 );
+    set_description( _("AVI demuxer") );
+    set_capability( "demux2", 212 );
+
+    add_bool( "avi-interleaved", 0, NULL,
+              INTERLEAVE_TEXT, INTERLEAVE_LONGTEXT, VLC_TRUE );
+    add_bool( "avi-index", 0, NULL,
+              INDEX_TEXT, INDEX_LONGTEXT, VLC_TRUE );
+
     set_callbacks( Open, Close );
 vlc_module_end();
 
 /*****************************************************************************
  * Local prototypes
  *****************************************************************************/
-static int    Control         ( input_thread_t *, int, va_list );
-static int    Seek            ( input_thread_t *, mtime_t, int );
-static int    Demux_Seekable  ( input_thread_t * );
-static int    Demux_UnSeekable( input_thread_t *p_input );
+static int Control         ( demux_t *, int, va_list );
+static int Seek            ( demux_t *, mtime_t, int );
+static int Demux_Seekable  ( demux_t * );
+static int Demux_UnSeekable( demux_t * );
 
 #define FREE( p ) if( p ) { free( p ); (p) = NULL; }
 #define __ABS( x ) ( (x) < 0 ? (-(x)) : (x) )
 
+typedef struct
+{
+    vlc_fourcc_t i_fourcc;
+    off_t        i_pos;
+    uint32_t     i_size;
+    vlc_fourcc_t i_type;     /* only for AVIFOURCC_LIST */
+
+    uint8_t      i_peek[8];  /* first 8 bytes */
+
+    unsigned int i_stream;
+    unsigned int i_cat;
+} avi_packet_t;
+
+
+typedef struct
+{
+    vlc_fourcc_t i_id;
+    uint32_t     i_flags;
+    off_t        i_pos;
+    uint32_t     i_length;
+    uint32_t     i_lengthtotal;
+
+} avi_entry_t;
+
+typedef struct
+{
+    vlc_bool_t      b_activated;
+
+    unsigned int    i_cat; /* AUDIO_ES, VIDEO_ES */
+    vlc_fourcc_t    i_codec;
+
+    int             i_rate;
+    int             i_scale;
+    int             i_samplesize;
+
+    es_out_id_t     *p_es;
+
+    avi_entry_t     *p_index;
+    unsigned int        i_idxnb;
+    unsigned int        i_idxmax;
+
+    unsigned int        i_idxposc;  /* numero of chunk */
+    unsigned int        i_idxposb;  /* byte in the current chunk */
+
+    /* For VBR audio only */
+    unsigned int        i_blockno;
+    unsigned int        i_blocksize;
+} avi_track_t;
+
+struct demux_sys_t
+{
+    mtime_t i_time;
+    mtime_t i_length;
+
+    vlc_bool_t  b_seekable;
+    avi_chunk_t ck_root;
+
+    vlc_bool_t  b_odml;
+
+    off_t   i_movi_begin;
+    off_t   i_movi_lastchunk_pos;   /* XXX position of last valid chunk */
+
+    /* number of streams and information */
+    unsigned int i_track;
+    avi_track_t  **track;
+
+    /* meta */
+    vlc_meta_t  *meta;
+};
+
 static inline off_t __EVEN( off_t i )
 {
     return (i & 1) ? i + 1 : i;
@@ -74,38 +151,47 @@ static mtime_t AVI_GetDPTS   ( avi_track_t *, int64_t i_count );
 static mtime_t AVI_GetPTS    ( avi_track_t * );
 
 
-static int AVI_StreamChunkFind( input_thread_t *, unsigned int i_stream );
-static int AVI_StreamChunkSet ( input_thread_t *,
+static int AVI_StreamChunkFind( demux_t *, unsigned int i_stream );
+static int AVI_StreamChunkSet ( demux_t *,
                                 unsigned int i_stream, unsigned int i_ck );
-static int AVI_StreamBytesSet ( input_thread_t *,
+static int AVI_StreamBytesSet ( demux_t *,
                                 unsigned int i_stream, off_t   i_byte );
 
 vlc_fourcc_t AVI_FourccGetCodec( unsigned int i_cat, vlc_fourcc_t );
 static int   AVI_GetKeyFlag    ( vlc_fourcc_t , uint8_t * );
 
-static int AVI_PacketGetHeader( input_thread_t *, avi_packet_t *p_pk );
-static int AVI_PacketNext     ( input_thread_t * );
-static int AVI_PacketRead     ( input_thread_t *, avi_packet_t *, block_t **);
-static int AVI_PacketSearch   ( input_thread_t * );
+static int AVI_PacketGetHeader( demux_t *, avi_packet_t *p_pk );
+static int AVI_PacketNext     ( demux_t * );
+static int AVI_PacketRead     ( demux_t *, avi_packet_t *, block_t **);
+static int AVI_PacketSearch   ( demux_t * );
 
-static void AVI_IndexLoad    ( input_thread_t * );
-static void AVI_IndexCreate  ( input_thread_t * );
-static void AVI_IndexAddEntry( demux_sys_t *, int, AVIIndexEntry_t * );
+static void AVI_IndexLoad    ( demux_t * );
+static void AVI_IndexCreate  ( demux_t * );
+static void AVI_IndexAddEntry( demux_sys_t *, int, avi_entry_t * );
 
-static mtime_t  AVI_MovieGetLength( input_thread_t * );
+static mtime_t  AVI_MovieGetLength( demux_t * );
 
 /*****************************************************************************
  * Stream management
  *****************************************************************************/
-static int        AVI_TrackSeek  ( input_thread_t *, int, mtime_t );
-static int        AVI_TrackStopFinishedStreams( input_thread_t *);
+static int        AVI_TrackSeek  ( demux_t *, int, mtime_t );
+static int        AVI_TrackStopFinishedStreams( demux_t *);
+
+/* Remarks:
+ - For VBR mp3 stream:
+    count blocks by rounded-up chunksizes instead of chunks
+    we need full emulation of dshow avi demuxer bugs :(
+    fixes silly nandub-style a-v delaying in avi with vbr mp3...
+    (from mplayer 2002/08/02)
+ - to complete....
+ */
 
 /*****************************************************************************
  * Open: check file and initializes AVI structures
  *****************************************************************************/
 static int Open( vlc_object_t * p_this )
 {
-    input_thread_t  *p_input = (input_thread_t *)p_this;
+    demux_t  *p_demux = (demux_t *)p_this;
     demux_sys_t     *p_sys;
 
     avi_chunk_t         ck_riff;
@@ -114,47 +200,60 @@ static int Open( vlc_object_t * p_this )
     avi_chunk_avih_t    *p_avih;
 
     unsigned int i_track;
-    unsigned int i;
+    unsigned int i, i_peeker;
 
     uint8_t  *p_peek;
 
 
     /* Is it an avi file ? */
-    if( stream_Peek( p_input->s, &p_peek, 12 ) < 12 )
+    if( stream_Peek( p_demux->s, &p_peek, 200 ) < 200 )
     {
-        msg_Err( p_input, "cannot peek()" );
+        msg_Err( p_demux, "cannot peek()" );
         return VLC_EGENERIC;
     }
-    if( strncmp( &p_peek[0], "RIFF", 4 ) || strncmp( &p_peek[8], "AVI ", 4 ) )
+    for( i_peeker = 0; i_peeker < 188; i_peeker++ )
     {
-        msg_Warn( p_input, "avi module discarded (invalid header)" );
+        if( !strncmp( &p_peek[0], "RIFF", 4 ) && !strncmp( &p_peek[8], "AVI ", 4 ) )
+        {
+            break;
+        }
+        p_peek++;
+    }
+    if( i_peeker == 188 )
+    {
+        msg_Warn( p_demux, "avi module discarded (invalid header)" );
         return VLC_EGENERIC;
     }
 
     /* Initialize input  structures. */
-    p_sys = p_input->p_demux_data = malloc( sizeof(demux_sys_t) );
+    p_sys = p_demux->p_sys = malloc( sizeof(demux_sys_t) );
     memset( p_sys, 0, sizeof( demux_sys_t ) );
     p_sys->i_time   = 0;
     p_sys->i_length = 0;
-    p_sys->i_pcr    = 0;
     p_sys->i_movi_lastchunk_pos = 0;
     p_sys->b_odml   = VLC_FALSE;
     p_sys->i_track  = 0;
     p_sys->track    = NULL;
+    p_sys->meta     = NULL;
 
-    stream_Control( p_input->s, STREAM_CAN_FASTSEEK, &p_sys->b_seekable );
+    stream_Control( p_demux->s, STREAM_CAN_FASTSEEK, &p_sys->b_seekable );
 
-    p_input->pf_demux_control = Control;
-    p_input->pf_demux = Demux_Seekable;
+    p_demux->pf_control = Control;
+    p_demux->pf_demux = Demux_Seekable;
     /* For unseekable stream, automaticaly use Demux_UnSeekable */
-    if( !p_sys->b_seekable || config_GetInt( p_input, "avi-interleaved" ) )
+    if( !p_sys->b_seekable || config_GetInt( p_demux, "avi-interleaved" ) )
     {
-        p_input->pf_demux = Demux_UnSeekable;
+        p_demux->pf_demux = Demux_UnSeekable;
     }
 
-    if( AVI_ChunkReadRoot( p_input->s, &p_sys->ck_root ) )
+    if( i_peeker > 0 )
     {
-        msg_Err( p_input, "avi module discarded (invalid file)" );
+       stream_Read( p_demux->s, NULL, i_peeker );
+    }
+
+    if( AVI_ChunkReadRoot( p_demux->s, &p_sys->ck_root ) )
+    {
+        msg_Err( p_demux, "avi module discarded (invalid file)" );
         return VLC_EGENERIC;
     }
 
@@ -163,7 +262,7 @@ static int Open( vlc_object_t * p_this )
         unsigned int i_count =
             AVI_ChunkCount( &p_sys->ck_root, AVIFOURCC_RIFF );
 
-        msg_Warn( p_input, "multiple riff -> OpenDML ?" );
+        msg_Warn( p_demux, "multiple riff -> OpenDML ?" );
         for( i = 1; i < i_count; i++ )
         {
             avi_chunk_list_t *p_sysx;
@@ -171,7 +270,7 @@ static int Open( vlc_object_t * p_this )
             p_sysx = AVI_ChunkFind( &p_sys->ck_root, AVIFOURCC_RIFF, i );
             if( p_sysx->i_type == AVIFOURCC_AVIX )
             {
-                msg_Warn( p_input, "detected OpenDML file" );
+                msg_Warn( p_demux, "detected OpenDML file" );
                 p_sys->b_odml = VLC_TRUE;
                 break;
             }
@@ -184,54 +283,44 @@ static int Open( vlc_object_t * p_this )
 
     if( !p_hdrl || !p_movi )
     {
-        msg_Err( p_input, "avi module discarded (invalid file)" );
+        msg_Err( p_demux, "avi module discarded (invalid file)" );
         goto error;
     }
 
     if( !( p_avih = AVI_ChunkFind( p_hdrl, AVIFOURCC_avih, 0 ) ) )
     {
-        msg_Err( p_input, "cannot find avih chunk" );
+        msg_Err( p_demux, "cannot find avih chunk" );
         goto error;
     }
     i_track = AVI_ChunkCount( p_hdrl, AVIFOURCC_strl );
     if( p_avih->i_streams != i_track )
     {
-        msg_Warn( p_input,
+        msg_Warn( p_demux,
                   "found %d stream but %d are declared",
                   i_track, p_avih->i_streams );
     }
     if( i_track == 0 )
     {
-        msg_Err( p_input, "no stream defined!" );
+        msg_Err( p_demux, "no stream defined!" );
         goto error;
     }
 
-    /*  create one program */
-    vlc_mutex_lock( &p_input->stream.stream_lock );
-    if( input_InitStream( p_input, 0 ) == -1)
-    {
-        vlc_mutex_unlock( &p_input->stream.stream_lock );
-        msg_Err( p_input, "cannot init stream" );
-        goto error;
-    }
-    p_input->stream.i_mux_rate = 0; /* Fixed later */
-    vlc_mutex_unlock( &p_input->stream.stream_lock );
-
-    /* print informations on streams */
-    msg_Dbg( p_input, "AVIH: %d stream, flags %s%s%s%s ",
+    /* print information on streams */
+    msg_Dbg( p_demux, "AVIH: %d stream, flags %s%s%s%s ",
              i_track,
              p_avih->i_flags&AVIF_HASINDEX?" HAS_INDEX":"",
              p_avih->i_flags&AVIF_MUSTUSEINDEX?" MUST_USE_INDEX":"",
              p_avih->i_flags&AVIF_ISINTERLEAVED?" IS_INTERLEAVED":"",
              p_avih->i_flags&AVIF_TRUSTCKTYPE?" TRUST_CKTYPE":"" );
+    if( ( p_sys->meta = vlc_meta_New() ) )
     {
-        input_info_category_t *p_cat = input_InfoCategory( p_input, _("Avi") );
-        input_AddInfo( p_cat, _("Number of Streams"), "%d", i_track );
-        input_AddInfo( p_cat, _("Flags"), "%s%s%s%s",
-                       p_avih->i_flags&AVIF_HASINDEX?" HAS_INDEX":"",
-                       p_avih->i_flags&AVIF_MUSTUSEINDEX?" MUST_USE_INDEX":"",
-                       p_avih->i_flags&AVIF_ISINTERLEAVED?" IS_INTERLEAVED":"",
-                       p_avih->i_flags&AVIF_TRUSTCKTYPE?" TRUST_CKTYPE":"" );
+        char buffer[200];
+        sprintf( buffer, "%s%s%s%s",
+                 p_avih->i_flags&AVIF_HASINDEX?" HAS_INDEX":"",
+                 p_avih->i_flags&AVIF_MUSTUSEINDEX?" MUST_USE_INDEX":"",
+                 p_avih->i_flags&AVIF_ISINTERLEAVED?" IS_INTERLEAVED":"",
+                 p_avih->i_flags&AVIF_TRUSTCKTYPE?" TRUST_CKTYPE":"" );
+        vlc_meta_Add( p_sys->meta, VLC_META_SETTING, buffer );
     }
 
     /* now read info on each stream and create ES */
@@ -251,18 +340,22 @@ static int Open( vlc_object_t * p_this )
         tk->i_idxposc   = 0;
         tk->i_idxposb   = 0;
 
-        p_auds = (void*)p_vids = (void*)AVI_ChunkFind( p_strl, AVIFOURCC_strf, 0 );
+        tk->i_blockno   = 0;
+        tk->i_blocksize = 0;
+
+        p_vids = (avi_chunk_strf_vids_t*)AVI_ChunkFind( p_strl, AVIFOURCC_strf, 0 );
+        p_auds = (avi_chunk_strf_auds_t*)AVI_ChunkFind( p_strl, AVIFOURCC_strf, 0 );
 
         if( p_strl == NULL || p_strh == NULL || p_auds == NULL || p_vids == NULL )
         {
-            msg_Warn( p_input, "stream[%d] incomplete", i );
+            msg_Warn( p_demux, "stream[%d] incomplete", i );
             continue;
         }
 
         tk->i_rate  = p_strh->i_rate;
         tk->i_scale = p_strh->i_scale;
         tk->i_samplesize = p_strh->i_samplesize;
-        msg_Dbg( p_input, "stream[%d] rate:%d scale:%d samplesize:%d",
+        msg_Dbg( p_demux, "stream[%d] rate:%d scale:%d samplesize:%d",
                  i, tk->i_rate, tk->i_scale, tk->i_samplesize );
 
         switch( p_strh->i_type )
@@ -271,6 +364,17 @@ static int Open( vlc_object_t * p_this )
                 tk->i_cat   = AUDIO_ES;
                 tk->i_codec = AVI_FourccGetCodec( AUDIO_ES,
                                                   p_auds->p_wf->wFormatTag );
+                if( ( tk->i_blocksize = p_auds->p_wf->nBlockAlign ) == 0 )
+                {
+                    if( p_auds->p_wf->wFormatTag == 1 )
+                    {
+                        tk->i_blocksize = p_auds->p_wf->nChannels * (p_auds->p_wf->wBitsPerSample/8);
+                    }
+                    else
+                    {
+                        tk->i_blocksize = 1;
+                    }
+                }
                 es_format_Init( &fmt, AUDIO_ES, tk->i_codec );
 
                 fmt.audio.i_channels        = p_auds->p_wf->nChannels;
@@ -278,15 +382,11 @@ static int Open( vlc_object_t * p_this )
                 fmt.i_bitrate               = p_auds->p_wf->nAvgBytesPerSec*8;
                 fmt.audio.i_blockalign      = p_auds->p_wf->nBlockAlign;
                 fmt.audio.i_bitspersample   = p_auds->p_wf->wBitsPerSample;
-                if( ( fmt.i_extra = __MIN( p_auds->p_wf->cbSize,
-                                           p_auds->i_chunk_size - sizeof(WAVEFORMATEX) ) ) > 0 )
-                {
-                    fmt.p_extra = malloc( fmt.i_extra );
-                    memcpy( fmt.p_extra, &p_auds->p_wf[1], fmt.i_extra );
-                }
-                msg_Dbg( p_input, "stream[%d] audio(0x%x) %d channels %dHz %dbits",
-                         i,
-                         p_auds->p_wf->wFormatTag, p_auds->p_wf->nChannels,
+                fmt.i_extra = __MIN( p_auds->p_wf->cbSize,
+                    p_auds->i_chunk_size - sizeof(WAVEFORMATEX) );
+                fmt.p_extra = &p_auds->p_wf[1];
+                msg_Dbg( p_demux, "stream[%d] audio(0x%x) %d channels %dHz %dbits",
+                         i, p_auds->p_wf->wFormatTag, p_auds->p_wf->nChannels,
                          p_auds->p_wf->nSamplesPerSec, p_auds->p_wf->wBitsPerSample);
                 break;
 
@@ -294,17 +394,45 @@ static int Open( vlc_object_t * p_this )
                 tk->i_cat   = VIDEO_ES;
                 tk->i_codec = AVI_FourccGetCodec( VIDEO_ES,
                                                   p_vids->p_bih->biCompression );
-                es_format_Init( &fmt, VIDEO_ES, p_vids->p_bih->biCompression );
+                if( p_vids->p_bih->biCompression == 0x00 )
+                {
+                    switch( p_vids->p_bih->biBitCount )
+                    {
+                        case 32:
+                            tk->i_codec = VLC_FOURCC('R','V','3','2');
+                            break;
+                        case 24:
+                            tk->i_codec = VLC_FOURCC('R','V','2','4');
+                            break;
+                        case 16:
+                            /* tk->i_codec = VLC_FOURCC('R','V','1','6');*/
+                            /* break;*/
+                        case 15:
+                            tk->i_codec = VLC_FOURCC('R','V','1','5');
+                            break;
+                        case 9:
+                            tk->i_codec = VLC_FOURCC( 'Y', 'V', 'U', '9' ); /* <- TODO check that */
+                            break;
+                    }
+                    es_format_Init( &fmt, VIDEO_ES, tk->i_codec );
+                }
+                else
+                {
+                    es_format_Init( &fmt, VIDEO_ES, p_vids->p_bih->biCompression );
+                    if( tk->i_codec == FOURCC_mp4v && !strncasecmp( (char*)&p_strh->i_handler, "XVID", 4 ) )
+                    {
+                        fmt.i_codec = VLC_FOURCC( 'X', 'V', 'I', 'D' );
+                    }
+                }
                 tk->i_samplesize = 0;
                 fmt.video.i_width  = p_vids->p_bih->biWidth;
                 fmt.video.i_height = p_vids->p_bih->biHeight;
-                if( ( fmt.i_extra = __MIN( p_vids->p_bih->biSize - sizeof( BITMAPINFOHEADER ),
-                                           p_vids->i_chunk_size - sizeof(BITMAPINFOHEADER) ) ) > 0 )
-                {
-                    fmt.p_extra = malloc( fmt.i_extra );
-                    memcpy( fmt.p_extra, &p_vids->p_bih[1], fmt.i_extra );
-                }
-                msg_Dbg( p_input, "stream[%d] video(%4.4s) %dx%d %dbpp %ffps",
+                fmt.video.i_bits_per_pixel = p_vids->p_bih->biBitCount;
+                fmt.i_extra =
+                    __MIN( p_vids->p_bih->biSize - sizeof( BITMAPINFOHEADER ),
+                           p_vids->i_chunk_size - sizeof(BITMAPINFOHEADER) );
+                fmt.p_extra = &p_vids->p_bih[1];
+                msg_Dbg( p_demux, "stream[%d] video(%4.4s) %dx%d %dbpp %ffps",
                         i,
                          (char*)&p_vids->p_bih->biCompression,
                          p_vids->p_bih->biWidth,
@@ -313,44 +441,44 @@ static int Open( vlc_object_t * p_this )
                          (float)tk->i_rate/(float)tk->i_scale );
                 break;
             default:
-                msg_Warn( p_input, "stream[%d] unknown type", i );
+                msg_Warn( p_demux, "stream[%d] unknown type", i );
                 free( tk );
                 continue;
         }
-        tk->p_es = es_out_Add( p_input->p_es_out, &fmt );
+        tk->p_es = es_out_Add( p_demux->out, &fmt );
         TAB_APPEND( p_sys->i_track, p_sys->track, tk );
     }
 
     if( p_sys->i_track <= 0 )
     {
-        msg_Err( p_input, "No valid track" );
+        msg_Err( p_demux, "no valid track" );
         goto error;
     }
 
-    if( config_GetInt( p_input, "avi-index" ) )
+    if( config_GetInt( p_demux, "avi-index" ) )
     {
         if( p_sys->b_seekable )
         {
-            AVI_IndexCreate( p_input );
+            AVI_IndexCreate( p_demux );
         }
         else
         {
-            msg_Warn( p_input, "cannot create index (unseekable stream)" );
-            AVI_IndexLoad( p_input );
+            msg_Warn( p_demux, "cannot create index (unseekable stream)" );
+            AVI_IndexLoad( p_demux );
         }
     }
     else
     {
-        AVI_IndexLoad( p_input );
+        AVI_IndexLoad( p_demux );
     }
 
     /* *** movie length in sec *** */
-    p_sys->i_length = AVI_MovieGetLength( p_input );
+    p_sys->i_length = AVI_MovieGetLength( p_demux );
     if( p_sys->i_length < (mtime_t)p_avih->i_totalframes *
                           (mtime_t)p_avih->i_microsecperframe /
                           (mtime_t)1000000 )
     {
-        msg_Warn( p_input, "broken or missing index, 'seek' will be axproximative or will have strange behavour" );
+        msg_Warn( p_demux, "broken or missing index, 'seek' will be axproximative or will have strange behavour" );
     }
     /* fix some BeOS MediaKit generated file */
     for( i = 0 ; i < p_sys->i_track; i++ )
@@ -385,34 +513,32 @@ static int Open( vlc_object_t * p_this )
 
             if( i_length == 0 )
             {
-                msg_Warn( p_input, "track[%d] cannot be fixed (BeOS MediaKit generated)", i );
+                msg_Warn( p_demux, "track[%d] cannot be fixed (BeOS MediaKit generated)", i );
                 continue;
             }
             tk->i_samplesize = 1;
             tk->i_rate       = i_track_length  * (int64_t)1000000/ i_length;
-            msg_Warn( p_input, "track[%d] fixed with rate=%d scale=%d (BeOS MediaKit generated)", i, tk->i_rate, tk->i_scale );
+            msg_Warn( p_demux, "track[%d] fixed with rate=%d scale=%d (BeOS MediaKit generated)", i, tk->i_rate, tk->i_scale );
         }
     }
 
-    if( p_sys->i_length )
-    {
-        p_input->stream.i_mux_rate =
-            stream_Size( p_input->s ) / 50 / p_sys->i_length;
-    }
-
     if( p_sys->b_seekable )
     {
         /* we have read all chunk so go back to movi */
-        stream_Seek( p_input->s, p_movi->i_chunk_pos );
+        stream_Seek( p_demux->s, p_movi->i_chunk_pos );
     }
     /* Skip movi header */
-    stream_Read( p_input->s, NULL, 12 );
+    stream_Read( p_demux->s, NULL, 12 );
 
     p_sys->i_movi_begin = p_movi->i_chunk_pos;
     return VLC_SUCCESS;
 
 error:
-    AVI_ChunkFreeRoot( p_input->s, &p_sys->ck_root );
+    if( p_sys->meta )
+    {
+        vlc_meta_Delete( p_sys->meta );
+    }
+    AVI_ChunkFreeRoot( p_demux->s, &p_sys->ck_root );
     free( p_sys );
     return VLC_EGENERIC;
 }
@@ -422,9 +548,9 @@ error:
  *****************************************************************************/
 static void Close ( vlc_object_t * p_this )
 {
-    input_thread_t *    p_input = (input_thread_t *)p_this;
+    demux_t *    p_demux = (demux_t *)p_this;
     unsigned int i;
-    demux_sys_t *p_sys = p_input->p_demux_data  ;
+    demux_sys_t *p_sys = p_demux->p_sys  ;
 
     for( i = 0; i < p_sys->i_track; i++ )
     {
@@ -435,7 +561,8 @@ static void Close ( vlc_object_t * p_this )
         }
     }
     FREE( p_sys->track );
-    AVI_ChunkFreeRoot( p_input->s, &p_sys->ck_root );
+    AVI_ChunkFreeRoot( p_demux->s, &p_sys->ck_root );
+    vlc_meta_Delete( p_sys->meta );
 
     free( p_sys );
 }
@@ -458,14 +585,13 @@ typedef struct
                    else : point on data directly */
 } avi_track_toread_t;
 
-static int Demux_Seekable( input_thread_t *p_input )
+static int Demux_Seekable( demux_t *p_demux )
 {
-    demux_sys_t *p_sys = p_input->p_demux_data;
+    demux_sys_t *p_sys = p_demux->p_sys;
 
     unsigned int i_track_count = 0;
     unsigned int i_track;
     vlc_bool_t b_stream;
-    vlc_bool_t b_play_audio;
     /* cannot be more than 100 stream (dcXX or wbXX) */
     avi_track_toread_t toread[100];
 
@@ -476,12 +602,12 @@ static int Demux_Seekable( input_thread_t *p_input )
         avi_track_t *tk = p_sys->track[i_track];
         vlc_bool_t  b;
 
-        es_out_Control( p_input->p_es_out, ES_OUT_GET_SELECT, tk->p_es, &b );
+        es_out_Control( p_demux->out, ES_OUT_GET_ES_STATE, tk->p_es, &b );
         if( b && !tk->b_activated )
         {
             if( p_sys->b_seekable)
             {
-                AVI_TrackSeek( p_input, i_track, p_sys->i_time );
+                AVI_TrackSeek( p_demux, i_track, p_sys->i_time );
             }
             tk->b_activated = VLC_TRUE;
         }
@@ -497,23 +623,23 @@ static int Demux_Seekable( input_thread_t *p_input )
 
     if( i_track_count <= 0 )
     {
-        msg_Warn( p_input, "no track selected, exiting..." );
-        return( 0 );
+        int64_t i_length = p_sys->i_length * (mtime_t)1000000;
+
+        p_sys->i_time += 25*1000;  /* read 25ms */
+        if( i_length > 0 )
+        {
+            if( p_sys->i_time >= i_length )
+                return 0;
+            return 1;
+        }
+        msg_Warn( p_demux, "no track selected, exiting..." );
+        return 0;
     }
 
     /* wait for the good time */
-    p_sys->i_pcr = p_sys->i_time * 9 / 100;
-
-    input_ClockManageRef( p_input,
-                          p_input->stream.p_selected_program,
-                          p_sys->i_pcr );
-
-
+    es_out_Control( p_demux->out, ES_OUT_SET_PCR, p_sys->i_time + 1 );
     p_sys->i_time += 25*1000;  /* read 25ms */
 
-    /* Check if we need to send the audio data to decoder */
-    b_play_audio = !p_input->stream.control.b_mute;
-
     /* init toread */
     for( i_track = 0; i_track < p_sys->i_track; i_track++ )
     {
@@ -593,46 +719,61 @@ static int Demux_Seekable( input_thread_t *p_input )
 
         if( i_pos == -1 )
         {
+            int i_loop_count = 0;
+
             /* no valid index, we will parse directly the stream
              * in case we fail we will disable all finished stream */
             if( p_sys->i_movi_lastchunk_pos >= p_sys->i_movi_begin + 12 )
             {
-                stream_Seek( p_input->s, p_sys->i_movi_lastchunk_pos );
-                if( AVI_PacketNext( p_input ) )
+                stream_Seek( p_demux->s, p_sys->i_movi_lastchunk_pos );
+                if( AVI_PacketNext( p_demux ) )
                 {
-                    return( AVI_TrackStopFinishedStreams( p_input ) ? 0 : 1 );
+                    return( AVI_TrackStopFinishedStreams( p_demux ) ? 0 : 1 );
                 }
             }
             else
             {
-                stream_Seek( p_input->s, p_sys->i_movi_begin + 12 );
+                stream_Seek( p_demux->s, p_sys->i_movi_begin + 12 );
             }
 
             for( ;; )
             {
                 avi_packet_t avi_pk;
 
-                if( AVI_PacketGetHeader( p_input, &avi_pk ) )
+                if( AVI_PacketGetHeader( p_demux, &avi_pk ) )
                 {
-                    msg_Warn( p_input,
+                    msg_Warn( p_demux,
                              "cannot get packet header, track disabled" );
-                    return( AVI_TrackStopFinishedStreams( p_input ) ? 0 : 1 );
+                    return( AVI_TrackStopFinishedStreams( p_demux ) ? 0 : 1 );
                 }
                 if( avi_pk.i_stream >= p_sys->i_track ||
                     ( avi_pk.i_cat != AUDIO_ES && avi_pk.i_cat != VIDEO_ES ) )
                 {
-                    if( AVI_PacketNext( p_input ) )
+                    if( AVI_PacketNext( p_demux ) )
                     {
-                        msg_Warn( p_input,
+                        msg_Warn( p_demux,
                                   "cannot skip packet, track disabled" );
-                        return( AVI_TrackStopFinishedStreams( p_input ) ? 0 : 1 );
+                        return( AVI_TrackStopFinishedStreams( p_demux ) ? 0 : 1 );
+                    }
+
+                    /* Prevents from eating all the CPU with broken files.
+                     * This value should be low enough so that it doesn't
+                     * affect the reading speed too much. */
+                    if( !(++i_loop_count % 1024) )
+                    {
+                        if( p_demux->b_die ) return -1;
+                        msleep( 10000 );
+
+                        if( !(i_loop_count % (1024 * 10)) )
+                            msg_Warn( p_demux,
+                                      "don't seem to find any data..." );
                     }
                     continue;
                 }
                 else
                 {
                     /* add this chunk to the index */
-                    AVIIndexEntry_t index;
+                    avi_entry_t index;
 
                     index.i_id = avi_pk.i_fourcc;
                     index.i_flags =
@@ -651,11 +792,11 @@ static int Demux_Seekable( input_thread_t *p_input )
                     }
                     else
                     {
-                        if( AVI_PacketNext( p_input ) )
+                        if( AVI_PacketNext( p_demux ) )
                         {
-                            msg_Warn( p_input,
+                            msg_Warn( p_demux,
                                       "cannot skip packet, track disabled" );
-                            return( AVI_TrackStopFinishedStreams( p_input ) ? 0 : 1 );
+                            return( AVI_TrackStopFinishedStreams( p_demux ) ? 0 : 1 );
                         }
                     }
                 }
@@ -664,7 +805,7 @@ static int Demux_Seekable( input_thread_t *p_input )
         }
         else
         {
-            stream_Seek( p_input->s, i_pos );
+            stream_Seek( p_demux->s, i_pos );
         }
 
         /* Set the track to use */
@@ -700,9 +841,9 @@ static int Demux_Seekable( input_thread_t *p_input )
             i_size += 8; /* need to read and skip header */
         }
 
-        if( ( p_frame = stream_Block( p_input->s, __EVEN( i_size ) ) )==NULL )
+        if( ( p_frame = stream_Block( p_demux->s, __EVEN( i_size ) ) )==NULL )
         {
-            msg_Warn( p_input, "failled reading data" );
+            msg_Warn( p_demux, "failled reading data" );
             tk->b_activated = VLC_FALSE;
             toread[i_track].b_ok = VLC_FALSE;
             continue;
@@ -717,7 +858,15 @@ static int Demux_Seekable( input_thread_t *p_input )
             p_frame->p_buffer += 8;
             p_frame->i_buffer -= 8;
         }
-        p_frame->i_pts = AVI_GetPTS( tk );
+        p_frame->i_pts = AVI_GetPTS( tk ) + 1;
+        if( tk->p_index[tk->i_idxposc].i_flags&AVIIF_KEYFRAME )
+        {
+            p_frame->i_flags = BLOCK_FLAG_TYPE_I;
+        }
+        else
+        {
+            p_frame->i_flags = BLOCK_FLAG_TYPE_PB;
+        }
 
         /* read data */
         if( tk->i_samplesize )
@@ -737,8 +886,14 @@ static int Demux_Seekable( input_thread_t *p_input )
         }
         else
         {
-            toread[i_track].i_toread--;
+            int i_length = tk->p_index[tk->i_idxposc].i_length;
+
             tk->i_idxposc++;
+            if( tk->i_cat == AUDIO_ES )
+            {
+                tk->i_blockno += tk->i_blocksize > 0 ? ( i_length + tk->i_blocksize - 1 ) / tk->i_blocksize : 1;
+            }
+            toread[i_track].i_toread--;
         }
 
         if( tk->i_idxposc < tk->i_idxnb)
@@ -758,20 +913,16 @@ static int Demux_Seekable( input_thread_t *p_input )
 
         b_stream = VLC_TRUE; /* at least one read succeed */
 
-        p_frame->i_dts =
-        p_frame->i_pts =
-            input_ClockGetTS( p_input,
-                              p_input->stream.p_selected_program,
-                              p_frame->i_pts * 9/100);
-        //p_pes->i_rate = p_input->stream.control.i_rate;
-        if( b_play_audio || tk->i_cat != AUDIO_ES )
-        {
-            es_out_Send( p_input->p_es_out, tk->p_es, p_frame );
-        }
+        if( tk->i_cat != VIDEO_ES )
+            p_frame->i_dts = p_frame->i_pts;
         else
         {
-            block_Release( p_frame );
+            p_frame->i_dts = p_frame->i_pts;
+            p_frame->i_pts = 0;
         }
+
+        //p_pes->i_rate = p_demux->stream.control.i_rate;
+        es_out_Send( p_demux->out, tk->p_es, p_frame );
     }
 }
 
@@ -781,20 +932,14 @@ static int Demux_Seekable( input_thread_t *p_input )
  *****************************************************************************
  * Returns -1 in case of error, 0 in case of EOF, 1 otherwise
  *****************************************************************************/
-static int Demux_UnSeekable( input_thread_t *p_input )
+static int Demux_UnSeekable( demux_t *p_demux )
 {
-    demux_sys_t     *p_sys = p_input->p_demux_data;
+    demux_sys_t     *p_sys = p_demux->p_sys;
     avi_track_t *p_stream_master = NULL;
-    vlc_bool_t b_audio;
     unsigned int i_stream;
     unsigned int i_packet;
 
-    /* Check if we need to send the audio data to decoder */
-    b_audio = !p_input->stream.control.b_mute;
-
-    input_ClockManageRef( p_input,
-                          p_input->stream.p_selected_program,
-                          p_sys->i_pcr );
+    es_out_Control( p_demux->out, ES_OUT_SET_PCR, p_sys->i_time + 1 );
 
     /* *** find master stream for data packet skipping algo *** */
     /* *** -> first video, if any, or first audio ES *** */
@@ -803,7 +948,7 @@ static int Demux_UnSeekable( input_thread_t *p_input )
         avi_track_t *tk = p_sys->track[i_stream];
         vlc_bool_t  b;
 
-        es_out_Control( p_input->p_es_out, ES_OUT_GET_SELECT, tk->p_es, &b );
+        es_out_Control( p_demux->out, ES_OUT_GET_ES_STATE, tk->p_es, &b );
 
         if( b && tk->i_cat == VIDEO_ES )
         {
@@ -817,11 +962,11 @@ static int Demux_UnSeekable( input_thread_t *p_input )
 
     if( !p_stream_master )
     {
-        msg_Warn( p_input, "no more stream selected" );
+        msg_Warn( p_demux, "no more stream selected" );
         return( 0 );
     }
 
-    p_sys->i_pcr = AVI_GetPTS( p_stream_master ) * 9 / 100;
+    p_sys->i_time = AVI_GetPTS( p_stream_master );
 
     for( i_packet = 0; i_packet < 10; i_packet++)
     {
@@ -829,7 +974,7 @@ static int Demux_UnSeekable( input_thread_t *p_input )
 
         avi_packet_t    avi_pk;
 
-        if( AVI_PacketGetHeader( p_input, &avi_pk ) )
+        if( AVI_PacketGetHeader( p_demux, &avi_pk ) )
         {
             return( 0 );
         }
@@ -846,60 +991,53 @@ static int Demux_UnSeekable( input_thread_t *p_input )
                 case AVIFOURCC_JUNK:
                 case AVIFOURCC_LIST:
                 case AVIFOURCC_RIFF:
-                    return( !AVI_PacketNext( p_input ) ? 1 : 0 );
+                    return( !AVI_PacketNext( p_demux ) ? 1 : 0 );
                 case AVIFOURCC_idx1:
                     if( p_sys->b_odml )
                     {
-                        return( !AVI_PacketNext( p_input ) ? 1 : 0 );
+                        return( !AVI_PacketNext( p_demux ) ? 1 : 0 );
                     }
                     return( 0 );    /* eof */
                 default:
-                    msg_Warn( p_input,
+                    msg_Warn( p_demux,
                               "seems to have lost position, resync" );
-                    if( AVI_PacketSearch( p_input ) )
+                    if( AVI_PacketSearch( p_demux ) )
                     {
-                        msg_Err( p_input, "resync failed" );
+                        msg_Err( p_demux, "resync failed" );
                         return( -1 );
                     }
             }
         }
         else
         {
-            /* do will send this packet to decoder ? */
-            if( !b_audio && avi_pk.i_cat == AUDIO_ES )
+            /* check for time */
+            if( __ABS( AVI_GetPTS( p_stream ) -
+                        AVI_GetPTS( p_stream_master ) )< 600*1000 )
             {
-                if( AVI_PacketNext( p_input ) )
+                /* load it and send to decoder */
+                block_t *p_frame;
+                if( AVI_PacketRead( p_demux, &avi_pk, &p_frame ) || p_frame == NULL )
                 {
-                    return( 0 );
+                    return( -1 );
                 }
+                p_frame->i_pts = AVI_GetPTS( p_stream ) + 1;
+
+                if( avi_pk.i_cat != VIDEO_ES )
+                    p_frame->i_dts = p_frame->i_pts;
+                else
+                {
+                    p_frame->i_dts = p_frame->i_pts;
+                    p_frame->i_pts = 0;
+                }
+
+                //p_pes->i_rate = p_demux->stream.control.i_rate;
+                es_out_Send( p_demux->out, p_stream->p_es, p_frame );
             }
             else
             {
-                /* it's a selected stream, check for time */
-                if( __ABS( AVI_GetPTS( p_stream ) -
-                            AVI_GetPTS( p_stream_master ) )< 600*1000 )
+                if( AVI_PacketNext( p_demux ) )
                 {
-                    /* load it and send to decoder */
-                    block_t *p_frame;
-                    if( AVI_PacketRead( p_input, &avi_pk, &p_frame ) || p_frame == NULL )
-                    {
-                        return( -1 );
-                    }
-                    p_frame->i_dts =
-                    p_frame->i_pts =
-                        input_ClockGetTS( p_input,
-                                          p_input->stream.p_selected_program,
-                                          AVI_GetPTS( p_stream ) * 9/100);
-
-                    //p_pes->i_rate = p_input->stream.control.i_rate;
-                    es_out_Send( p_input->p_es_out, p_stream->p_es, p_frame );
-                }
-                else
-                {
-                    if( AVI_PacketNext( p_input ) )
-                    {
-                        return( 0 );
-                    }
+                    return( 0 );
                 }
             }
 
@@ -910,6 +1048,10 @@ static int Demux_UnSeekable( input_thread_t *p_input )
             }
             else
             {
+                if( p_stream->i_cat == AUDIO_ES )
+                {
+                    p_stream->i_blockno += p_stream->i_blocksize > 0 ? ( avi_pk.i_size + p_stream->i_blocksize - 1 ) / p_stream->i_blocksize : 1;
+                }
                 p_stream->i_idxposc++;
             }
 
@@ -922,18 +1064,14 @@ static int Demux_UnSeekable( input_thread_t *p_input )
 
 /*****************************************************************************
  * Seek: goto to i_date or i_percent
- *****************************************************************************
- * Returns -1 in case of error, 0 in case of EOF, 1 otherwise
  *****************************************************************************/
-static int Seek( input_thread_t *p_input, mtime_t i_date, int i_percent )
+static int Seek( demux_t *p_demux, mtime_t i_date, int i_percent )
 {
 
-    demux_sys_t *p_sys = p_input->p_demux_data;
+    demux_sys_t *p_sys = p_demux->p_sys;
     unsigned int i_stream;
-    msg_Dbg( p_input,
-             "seek requested: "I64Fd" secondes %d%%",
-             i_date / 1000000,
-             i_percent );
+    msg_Dbg( p_demux, "seek requested: "I64Fd" secondes %d%%",
+             i_date / 1000000, i_percent );
 
     if( p_sys->b_seekable )
     {
@@ -943,19 +1081,17 @@ static int Seek( input_thread_t *p_input, mtime_t i_date, int i_percent )
             int64_t i_pos;
 
             /* use i_percent to create a true i_date */
-            msg_Warn( p_input,
-                      "mmh, seeking without index at %d%%"
+            msg_Warn( p_demux, "mmh, seeking without index at %d%%"
                       " work only for interleaved file", i_percent );
             if( i_percent >= 100 )
             {
-                msg_Warn( p_input, "cannot seek so far !" );
-                return( -1 );
+                msg_Warn( p_demux, "cannot seek so far !" );
+                return VLC_EGENERIC;
             }
             i_percent = __MAX( i_percent, 0 );
 
             /* try to find chunk that is at i_percent or the file */
-            i_pos = __MAX( i_percent *
-                           stream_Size( p_input->s ) / 100,
+            i_pos = __MAX( i_percent * stream_Size( p_demux->s ) / 100,
                            p_sys->i_movi_begin );
             /* search first selected stream */
             for( i_stream = 0, p_stream = NULL;
@@ -969,33 +1105,32 @@ static int Seek( input_thread_t *p_input, mtime_t i_date, int i_percent )
             }
             if( !p_stream || !p_stream->b_activated )
             {
-                msg_Warn( p_input, "cannot find any selected stream" );
-                return( -1 );
+                msg_Warn( p_demux, "cannot find any selected stream" );
+                return VLC_EGENERIC;
             }
 
             /* be sure that the index exist */
-            if( AVI_StreamChunkSet( p_input,
-                                    i_stream,
-                                    0 ) )
+            if( AVI_StreamChunkSet( p_demux, i_stream, 0 ) )
             {
-                msg_Warn( p_input, "cannot seek" );
-                return( -1 );
+                msg_Warn( p_demux, "cannot seek" );
+                return VLC_EGENERIC;
             }
 
             while( i_pos >= p_stream->p_index[p_stream->i_idxposc].i_pos +
                p_stream->p_index[p_stream->i_idxposc].i_length + 8 )
             {
                 /* search after i_idxposc */
-                if( AVI_StreamChunkSet( p_input,
+                if( AVI_StreamChunkSet( p_demux,
                                         i_stream, p_stream->i_idxposc + 1 ) )
                 {
-                    msg_Warn( p_input, "cannot seek" );
-                    return( -1 );
+                    msg_Warn( p_demux, "cannot seek" );
+                    return VLC_EGENERIC;
                 }
             }
+
             i_date = AVI_GetPTS( p_stream );
             /* TODO better support for i_samplesize != 0 */
-            msg_Dbg( p_input, "estimate date "I64Fd, i_date );
+            msg_Dbg( p_demux, "estimate date "I64Fd, i_date );
         }
 
 #define p_stream    p_sys->track[i_stream]
@@ -1006,7 +1141,7 @@ static int Seek( input_thread_t *p_input, mtime_t i_date, int i_percent )
             if( p_stream->b_activated && !p_stream->i_samplesize )
 /*            if( p_stream->b_activated ) */
             {
-                AVI_TrackSeek( p_input, i_stream, i_date );
+                AVI_TrackSeek( p_demux, i_stream, i_date );
                 p_sys->i_time = __MAX( AVI_GetPTS( p_stream ),
                                         p_sys->i_time );
             }
@@ -1021,11 +1156,11 @@ static int Seek( input_thread_t *p_input, mtime_t i_date, int i_percent )
         {
             if( p_stream->b_activated && p_stream->i_samplesize )
             {
-                AVI_TrackSeek( p_input, i_stream, i_date );
+                AVI_TrackSeek( p_demux, i_stream, i_date );
 /*                p_sys->i_time = __MAX( AVI_GetPTS( p_stream ), p_sys->i_time );*/
             }
         }
-        msg_Dbg( p_input, "seek: "I64Fd" secondes", p_sys->i_time /1000000 );
+        msg_Dbg( p_demux, "seek: "I64Fd" seconds", p_sys->i_time /1000000 );
         /* set true movie time */
 #endif
         if( !p_sys->i_time )
@@ -1033,12 +1168,12 @@ static int Seek( input_thread_t *p_input, mtime_t i_date, int i_percent )
             p_sys->i_time = i_date;
         }
 #undef p_stream
-        return( 1 );
+        return VLC_SUCCESS;
     }
     else
     {
-        msg_Err( p_input, "shouldn't yet be executed" );
-        return( -1 );
+        msg_Err( p_demux, "shouldn't yet be executed" );
+        return VLC_EGENERIC;
     }
 }
 
@@ -1047,15 +1182,15 @@ static int Seek( input_thread_t *p_input, mtime_t i_date, int i_percent )
  *****************************************************************************
  *
  *****************************************************************************/
-static double ControlGetPosition( input_thread_t *p_input )
+static double ControlGetPosition( demux_t *p_demux )
 {
-    demux_sys_t *p_sys = p_input->p_demux_data;
+    demux_sys_t *p_sys = p_demux->p_sys;
 
     if( p_sys->i_length > 0 )
     {
         return (double)p_sys->i_time / (double)( p_sys->i_length * (mtime_t)1000000 );
     }
-    else if( stream_Size( p_input->s ) > 0 )
+    else if( stream_Size( p_demux->s ) > 0 )
     {
         unsigned int i;
         int64_t i_tmp;
@@ -1075,32 +1210,37 @@ static double ControlGetPosition( input_thread_t *p_input )
                 }
             }
         }
-        return (double)i64 / (double)stream_Size( p_input->s );
+        return (double)i64 / (double)stream_Size( p_demux->s );
     }
     return 0.0;
 }
 
-static int    Control( input_thread_t *p_input, int i_query, va_list args )
+static int    Control( demux_t *p_demux, int i_query, va_list args )
 {
-    demux_sys_t *p_sys = p_input->p_demux_data;
+    demux_sys_t *p_sys = p_demux->p_sys;
     int i;
     double   f, *pf;
     int64_t i64, *pi64;
+    vlc_meta_t **pp_meta;
 
     switch( i_query )
     {
         case DEMUX_GET_POSITION:
             pf = (double*)va_arg( args, double * );
-            *pf = ControlGetPosition( p_input );
+            *pf = ControlGetPosition( p_demux );
             return VLC_SUCCESS;
         case DEMUX_SET_POSITION:
+            f = (double)va_arg( args, double );
             if( p_sys->b_seekable )
             {
-                f = (double)va_arg( args, double );
                 i64 = (mtime_t)(1000000.0 * p_sys->i_length * f );
-                return Seek( p_input, i64, (int)(f * 100) );
+                return Seek( p_demux, i64, (int)(f * 100) );
+            }
+            else
+            {
+                int64_t i_pos = stream_Size( p_demux->s ) * f;
+                return stream_Seek( p_demux->s, i_pos );
             }
-            return demux_vaControlDefault( p_input, i_query, args );
 
         case DEMUX_GET_TIME:
             pi64 = (int64_t*)va_arg( args, int64_t * );
@@ -1114,14 +1254,14 @@ static int    Control( input_thread_t *p_input, int i_query, va_list args )
             i64 = (int64_t)va_arg( args, int64_t );
             if( p_sys->i_length > 0 )
             {
-                i_percent = 100 * i64 / (p_sys->i_length*1000000ULL);
+                i_percent = 100 * i64 / (p_sys->i_length*1000000);
             }
             else if( p_sys->i_time > 0 )
             {
-                i_percent = (int)( 100.0 * ControlGetPosition( p_input ) *
+                i_percent = (int)( 100.0 * ControlGetPosition( p_demux ) *
                                    (double)i64 / (double)p_sys->i_time );
             }
-            return Seek( p_input, i64, i_percent );
+            return Seek( p_demux, i64, i_percent );
         }
         case DEMUX_GET_LENGTH:
             pi64 = (int64_t*)va_arg( args, int64_t * );
@@ -1141,11 +1281,14 @@ static int    Control( input_thread_t *p_input, int i_query, va_list args )
                 }
             }
             return VLC_SUCCESS;
+        case DEMUX_GET_META:
+            pp_meta = (vlc_meta_t**)va_arg( args, vlc_meta_t** );
+            *pp_meta = vlc_meta_Duplicate( p_sys->meta );
+            return VLC_SUCCESS;
 
         default:
-            return demux_vaControlDefault( p_input, i_query, args );
+            return VLC_EGENERIC;
     }
-    return VLC_EGENERIC;
 }
 
 /*****************************************************************************
@@ -1208,55 +1351,71 @@ static mtime_t AVI_GetPTS( avi_track_t *tk )
     }
     else
     {
-        return AVI_GetDPTS( tk, tk->i_idxposc );
+        if( tk->i_cat == AUDIO_ES )
+        {
+            return AVI_GetDPTS( tk, tk->i_blockno );
+        }
+        else
+        {
+            return AVI_GetDPTS( tk, tk->i_idxposc );
+        }
     }
 }
 
-static int AVI_StreamChunkFind( input_thread_t *p_input,
-                                unsigned int i_stream )
+static int AVI_StreamChunkFind( demux_t *p_demux, unsigned int i_stream )
 {
-    demux_sys_t *p_sys = p_input->p_demux_data;
+    demux_sys_t *p_sys = p_demux->p_sys;
     avi_packet_t avi_pk;
+    int i_loop_count = 0;
 
     /* find first chunk of i_stream that isn't in index */
 
     if( p_sys->i_movi_lastchunk_pos >= p_sys->i_movi_begin + 12 )
     {
-        stream_Seek( p_input->s, p_sys->i_movi_lastchunk_pos );
-        if( AVI_PacketNext( p_input ) )
+        stream_Seek( p_demux->s, p_sys->i_movi_lastchunk_pos );
+        if( AVI_PacketNext( p_demux ) )
         {
             return VLC_EGENERIC;
         }
     }
     else
     {
-        stream_Seek( p_input->s, p_sys->i_movi_begin + 12 );
+        stream_Seek( p_demux->s, p_sys->i_movi_begin + 12 );
     }
 
     for( ;; )
     {
-        if( p_input->b_die )
-        {
-            return VLC_EGENERIC;
-        }
+        if( p_demux->b_die ) return VLC_EGENERIC;
 
-        if( AVI_PacketGetHeader( p_input, &avi_pk ) )
+        if( AVI_PacketGetHeader( p_demux, &avi_pk ) )
         {
-            msg_Warn( p_input, "cannot get packet header" );
+            msg_Warn( p_demux, "cannot get packet header" );
             return VLC_EGENERIC;
         }
         if( avi_pk.i_stream >= p_sys->i_track ||
             ( avi_pk.i_cat != AUDIO_ES && avi_pk.i_cat != VIDEO_ES ) )
         {
-            if( AVI_PacketNext( p_input ) )
+            if( AVI_PacketNext( p_demux ) )
             {
                 return VLC_EGENERIC;
             }
+
+            /* Prevents from eating all the CPU with broken files.
+             * This value should be low enough so that it doesn't
+             * affect the reading speed too much. */
+            if( !(++i_loop_count % 1024) )
+            {
+                if( p_demux->b_die ) return VLC_EGENERIC;
+                msleep( 10000 );
+
+                if( !(i_loop_count % (1024 * 10)) )
+                    msg_Warn( p_demux, "don't seem to find any data..." );
+            }
         }
         else
         {
             /* add this chunk to the index */
-            AVIIndexEntry_t index;
+            avi_entry_t index;
 
             index.i_id = avi_pk.i_fourcc;
             index.i_flags =
@@ -1271,7 +1430,7 @@ static int AVI_StreamChunkFind( input_thread_t *p_input,
                 return VLC_SUCCESS;
             }
 
-            if( AVI_PacketNext( p_input ) )
+            if( AVI_PacketNext( p_demux ) )
             {
                 return VLC_EGENERIC;
             }
@@ -1281,11 +1440,10 @@ static int AVI_StreamChunkFind( input_thread_t *p_input,
 
 
 /* be sure that i_ck will be a valid index entry */
-static int AVI_StreamChunkSet( input_thread_t    *p_input,
-                               unsigned int i_stream,
+static int AVI_StreamChunkSet( demux_t *p_demux, unsigned int i_stream,
                                unsigned int i_ck )
 {
-    demux_sys_t *p_sys = p_input->p_demux_data;
+    demux_sys_t *p_sys = p_demux->p_sys;
     avi_track_t *p_stream = p_sys->track[i_stream];
 
     p_stream->i_idxposc = i_ck;
@@ -1297,7 +1455,7 @@ static int AVI_StreamChunkSet( input_thread_t    *p_input,
         do
         {
             p_stream->i_idxposc++;
-            if( AVI_StreamChunkFind( p_input, i_stream ) )
+            if( AVI_StreamChunkFind( p_demux, i_stream ) )
             {
                 return VLC_EGENERIC;
             }
@@ -1310,11 +1468,11 @@ static int AVI_StreamChunkSet( input_thread_t    *p_input,
 
 
 /* XXX FIXME up to now, we assume that all chunk are one after one */
-static int AVI_StreamBytesSet( input_thread_t    *p_input,
+static int AVI_StreamBytesSet( demux_t    *p_demux,
                                unsigned int i_stream,
                                off_t   i_byte )
 {
-    demux_sys_t *p_sys = p_input->p_demux_data;
+    demux_sys_t *p_sys = p_demux->p_sys;
     avi_track_t *p_stream = p_sys->track[i_stream];
 
     if( ( p_stream->i_idxnb > 0 )
@@ -1359,7 +1517,7 @@ static int AVI_StreamBytesSet( input_thread_t    *p_input,
         do
         {
             p_stream->i_idxposc++;
-            if( AVI_StreamChunkFind( p_input, i_stream ) )
+            if( AVI_StreamChunkFind( p_demux, i_stream ) )
             {
                 return VLC_EGENERIC;
             }
@@ -1373,11 +1531,13 @@ static int AVI_StreamBytesSet( input_thread_t    *p_input,
     }
 }
 
-static int AVI_TrackSeek( input_thread_t *p_input,
+static int AVI_TrackSeek( demux_t *p_demux,
                            int i_stream,
                            mtime_t i_date )
 {
-    demux_sys_t  *p_sys = p_input->p_demux_data;
+    demux_sys_t  *p_sys = p_demux->p_sys;
+    avi_track_t  *tk = p_sys->track[i_stream];
+
 #define p_stream    p_sys->track[i_stream]
     mtime_t i_oldpts;
 
@@ -1385,14 +1545,31 @@ static int AVI_TrackSeek( input_thread_t *p_input,
 
     if( !p_stream->i_samplesize )
     {
-        if( AVI_StreamChunkSet( p_input,
+        if( AVI_StreamChunkSet( p_demux,
                                 i_stream,
                                 AVI_PTSToChunk( p_stream, i_date ) ) )
         {
             return VLC_EGENERIC;
         }
 
-        msg_Dbg( p_input,
+        if( p_stream->i_cat == AUDIO_ES )
+        {
+            unsigned int i;
+            tk->i_blockno = 0;
+            for( i = 0; i < tk->i_idxposc; i++ )
+            {
+                if( tk->i_blocksize > 0 )
+                {
+                    tk->i_blockno += ( tk->p_index[i].i_length + tk->i_blocksize - 1 ) / tk->i_blocksize;
+                }
+                else
+                {
+                    tk->i_blockno++;
+                }
+            }
+        }
+
+        msg_Dbg( p_demux,
                  "old:"I64Fd" %s new "I64Fd,
                  i_oldpts,
                  i_oldpts > i_date ? ">" : "<",
@@ -1407,7 +1584,7 @@ static int AVI_TrackSeek( input_thread_t *p_input,
                    !( p_stream->p_index[p_stream->i_idxposc].i_flags &
                                                                 AVIIF_KEYFRAME ) )
                 {
-                    if( AVI_StreamChunkSet( p_input,
+                    if( AVI_StreamChunkSet( p_demux,
                                             i_stream,
                                             p_stream->i_idxposc - 1 ) )
                     {
@@ -1421,7 +1598,7 @@ static int AVI_TrackSeek( input_thread_t *p_input,
                         !( p_stream->p_index[p_stream->i_idxposc].i_flags &
                                                                 AVIIF_KEYFRAME ) )
                 {
-                    if( AVI_StreamChunkSet( p_input,
+                    if( AVI_StreamChunkSet( p_demux,
                                             i_stream,
                                             p_stream->i_idxposc + 1 ) )
                     {
@@ -1433,7 +1610,7 @@ static int AVI_TrackSeek( input_thread_t *p_input,
     }
     else
     {
-        if( AVI_StreamBytesSet( p_input,
+        if( AVI_StreamBytesSet( p_demux,
                                 i_stream,
                                 AVI_PTSToByte( p_stream, i_date ) ) )
         {
@@ -1462,10 +1639,8 @@ static int AVI_GetKeyFlag( vlc_fourcc_t i_fourcc, uint8_t *p_byte )
                 /* it's not an msmpegv1 stream, strange...*/
                 return AVIIF_KEYFRAME;
             }
-            else
-            {
-                return p_byte[4] & 0x06 ? 0 : AVIIF_KEYFRAME;
-            }
+            return p_byte[4] & 0x06 ? 0 : AVIIF_KEYFRAME;
+
         case FOURCC_DIV2:
         case FOURCC_DIV3:   /* wmv1 also */
             /* we have
@@ -1473,7 +1648,7 @@ static int AVI_GetKeyFlag( vlc_fourcc_t i_fourcc, uint8_t *p_byte )
              */
             return p_byte[0] & 0xC0 ? 0 : AVIIF_KEYFRAME;
         case FOURCC_mp4v:
-            /* we should find first occurence of 0x000001b6 (32bits)
+            /* we should find first occurrence of 0x000001b6 (32bits)
              *  startcode:      0x000001b6   32bits
              *  piture type     0(I),1(P)     2bits
              */
@@ -1482,10 +1657,8 @@ static int AVI_GetKeyFlag( vlc_fourcc_t i_fourcc, uint8_t *p_byte )
                 /* not true , need to find the first VOP header */
                 return AVIIF_KEYFRAME;
             }
-            else
-            {
-                return p_byte[4] & 0xC0 ? 0 : AVIIF_KEYFRAME;
-            }
+            return p_byte[4] & 0xC0 ? 0 : AVIIF_KEYFRAME;
+
         default:
             /* I can't do it, so say yes */
             return AVIIF_KEYFRAME;
@@ -1504,6 +1677,8 @@ vlc_fourcc_t AVI_FourccGetCodec( unsigned int i_cat, vlc_fourcc_t i_codec )
             /* XXX DIV1 <- msmpeg4v1, DIV2 <- msmpeg4v2, DIV3 <- msmpeg4v3, mp4v for mpeg4 */
             switch( i_codec )
             {
+                case FOURCC_1:
+                    return VLC_FOURCC('m','r','l','e');
                 case FOURCC_DIV1:
                 case FOURCC_div1:
                 case FOURCC_MPG4:
@@ -1544,6 +1719,7 @@ vlc_fourcc_t AVI_FourccGetCodec( unsigned int i_cat, vlc_fourcc_t i_codec )
                 case FOURCC_XVID:
                 case FOURCC_XviD:
                 case FOURCC_DX50:
+                case FOURCC_dx50:
                 case FOURCC_mp4v:
                 case FOURCC_4:
                 case FOURCC_3IV2:
@@ -1595,17 +1771,17 @@ static void AVI_ParseStreamHeader( vlc_fourcc_t i_id,
 /****************************************************************************
  *
  ****************************************************************************/
-static int AVI_PacketGetHeader( input_thread_t *p_input, avi_packet_t *p_pk )
+static int AVI_PacketGetHeader( demux_t *p_demux, avi_packet_t *p_pk )
 {
     uint8_t  *p_peek;
 
-    if( stream_Peek( p_input->s, &p_peek, 16 ) < 16 )
+    if( stream_Peek( p_demux->s, &p_peek, 16 ) < 16 )
     {
         return VLC_EGENERIC;
     }
     p_pk->i_fourcc  = VLC_FOURCC( p_peek[0], p_peek[1], p_peek[2], p_peek[3] );
     p_pk->i_size    = GetDWLE( p_peek + 4 );
-    p_pk->i_pos     = stream_Tell( p_input->s );
+    p_pk->i_pos     = stream_Tell( p_demux->s );
     if( p_pk->i_fourcc == AVIFOURCC_LIST || p_pk->i_fourcc == AVIFOURCC_RIFF )
     {
         p_pk->i_type = VLC_FOURCC( p_peek[8],  p_peek[9],
@@ -1622,12 +1798,12 @@ static int AVI_PacketGetHeader( input_thread_t *p_input, avi_packet_t *p_pk )
     return VLC_SUCCESS;
 }
 
-static int AVI_PacketNext( input_thread_t *p_input )
+static int AVI_PacketNext( demux_t *p_demux )
 {
     avi_packet_t    avi_ck;
     int             i_skip = 0;
 
-    if( AVI_PacketGetHeader( p_input, &avi_ck ) )
+    if( AVI_PacketGetHeader( p_demux, &avi_ck ) )
     {
         return VLC_EGENERIC;
     }
@@ -1647,13 +1823,13 @@ static int AVI_PacketNext( input_thread_t *p_input )
         i_skip = __EVEN( avi_ck.i_size ) + 8;
     }
 
-    if( stream_Read( p_input->s, NULL, i_skip ) != i_skip )
+    if( stream_Read( p_demux->s, NULL, i_skip ) != i_skip )
     {
         return VLC_EGENERIC;
     }
     return VLC_SUCCESS;
 }
-static int AVI_PacketRead( input_thread_t   *p_input,
+static int AVI_PacketRead( demux_t   *p_demux,
                            avi_packet_t     *p_pk,
                            block_t          **pp_frame )
 {
@@ -1661,7 +1837,7 @@ static int AVI_PacketRead( input_thread_t   *p_input,
 
     i_size = __EVEN( p_pk->i_size + 8 );
 
-    if( ( *pp_frame = stream_Block( p_input->s, i_size ) ) == NULL )
+    if( ( *pp_frame = stream_Block( p_demux->s, i_size ) ) == NULL )
     {
         return VLC_EGENERIC;
     }
@@ -1676,18 +1852,19 @@ static int AVI_PacketRead( input_thread_t   *p_input,
     return VLC_SUCCESS;
 }
 
-static int AVI_PacketSearch( input_thread_t *p_input )
+static int AVI_PacketSearch( demux_t *p_demux )
 {
-    demux_sys_t     *p_sys = p_input->p_demux_data;
-
+    demux_sys_t     *p_sys = p_demux->p_sys;
     avi_packet_t    avi_pk;
+    int             i_count = 0;
+
     for( ;; )
     {
-        if( stream_Read( p_input->s, NULL, 1 ) != 1 )
+        if( stream_Read( p_demux->s, NULL, 1 ) != 1 )
         {
             return VLC_EGENERIC;
         }
-        AVI_PacketGetHeader( p_input, &avi_pk );
+        AVI_PacketGetHeader( p_demux, &avi_pk );
         if( avi_pk.i_stream < p_sys->i_track &&
             ( avi_pk.i_cat == AUDIO_ES || avi_pk.i_cat == VIDEO_ES ) )
         {
@@ -1701,6 +1878,19 @@ static int AVI_PacketSearch( input_thread_t *p_input )
             case AVIFOURCC_idx1:
                 return VLC_SUCCESS;
         }
+
+        /* Prevents from eating all the CPU with broken files.
+         * This value should be low enough so that it doesn't affect the
+         * reading speed too much (not that we care much anyway because
+         * this code is called only on broken files). */
+        if( !(++i_count % 1024) )
+        {
+            if( p_demux->b_die ) return VLC_EGENERIC;
+
+            msleep( 10000 );
+            if( !(i_count % (1024 * 10)) )
+                msg_Warn( p_demux, "trying to resync..." );
+        }
     }
 }
 
@@ -1709,7 +1899,7 @@ static int AVI_PacketSearch( input_thread_t *p_input )
  ****************************************************************************/
 static void AVI_IndexAddEntry( demux_sys_t *p_sys,
                                int i_stream,
-                               AVIIndexEntry_t *p_index)
+                               avi_entry_t *p_index)
 {
     avi_track_t *tk = p_sys->track[i_stream];
 
@@ -1724,7 +1914,7 @@ static void AVI_IndexAddEntry( demux_sys_t *p_sys,
     {
         tk->i_idxmax += 16384;
         tk->p_index = realloc( tk->p_index,
-                               tk->i_idxmax * sizeof( AVIIndexEntry_t ) );
+                               tk->i_idxmax * sizeof( avi_entry_t ) );
         if( tk->p_index == NULL )
         {
             return;
@@ -1745,9 +1935,9 @@ static void AVI_IndexAddEntry( demux_sys_t *p_sys,
     tk->p_index[tk->i_idxnb++] = *p_index;
 }
 
-static int AVI_IndexLoad_idx1( input_thread_t *p_input )
+static int AVI_IndexLoad_idx1( demux_t *p_demux )
 {
-    demux_sys_t *p_sys = p_input->p_demux_data;
+    demux_sys_t *p_sys = p_demux->p_sys;
 
     avi_chunk_list_t    *p_riff;
     avi_chunk_list_t    *p_movi;
@@ -1758,18 +1948,20 @@ static int AVI_IndexLoad_idx1( input_thread_t *p_input )
     off_t        i_offset;
     unsigned int i;
 
+    vlc_bool_t b_keyset[100];
+
     p_riff = AVI_ChunkFind( &p_sys->ck_root, AVIFOURCC_RIFF, 0);
     p_idx1 = AVI_ChunkFind( p_riff, AVIFOURCC_idx1, 0);
     p_movi = AVI_ChunkFind( p_riff, AVIFOURCC_movi, 0);
 
     if( !p_idx1 )
     {
-        msg_Warn( p_input, "cannot find idx1 chunk, no index defined" );
+        msg_Warn( p_demux, "cannot find idx1 chunk, no index defined" );
         return VLC_EGENERIC;
     }
 
     /* *** calculate offset *** */
-    /* Well, avi is __SHIT__ so test more than one entry 
+    /* Well, avi is __SHIT__ so test more than one entry
      * (needed for some avi files) */
     i_offset = 0;
     for( i = 0; i < __MIN( p_idx1->i_entry_count, 10 ); i++ )
@@ -1781,6 +1973,10 @@ static int AVI_IndexLoad_idx1( input_thread_t *p_input )
         }
     }
 
+    /* Reset b_keyset */
+    for( i_stream = 0; i_stream < p_sys->i_track; i_stream++ )
+        b_keyset[i_stream] = VLC_FALSE;
+
     for( i_index = 0; i_index < p_idx1->i_entry_count; i_index++ )
     {
         unsigned int i_cat;
@@ -1791,27 +1987,42 @@ static int AVI_IndexLoad_idx1( input_thread_t *p_input )
         if( i_stream < p_sys->i_track &&
             i_cat == p_sys->track[i_stream]->i_cat )
         {
-            AVIIndexEntry_t index;
+            avi_entry_t index;
             index.i_id      = p_idx1->entry[i_index].i_fourcc;
             index.i_flags   =
                 p_idx1->entry[i_index].i_flags&(~AVIIF_FIXKEYFRAME);
             index.i_pos     = p_idx1->entry[i_index].i_pos + i_offset;
             index.i_length  = p_idx1->entry[i_index].i_length;
             AVI_IndexAddEntry( p_sys, i_stream, &index );
+
+            if( index.i_flags&AVIIF_KEYFRAME )
+                b_keyset[i_stream] = VLC_TRUE;
+        }
+    }
+
+    for( i_stream = 0; i_stream < p_sys->i_track; i_stream++ )
+    {
+        if( !b_keyset[i_stream] )
+        {
+            avi_track_t *tk = p_sys->track[i_stream];
+
+            msg_Dbg( p_demux, "no key frame set for track %d", i_stream );
+            for( i_index = 0; i_index < tk->i_idxnb; i_index++ )
+                tk->p_index[i_index].i_flags |= AVIIF_KEYFRAME;
         }
     }
     return VLC_SUCCESS;
 }
 
-static void __Parse_indx( input_thread_t    *p_input,
+static void __Parse_indx( demux_t    *p_demux,
                           int               i_stream,
                           avi_chunk_indx_t  *p_indx )
 {
-    demux_sys_t         *p_sys    = p_input->p_demux_data;
-    AVIIndexEntry_t     index;
+    demux_sys_t         *p_sys    = p_demux->p_sys;
+    avi_entry_t     index;
     int32_t             i;
 
-    msg_Dbg( p_input, "loading subindex(0x%x) %d entries", p_indx->i_indextype, p_indx->i_entriesinuse );
+    msg_Dbg( p_demux, "loading subindex(0x%x) %d entries", p_indx->i_indextype, p_indx->i_entriesinuse );
     if( p_indx->i_indexsubtype == 0 )
     {
         for( i = 0; i < p_indx->i_entriesinuse; i++ )
@@ -1838,13 +2049,13 @@ static void __Parse_indx( input_thread_t    *p_input,
     }
     else
     {
-        msg_Warn( p_input, "unknow subtype index(0x%x)", p_indx->i_indexsubtype );
+        msg_Warn( p_demux, "unknow subtype index(0x%x)", p_indx->i_indexsubtype );
     }
 }
 
-static void AVI_IndexLoad_indx( input_thread_t *p_input )
+static void AVI_IndexLoad_indx( demux_t *p_demux )
 {
-    demux_sys_t         *p_sys = p_input->p_demux_data;
+    demux_sys_t         *p_sys = p_demux->p_sys;
     unsigned int        i_stream;
     int32_t             i;
 
@@ -1865,38 +2076,38 @@ static void AVI_IndexLoad_indx( input_thread_t *p_input )
 
         if( !p_indx )
         {
-            msg_Warn( p_input, "cannot find indx (misdetect/broken OpenDML file?)" );
+            msg_Warn( p_demux, "cannot find indx (misdetect/broken OpenDML file?)" );
             continue;
         }
 
         if( p_indx->i_indextype == AVI_INDEX_OF_CHUNKS )
         {
-            __Parse_indx( p_input, i_stream, p_indx );
+            __Parse_indx( p_demux, i_stream, p_indx );
         }
         else if( p_indx->i_indextype == AVI_INDEX_OF_INDEXES )
         {
             avi_chunk_indx_t    ck_sub;
             for( i = 0; i < p_indx->i_entriesinuse; i++ )
             {
-                if( stream_Seek( p_input->s, p_indx->idx.super[i].i_offset )||
-                    AVI_ChunkRead( p_input->s, &ck_sub, NULL  ) )
+                if( stream_Seek( p_demux->s, p_indx->idx.super[i].i_offset )||
+                    AVI_ChunkRead( p_demux->s, &ck_sub, NULL  ) )
                 {
                     break;
                 }
-                __Parse_indx( p_input, i_stream, &ck_sub );
+                __Parse_indx( p_demux, i_stream, &ck_sub );
             }
         }
         else
         {
-            msg_Warn( p_input, "unknow type index(0x%x)", p_indx->i_indextype );
+            msg_Warn( p_demux, "unknow type index(0x%x)", p_indx->i_indextype );
         }
 #undef p_stream
     }
 }
 
-static void AVI_IndexLoad( input_thread_t *p_input )
+static void AVI_IndexLoad( demux_t *p_demux )
 {
-    demux_sys_t *p_sys = p_input->p_demux_data;
+    demux_sys_t *p_sys = p_demux->p_sys;
     unsigned int i_stream;
 
     for( i_stream = 0; i_stream < p_sys->i_track; i_stream++ )
@@ -1908,24 +2119,24 @@ static void AVI_IndexLoad( input_thread_t *p_input )
 
     if( p_sys->b_odml )
     {
-        AVI_IndexLoad_indx( p_input );
+        AVI_IndexLoad_indx( p_demux );
     }
-    else  if( AVI_IndexLoad_idx1( p_input ) )
+    else  if( AVI_IndexLoad_idx1( p_demux ) )
     {
         /* try indx if idx1 failed as some "normal" file have indx too */
-        AVI_IndexLoad_indx( p_input );
+        AVI_IndexLoad_indx( p_demux );
     }
 
     for( i_stream = 0; i_stream < p_sys->i_track; i_stream++ )
     {
-        msg_Dbg( p_input, "stream[%d] created %d index entries",
+        msg_Dbg( p_demux, "stream[%d] created %d index entries",
                 i_stream, p_sys->track[i_stream]->i_idxnb );
     }
 }
 
-static void AVI_IndexCreate( input_thread_t *p_input )
+static void AVI_IndexCreate( demux_t *p_demux )
 {
-    demux_sys_t *p_sys = p_input->p_demux_data;
+    demux_sys_t *p_sys = p_demux->p_sys;
 
     avi_chunk_list_t    *p_riff;
     avi_chunk_list_t    *p_movi;
@@ -1938,7 +2149,7 @@ static void AVI_IndexCreate( input_thread_t *p_input )
 
     if( !p_movi )
     {
-        msg_Err( p_input, "cannot find p_movi" );
+        msg_Err( p_demux, "cannot find p_movi" );
         return;
     }
 
@@ -1949,27 +2160,27 @@ static void AVI_IndexCreate( input_thread_t *p_input )
         p_sys->track[i_stream]->p_index  = NULL;
     }
     i_movi_end = __MIN( (off_t)(p_movi->i_chunk_pos + p_movi->i_chunk_size),
-                        stream_Size( p_input->s ) );
+                        stream_Size( p_demux->s ) );
 
-    stream_Seek( p_input->s, p_movi->i_chunk_pos + 12 );
-    msg_Warn( p_input, "creating index from LIST-movi, will take time !" );
+    stream_Seek( p_demux->s, p_movi->i_chunk_pos + 12 );
+    msg_Warn( p_demux, "creating index from LIST-movi, will take time !" );
     for( ;; )
     {
         avi_packet_t pk;
 
-        if( p_input->b_die )
+        if( p_demux->b_die )
         {
             return;
         }
 
-        if( AVI_PacketGetHeader( p_input, &pk ) )
+        if( AVI_PacketGetHeader( p_demux, &pk ) )
         {
             break;
         }
         if( pk.i_stream < p_sys->i_track &&
             pk.i_cat == p_sys->track[pk.i_stream]->i_cat )
         {
-            AVIIndexEntry_t index;
+            avi_entry_t index;
             index.i_id      = pk.i_fourcc;
             index.i_flags   =
                AVI_GetKeyFlag(p_sys->track[pk.i_stream]->i_codec, pk.i_peek);
@@ -1988,8 +2199,8 @@ static void AVI_IndexCreate( input_thread_t *p_input )
                         p_sysx = AVI_ChunkFind( &p_sys->ck_root,
                                                 AVIFOURCC_RIFF, 1 );
 
-                        msg_Dbg( p_input, "looking for new RIFF chunk" );
-                        if( stream_Seek( p_input->s, p_sysx->i_chunk_pos + 24))
+                        msg_Dbg( p_demux, "looking for new RIFF chunk" );
+                        if( stream_Seek( p_demux->s, p_sysx->i_chunk_pos + 24))
                         {
                             goto print_stat;
                         }
@@ -1997,22 +2208,22 @@ static void AVI_IndexCreate( input_thread_t *p_input )
                     }
                     goto print_stat;
                 case AVIFOURCC_RIFF:
-                        msg_Dbg( p_input, "new RIFF chunk found" );
+                        msg_Dbg( p_demux, "new RIFF chunk found" );
                 case AVIFOURCC_rec:
                 case AVIFOURCC_JUNK:
                     break;
                 default:
-                    msg_Warn( p_input, "need resync, probably broken avi" );
-                    if( AVI_PacketSearch( p_input ) )
+                    msg_Warn( p_demux, "need resync, probably broken avi" );
+                    if( AVI_PacketSearch( p_demux ) )
                     {
-                        msg_Warn( p_input, "lost sync, abord index creation" );
+                        msg_Warn( p_demux, "lost sync, abord index creation" );
                         goto print_stat;
                     }
             }
         }
 
         if( ( !p_sys->b_odml && pk.i_pos + pk.i_size >= i_movi_end ) ||
-            AVI_PacketNext( p_input ) )
+            AVI_PacketNext( p_demux ) )
         {
             break;
         }
@@ -2021,7 +2232,7 @@ static void AVI_IndexCreate( input_thread_t *p_input )
 print_stat:
     for( i_stream = 0; i_stream < p_sys->i_track; i_stream++ )
     {
-        msg_Dbg( p_input,
+        msg_Dbg( p_demux,
                 "stream[%d] creating %d index entries",
                 i_stream,
                 p_sys->track[i_stream]->i_idxnb );
@@ -2031,9 +2242,9 @@ print_stat:
 /*****************************************************************************
  * Stream management
  *****************************************************************************/
-static int AVI_TrackStopFinishedStreams( input_thread_t *p_input )
+static int AVI_TrackStopFinishedStreams( demux_t *p_demux )
 {
-    demux_sys_t *p_sys = p_input->p_demux_data;
+    demux_sys_t *p_sys = p_demux->p_sys;
     unsigned int i;
     int b_end = VLC_TRUE;
 
@@ -2043,6 +2254,7 @@ static int AVI_TrackStopFinishedStreams( input_thread_t *p_input )
         if( tk->i_idxposc >= tk->i_idxnb )
         {
             tk->b_activated = VLC_FALSE;
+            es_out_Control( p_demux->out, ES_OUT_SET_ES_STATE, tk->p_es, VLC_FALSE );
         }
         else
         {
@@ -2055,9 +2267,9 @@ static int AVI_TrackStopFinishedStreams( input_thread_t *p_input )
 /****************************************************************************
  * AVI_MovieGetLength give max streams length in second
  ****************************************************************************/
-static mtime_t  AVI_MovieGetLength( input_thread_t *p_input )
+static mtime_t  AVI_MovieGetLength( demux_t *p_demux )
 {
-    demux_sys_t  *p_sys = p_input->p_demux_data;
+    demux_sys_t  *p_sys = p_demux->p_sys;
     mtime_t      i_maxlength = 0;
     unsigned int i;
 
@@ -2084,7 +2296,7 @@ static mtime_t  AVI_MovieGetLength( input_thread_t *p_input )
         }
         i_length /= (mtime_t)1000000;    /* in seconds */
 
-        msg_Dbg( p_input,
+        msg_Dbg( p_demux,
                  "stream[%d] length:"I64Fd" (based on index)",
                  i,
                  i_length );