[vlc-commits] commit: Ogg: no tabs in source-code (Jean-Baptiste Kempf )
git at videolan.org
git at videolan.org
Thu Sep 16 02:03:16 CEST 2010
vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Thu Sep 16 02:03:04 2010 +0200| [8e32c9aae4af29e450361731b6dc984097d4daf3] | committer: Jean-Baptiste Kempf
Ogg: no tabs in source-code
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=8e32c9aae4af29e450361731b6dc984097d4daf3
---
modules/demux/ogg.c | 14 +++++++-------
1 files changed, 7 insertions(+), 7 deletions(-)
diff --git a/modules/demux/ogg.c b/modules/demux/ogg.c
index ea04ae7..4c50f6d 100644
--- a/modules/demux/ogg.c
+++ b/modules/demux/ogg.c
@@ -500,7 +500,7 @@ static void Ogg_UpdatePCR( logical_stream_t *p_stream,
( iframe << p_stream->i_granule_shift );
p_stream->i_pcr = ( iframe + pframe - p_stream->i_keyframe_offset )
- * INT64_C(1000000) / p_stream->f_rate;
+ * INT64_C(1000000) / p_stream->f_rate;
}
else if( p_stream->fmt.i_codec == VLC_CODEC_DIRAC )
{
@@ -977,12 +977,12 @@ static int Ogg_FindLogicalStreams( demux_t *p_demux )
}
/* Check for Dirac header */
else if( ( oggpacket.bytes >= 5 &&
- ! memcmp( oggpacket.packet, "BBCD\x00", 5 ) ) ||
- ( oggpacket.bytes >= 9 &&
- ! memcmp( oggpacket.packet, "KW-DIRAC\x00", 9 ) ) )
- {
- if( Ogg_ReadDiracHeader( p_stream, &oggpacket ) )
- msg_Dbg( p_demux, "found dirac header" );
+ ! memcmp( oggpacket.packet, "BBCD\x00", 5 ) ) ||
+ ( oggpacket.bytes >= 9 &&
+ ! memcmp( oggpacket.packet, "KW-DIRAC\x00", 9 ) ) )
+ {
+ if( Ogg_ReadDiracHeader( p_stream, &oggpacket ) )
+ msg_Dbg( p_demux, "found dirac header" );
else
{
msg_Warn( p_demux, "found dirac header isn't decodable" );
More information about the vlc-commits
mailing list