diff options
author | Jun Zhao <mypopydev@gmail.com> | 2024-06-29 09:37:52 +0800 |
---|---|---|
committer | Jun Zhao <barryjzhao@tencent.com> | 2024-07-05 18:05:10 +0800 |
commit | 25a7dcf06916b6b55789abf801ccbc77859da9e2 (patch) | |
tree | c1e14355869411fa7c7a17aba600352341fb987e | |
parent | 4d90a76986cf5ef80266ce845679321b68e3412d (diff) | |
download | ffmpeg-25a7dcf06916b6b55789abf801ccbc77859da9e2.tar.gz |
lavc/libx264: minor format fix
Remove redundant semicolons
Signed-off-by: Jun Zhao <barryjzhao@tencent.com>
-rw-r--r-- | libavcodec/libx264.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |