[FFmpeg-soc] [soc]: r5301 - concat/libavformat/avplaylist.c

Diego Biurrun diego at biurrun.de
Wed Aug 26 10:18:48 CEST 2009


On Wed, Aug 26, 2009 at 10:10:11AM +0200, gkovacs wrote:
> 
> --- concat/libavformat/avplaylist.c	Wed Aug 26 10:08:02 2009	(r5300)
> +++ concat/libavformat/avplaylist.c	Wed Aug 26 10:10:10 2009	(r5301)
> @@ -153,7 +153,7 @@ int av_playlist_remove_item(AVPlaylistCo
> -    for (i = pos; i < ctx->pelist_size; --i)
> +    for (i = pos; i < ctx->pelist_size; ++i)

I haven't looked at the code to see if it makes a difference in this
case, but using ++i instead of the more common i++ looks odd here.

Diego


More information about the FFmpeg-soc mailing list