lavc/libx264: minor format fix

Remove redundant semicolons

Signed-off-by: Jun Zhao <barryjzhao@tencent.com>
This commit is contained in:
Jun Zhao 2024-06-29 09:37:52 +08:00 committed by Jun Zhao
parent 4d90a76986
commit 25a7dcf069

View file

@ -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;
}