Commit 75813fcf authored by Laurent Aimar's avatar Laurent Aimar

Do not print real index debug by default.

parent 6de3db02
...@@ -1150,11 +1150,13 @@ static void HeaderINDX( demux_t *p_demux ) ...@@ -1150,11 +1150,13 @@ static void HeaderINDX( demux_t *p_demux )
p_idx->i_file_offset = GetDWBE( &p_entry[6] ); p_idx->i_file_offset = GetDWBE( &p_entry[6] );
p_idx->i_frame_index = GetDWBE( &p_entry[10] ); p_idx->i_frame_index = GetDWBE( &p_entry[10] );
#if 0
msg_Dbg( p_demux, msg_Dbg( p_demux,
"Real Index: time %"PRIu32" file %"PRIu32" frame %"PRIu32, "Real Index: time %"PRIu32" file %"PRIu32" frame %"PRIu32,
p_idx->i_time_offset, p_idx->i_time_offset,
p_idx->i_file_offset, p_idx->i_file_offset,
p_idx->i_frame_index ); p_idx->i_frame_index );
#endif
} }
} }
......
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