From c88d98fe4a42b02eec7ac8e1f113f9ec1a5d0ac6 Mon Sep 17 00:00:00 2001 From: Steven Robertson Date: Fri, 6 Jul 2012 22:42:29 -0700 Subject: [PATCH] lavfi/movie: reindent after the previous patch Signed-off-by: Steven Robertson Signed-off-by: Stefano Sabatini --- libavfilter/src_movie.c | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/libavfilter/src_movie.c b/libavfilter/src_movie.c index 95ea2fc6bf..b1d8fd31ad 100644 --- a/libavfilter/src_movie.c +++ b/libavfilter/src_movie.c @@ -250,23 +250,23 @@ static int movie_get_frame(AVFilterLink *outlink) while (1) { if (movie->state == STATE_DECODING) { - ret = av_read_frame(movie->format_ctx, &pkt); - if (ret == AVERROR_EOF) { - int64_t timestamp; - if (movie->loop_count != 1) { - timestamp = movie->seek_point; - if (movie->format_ctx->start_time != AV_NOPTS_VALUE) - timestamp += movie->format_ctx->start_time; - if (av_seek_frame(movie->format_ctx, -1, timestamp, AVSEEK_FLAG_BACKWARD) < 0) { + ret = av_read_frame(movie->format_ctx, &pkt); + if (ret == AVERROR_EOF) { + int64_t timestamp; + if (movie->loop_count != 1) { + timestamp = movie->seek_point; + if (movie->format_ctx->start_time != AV_NOPTS_VALUE) + timestamp += movie->format_ctx->start_time; + if (av_seek_frame(movie->format_ctx, -1, timestamp, AVSEEK_FLAG_BACKWARD) < 0) { + movie->state = STATE_FLUSHING; + } else if (movie->loop_count>1) + movie->loop_count--; + continue; + } else { movie->state = STATE_FLUSHING; - } else if (movie->loop_count>1) - movie->loop_count--; - continue; - } else { - movie->state = STATE_FLUSHING; - } - } else if (ret < 0) - break; + } + } else if (ret < 0) + break; } // Is this a packet from the video stream?