[FFmpeg-soc] [soc]: r5089 - concat/libavformat/playlist.c
gkovacs
subversion at mplayerhq.hu
Thu Aug 13 22:19:56 CEST 2009
Author: gkovacs
Date: Thu Aug 13 22:19:56 2009
New Revision: 5089
Log:
removing unused brackets in ff_playlist_localstidx_from_streamidx
Modified:
concat/libavformat/playlist.c
Modified: concat/libavformat/playlist.c
==============================================================================
--- concat/libavformat/playlist.c Thu Aug 13 22:16:57 2009 (r5088)
+++ concat/libavformat/playlist.c Thu Aug 13 22:19:56 2009 (r5089)
@@ -221,9 +221,8 @@ int ff_playlist_localstidx_from_streamid
{
int i, total;
i = total = 0;
- while (stream_index >= total) {
+ while (stream_index >= total)
total += ctx->nb_streams_list[i++];
- }
return stream_index - (total - ctx->nb_streams_list[i-1]);
}
More information about the FFmpeg-soc
mailing list