[FFmpeg-cvslog] lavfi/movie: reindent after the previous patch
Steven Robertson
git at videolan.org
Tue Jul 10 01:40:47 CEST 2012
ffmpeg | branch: master | Steven Robertson <steven at strobe.cc> | Fri Jul 6 22:42:29 2012 -0700| [c88d98fe4a42b02eec7ac8e1f113f9ec1a5d0ac6] | committer: Stefano Sabatini
lavfi/movie: reindent after the previous patch
Signed-off-by: Steven Robertson <steven at strobe.cc>
Signed-off-by: Stefano Sabatini <stefasab at gmail.com>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=c88d98fe4a42b02eec7ac8e1f113f9ec1a5d0ac6
---
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 95ea2fc..b1d8fd3 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?
More information about the ffmpeg-cvslog
mailing list