[FFmpeg-cvslog] lavc/libx264: minor format fix
Jun Zhao
git at videolan.org
Fri Jul 5 13:09:08 EEST 2024
ffmpeg | branch: master | Jun Zhao <mypopydev at gmail.com> | Sat Jun 29 09:37:52 2024 +0800| [25a7dcf06916b6b55789abf801ccbc77859da9e2] | committer: Jun Zhao
lavc/libx264: minor format fix
Remove redundant semicolons
Signed-off-by: Jun Zhao <barryjzhao at tencent.com>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=25a7dcf06916b6b55789abf801ccbc77859da9e2
---
libavcodec/libx264.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavcodec/libx264.c b/libavcodec/libx264.c
index 8186f68aec..d07a65a103 100644
--- a/libavcodec/libx264.c
+++ b/libavcodec/libx264.c
@@ -725,7 +725,7 @@ static int X264_frame(AVCodecContext *ctx, AVPacket *pkt, const AVFrame *frame,
/* SSE = MSE * width * height / scale -> because of possible chroma downsampling */
sse[i] = (int64_t)floor(mse * plane_size + .5);
- };
+ }
errors = sse;
}
More information about the ffmpeg-cvslog
mailing list