From 4817cadd09aa391746343f9daa2a028a2fa19b6a Mon Sep 17 00:00:00 2001 From: Romain Vimont Date: Thu, 27 Jan 2022 18:59:41 +0100 Subject: [PATCH] Fix code style Align function parameters. --- app/src/frame_buffer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/frame_buffer.c b/app/src/frame_buffer.c index fc5e7084..5699b58f 100644 --- a/app/src/frame_buffer.c +++ b/app/src/frame_buffer.c @@ -50,7 +50,7 @@ swap_frames(AVFrame **lhs, AVFrame **rhs) { bool sc_frame_buffer_push(struct sc_frame_buffer *fb, const AVFrame *frame, - bool *previous_frame_skipped) { + bool *previous_frame_skipped) { // Use a temporary frame to preserve pending_frame in case of error. // tmp_frame is an empty frame, no need to call av_frame_unref() beforehand. int r = av_frame_ref(fb->tmp_frame, frame);