Commit c88d98fe authored by Steven Robertson's avatar Steven Robertson Committed by Stefano Sabatini

lavfi/movie: reindent after the previous patch

Signed-off-by: 's avatarSteven Robertson <steven@strobe.cc>
Signed-off-by: 's avatarStefano Sabatini <stefasab@gmail.com>
parent ac726a4f
...@@ -250,23 +250,23 @@ static int movie_get_frame(AVFilterLink *outlink) ...@@ -250,23 +250,23 @@ static int movie_get_frame(AVFilterLink *outlink)
while (1) { while (1) {
if (movie->state == STATE_DECODING) { if (movie->state == STATE_DECODING) {
ret = av_read_frame(movie->format_ctx, &pkt); ret = av_read_frame(movie->format_ctx, &pkt);
if (ret == AVERROR_EOF) { if (ret == AVERROR_EOF) {
int64_t timestamp; int64_t timestamp;
if (movie->loop_count != 1) { if (movie->loop_count != 1) {
timestamp = movie->seek_point; timestamp = movie->seek_point;
if (movie->format_ctx->start_time != AV_NOPTS_VALUE) if (movie->format_ctx->start_time != AV_NOPTS_VALUE)
timestamp += movie->format_ctx->start_time; timestamp += movie->format_ctx->start_time;
if (av_seek_frame(movie->format_ctx, -1, timestamp, AVSEEK_FLAG_BACKWARD) < 0) { 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; movie->state = STATE_FLUSHING;
} else if (movie->loop_count>1) }
movie->loop_count--; } else if (ret < 0)
continue; break;
} else {
movie->state = STATE_FLUSHING;
}
} else if (ret < 0)
break;
} }
// Is this a packet from the video stream? // Is this a packet from the video stream?
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment