Commit 19f724fc authored by Felix Paul Kühne's avatar Felix Paul Kühne

* unified the GUI-presented string

parent 48425dfd
...@@ -2275,7 +2275,7 @@ static void AVI_IndexCreate( demux_t *p_demux ) ...@@ -2275,7 +2275,7 @@ static void AVI_IndexCreate( demux_t *p_demux )
if( stream_Size( p_demux->s ) > 10000000 ) if( stream_Size( p_demux->s ) > 10000000 )
{ {
p_demux->p_sys->i_dialog_id = intf_IntfProgress( p_demux, p_demux->p_sys->i_dialog_id = intf_IntfProgress( p_demux,
_( "Fixing AVI Index" ), _( "Fixing AVI Index..." ),
0.0 ); 0.0 );
p_demux->p_sys->last_update = mdate(); p_demux->p_sys->last_update = mdate();
} }
...@@ -2298,7 +2298,7 @@ static void AVI_IndexCreate( demux_t *p_demux ) ...@@ -2298,7 +2298,7 @@ static void AVI_IndexCreate( demux_t *p_demux )
float f_pos = (float)i_pos; float f_pos = (float)i_pos;
p_demux->p_sys->last_update = mdate(); p_demux->p_sys->last_update = mdate();
intf_IntfProgressUpdate( p_demux, p_demux->p_sys->i_dialog_id, intf_IntfProgressUpdate( p_demux, p_demux->p_sys->i_dialog_id,
_( "Fixing AVI Index ..." ), f_pos ); _( "Fixing AVI Index..." ), f_pos );
} }
if( AVI_PacketGetHeader( p_demux, &pk ) ) if( AVI_PacketGetHeader( p_demux, &pk ) )
......
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