From 25a7dcf06916b6b55789abf801ccbc77859da9e2 Mon Sep 17 00:00:00 2001 From: Jun Zhao Date: Sat, 29 Jun 2024 09:37:52 +0800 Subject: [PATCH] lavc/libx264: minor format fix Remove redundant semicolons Signed-off-by: Jun Zhao --- 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; }