Commit a18bc8ed authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

AVI: cosmetics

parent 18834cd7
...@@ -3,6 +3,7 @@ ...@@ -3,6 +3,7 @@
***************************************************************************** *****************************************************************************
* Copyright (C) 2001-2009 the VideoLAN team * Copyright (C) 2001-2009 the VideoLAN team
* $Id$ * $Id$
*
* Authors: Laurent Aimar <fenrir@via.ecp.fr> * Authors: Laurent Aimar <fenrir@via.ecp.fr>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
...@@ -50,7 +51,6 @@ ...@@ -50,7 +51,6 @@
*****************************************************************************/ *****************************************************************************/
#define INTERLEAVE_TEXT N_("Force interleaved method" ) #define INTERLEAVE_TEXT N_("Force interleaved method" )
#define INTERLEAVE_LONGTEXT N_( "Force interleaved method." )
#define INDEX_TEXT N_("Force index creation") #define INDEX_TEXT N_("Force index creation")
#define INDEX_LONGTEXT N_( \ #define INDEX_LONGTEXT N_( \
...@@ -75,7 +75,7 @@ vlc_module_begin () ...@@ -75,7 +75,7 @@ vlc_module_begin ()
set_subcategory( SUBCAT_INPUT_DEMUX ) set_subcategory( SUBCAT_INPUT_DEMUX )
add_bool( "avi-interleaved", false, add_bool( "avi-interleaved", false,
INTERLEAVE_TEXT, INTERLEAVE_LONGTEXT, true ) INTERLEAVE_TEXT, INTERLEAVE_TEXT, true )
add_integer( "avi-index", 0, add_integer( "avi-index", 0,
INDEX_TEXT, INDEX_LONGTEXT, false ) INDEX_TEXT, INDEX_LONGTEXT, false )
change_integer_list( pi_index, ppsz_indexes ) change_integer_list( pi_index, ppsz_indexes )
...@@ -577,10 +577,10 @@ static int Open( vlc_object_t * p_this ) ...@@ -577,10 +577,10 @@ static int Open( vlc_object_t * p_this )
fmt.video.p_palette = calloc( 1, sizeof(video_palette_t) ); fmt.video.p_palette = calloc( 1, sizeof(video_palette_t) );
fmt.video.p_palette->i_entries = __MIN(fmt.i_extra/4, 256); fmt.video.p_palette->i_entries = __MIN(fmt.i_extra/4, 256);
for( int i = 0; i < fmt.video.p_palette->i_entries; i++ ) for( int k = 0; k < fmt.video.p_palette->i_entries; k++ )
{ {
for( int j = 0; j < 4; j++ ) for( int j = 0; j < 4; j++ )
fmt.video.p_palette->palette[i][j] = p_pal[4*i+j]; fmt.video.p_palette->palette[k][j] = p_pal[4*k+j];
} }
} }
} }
...@@ -775,10 +775,9 @@ error: ...@@ -775,10 +775,9 @@ error:
static void Close ( vlc_object_t * p_this ) static void Close ( vlc_object_t * p_this )
{ {
demux_t * p_demux = (demux_t *)p_this; demux_t * p_demux = (demux_t *)p_this;
unsigned int i;
demux_sys_t *p_sys = p_demux->p_sys ; demux_sys_t *p_sys = p_demux->p_sys ;
for( i = 0; i < p_sys->i_track; i++ ) for( unsigned int i = 0; i < p_sys->i_track; i++ )
{ {
if( p_sys->track[i] ) if( p_sys->track[i] )
{ {
...@@ -787,8 +786,10 @@ static void Close ( vlc_object_t * p_this ) ...@@ -787,8 +786,10 @@ static void Close ( vlc_object_t * p_this )
} }
} }
free( p_sys->track ); free( p_sys->track );
AVI_ChunkFreeRoot( p_demux->s, &p_sys->ck_root ); AVI_ChunkFreeRoot( p_demux->s, &p_sys->ck_root );
vlc_meta_Delete( p_sys->meta ); vlc_meta_Delete( p_sys->meta );
for( unsigned i = 0; i < p_sys->i_attachment; i++) for( unsigned i = 0; i < p_sys->i_attachment; i++)
vlc_input_attachment_Delete(p_sys->attachment[i]); vlc_input_attachment_Delete(p_sys->attachment[i]);
free(p_sys->attachment); free(p_sys->attachment);
...@@ -1310,18 +1311,16 @@ static int Demux_UnSeekable( demux_t *p_demux ) ...@@ -1310,18 +1311,16 @@ static int Demux_UnSeekable( demux_t *p_demux )
*****************************************************************************/ *****************************************************************************/
static int Seek( demux_t *p_demux, 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_demux->p_sys; demux_sys_t *p_sys = p_demux->p_sys;
msg_Dbg( p_demux, "seek requested: %"PRId64" seconds %d%%", msg_Dbg( p_demux, "seek requested: %"PRId64" seconds %d%%",
i_date / 1000000, i_percent ); i_date / 1000000, i_percent );
if( p_sys->b_seekable ) if( p_sys->b_seekable )
{ {
unsigned i_stream;
if( !p_sys->i_length ) if( !p_sys->i_length )
{ {
avi_track_t *p_stream = NULL; avi_track_t *p_stream = NULL;
unsigned i_stream;
int64_t i_pos; int64_t i_pos;
/* use i_percent to create a true i_date */ /* use i_percent to create a true i_date */
...@@ -1380,7 +1379,7 @@ static int Seek( demux_t *p_demux, mtime_t i_date, int i_percent ) ...@@ -1380,7 +1379,7 @@ static int Seek( demux_t *p_demux, mtime_t i_date, int i_percent )
} }
/* */ /* */
for( i_stream = 0; i_stream < p_sys->i_track; i_stream++ ) for( unsigned i_stream = 0; i_stream < p_sys->i_track; i_stream++ )
{ {
avi_track_t *p_stream = p_sys->track[i_stream]; avi_track_t *p_stream = p_sys->track[i_stream];
......
...@@ -26,13 +26,13 @@ ...@@ -26,13 +26,13 @@
#endif #endif
#include <vlc_common.h> #include <vlc_common.h>
#include <vlc_demux.h> #include <vlc_demux.h> /* stream_*, *_ES */
#include <vlc_codecs.h> /* VLC_BITMAPINFOHEADER */ #include <vlc_codecs.h> /* VLC_BITMAPINFOHEADER */
#include "libavi.h" #include "libavi.h"
#ifndef NDEBUG #ifndef NDEBUG
#define AVI_DEBUG 1 # define AVI_DEBUG 1
#endif #endif
#define __EVEN( x ) (((x) + 1) & ~1) #define __EVEN( x ) (((x) + 1) & ~1)
...@@ -1045,4 +1045,3 @@ void *_AVI_ChunkFind( avi_chunk_t *p_chk, ...@@ -1045,4 +1045,3 @@ void *_AVI_ChunkFind( avi_chunk_t *p_chk,
return NULL; return NULL;
} }
...@@ -57,6 +57,7 @@ typedef struct idx1_entry_s ...@@ -57,6 +57,7 @@ typedef struct idx1_entry_s
uint32_t i_length; uint32_t i_length;
} idx1_entry_t; } idx1_entry_t;
typedef struct avi_chunk_common_s typedef struct avi_chunk_common_s
{ {
AVI_CHUNK_COMMON AVI_CHUNK_COMMON
...@@ -349,9 +350,9 @@ void AVI_ChunkFreeRoot( stream_t *, avi_chunk_t *p_chk ); ...@@ -349,9 +350,9 @@ void AVI_ChunkFreeRoot( stream_t *, avi_chunk_t *p_chk );
#define AVITWOCC_tx VLC_TWOCC('t','x') #define AVITWOCC_tx VLC_TWOCC('t','x')
#define AVITWOCC_sb VLC_TWOCC('s','b') #define AVITWOCC_sb VLC_TWOCC('s','b')
/* *** codex stuff *** */ /* *** codex stuff *** */
/* DV */ /* DV */
#define FOURCC_dvsd VLC_FOURCC('d','v','s','d') #define FOURCC_dvsd VLC_FOURCC('d','v','s','d')
#define FOURCC_dvhd VLC_FOURCC('d','v','h','d') #define FOURCC_dvhd VLC_FOURCC('d','v','h','d')
#define FOURCC_dvsl VLC_FOURCC('d','v','s','l') #define FOURCC_dvsl VLC_FOURCC('d','v','s','l')
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment