[vlc-commits] HLS: remove tabs and trailing space
Jean-Baptiste Kempf
git at videolan.org
Thu Aug 30 22:51:49 CEST 2012
vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Thu Aug 30 22:51:27 2012 +0200| [27c1188f025b8511c167b9cf7ba700f0a9859d30] | committer: Jean-Baptiste Kempf
HLS: remove tabs and trailing space
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=27c1188f025b8511c167b9cf7ba700f0a9859d30
---
modules/stream_filter/httplive.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/modules/stream_filter/httplive.c b/modules/stream_filter/httplive.c
index ab075c6..62bfd99 100644
--- a/modules/stream_filter/httplive.c
+++ b/modules/stream_filter/httplive.c
@@ -1271,7 +1271,7 @@ static int get_HTTPLiveMetaPlaylist(stream_t *s, vlc_array_t **streams)
return err;
}
-/* Update hls_old (an existing member of p_sys->hls_stream) to match hls_new
+/* Update hls_old (an existing member of p_sys->hls_stream) to match hls_new
(which represents a downloaded, perhaps newer version of the same playlist) */
static int hls_UpdatePlaylist(stream_t *s, hls_stream_t *hls_new, hls_stream_t *hls_old)
{
@@ -1836,7 +1836,7 @@ static char *ReadLine(uint8_t *buffer, uint8_t **pos, const size_t len)
/* next pass start after \r and \n */
p++;
*pos = p;
- }
+ }
}
return line;
@@ -2423,7 +2423,7 @@ static int segment_Seek(stream_t *s, const uint64_t pos)
/* Wait for download to be finished */
msg_Info(s, "seek to segment %d", p_sys->playback.segment);
while ((p_sys->download.seek != -1) ||
- ((p_sys->download.segment - p_sys->playback.segment < 3) &&
+ ((p_sys->download.segment - p_sys->playback.segment < 3) &&
(p_sys->download.segment < count)))
{
vlc_cond_wait(&p_sys->download.wait, &p_sys->download.lock_wait);
More information about the vlc-commits
mailing list