[vlc-commits] MKV: remove trailing spaces

Jean-Baptiste Kempf git at videolan.org
Mon Feb 23 16:58:11 CET 2015


vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Mon Feb 23 11:47:23 2015 +0100| [40bddb7dd6daf85aab1a60bedf2fc2eca2f75dca] | committer: Jean-Baptiste Kempf

MKV: remove trailing spaces

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=40bddb7dd6daf85aab1a60bedf2fc2eca2f75dca
---

 modules/demux/mkv/matroska_segment.cpp |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/modules/demux/mkv/matroska_segment.cpp b/modules/demux/mkv/matroska_segment.cpp
index 78d7f94..3f12c0e 100644
--- a/modules/demux/mkv/matroska_segment.cpp
+++ b/modules/demux/mkv/matroska_segment.cpp
@@ -208,7 +208,7 @@ void matroska_segment_c::LoadCues( KaxCues *cues )
                     }
                     catch(...)
                     {
-                        ep->Up();   
+                        ep->Up();
                         msg_Err( &sys.demuxer, "Error while reading %s", typeid(*el).name() );
                         b_invalid_cue = true;
                         break;
@@ -1162,7 +1162,7 @@ void matroska_segment_c::ComputeTrackPriority()
         /* Avoid multivideo tracks when unnecessary */
         if( p_tk->fmt.i_cat == VIDEO_ES )
             p_tk->fmt.i_priority--;
-    } 
+    }
 }
 
 void matroska_segment_c::EnsureDuration()
@@ -1370,7 +1370,7 @@ int matroska_segment_c::BlockGet( KaxBlock * & pp_block, KaxSimpleBlock * & pp_s
                             DataBuffer *p_data = &pp_block->GetBuffer(0);
                             size_t sz = p_data->Size();
                             const uint8_t * p_buff = p_data->Buffer();
-                            /* if the second bit of a Theora frame is 1 
+                            /* if the second bit of a Theora frame is 1
                                it's not a keyframe */
                             if( sz && p_buff )
                             {



More information about the vlc-commits mailing list