[FFmpeg-cvslog] avcodec/ffv1dec_template: fix indention
Michael Niedermayer
git at videolan.org
Tue Jul 12 22:55:41 EEST 2022
ffmpeg | branch: master | Michael Niedermayer <michael at niedermayer.cc> | Mon Jul 4 17:19:02 2022 +0200| [eee7364c90699f50a36aaada38c52ccc0d6bf501] | committer: Michael Niedermayer
avcodec/ffv1dec_template: fix indention
Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=eee7364c90699f50a36aaada38c52ccc0d6bf501
---
libavcodec/ffv1dec_template.c | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/libavcodec/ffv1dec_template.c b/libavcodec/ffv1dec_template.c
index 0b1d176ba1..9b1d65e825 100644
--- a/libavcodec/ffv1dec_template.c
+++ b/libavcodec/ffv1dec_template.c
@@ -93,11 +93,11 @@ static av_always_inline int RENAME(decode_line)(FFV1Context *s, int w,
run_count--;
}
} else {
- while (run_count > 1 && w-x > 1) {
- sample[1][x] = RENAME(predict)(sample[1] + x, sample[0] + x);
- x++;
- run_count--;
- }
+ while (run_count > 1 && w-x > 1) {
+ sample[1][x] = RENAME(predict)(sample[1] + x, sample[0] + x);
+ x++;
+ run_count--;
+ }
}
run_count--;
if (run_count < 0) {
More information about the ffmpeg-cvslog
mailing list