From f1d22d113f924803ee0e0f33b81f0720f9378eae Mon Sep 17 00:00:00 2001 From: "Steinar H. Gunderson" Date: Fri, 1 Mar 2024 18:32:45 +0100 Subject: [PATCH] Fix indent error. --- nageru/kaeru.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/nageru/kaeru.cpp b/nageru/kaeru.cpp index 554259a..2bdc686 100644 --- a/nageru/kaeru.cpp +++ b/nageru/kaeru.cpp @@ -118,8 +118,8 @@ void video_frame_callback(FFmpegCapture *video, X264Encoder *x264_encoder, Audio int64_t video_pts, AVRational video_timebase, int64_t audio_pts, AVRational audio_timebase, uint16_t timecode, - FrameAllocator::Frame video_frame, size_t video_offset, VideoFormat video_format, - FrameAllocator::Frame audio_frame, size_t audio_offset, AudioFormat audio_format) + FrameAllocator::Frame video_frame, size_t video_offset, VideoFormat video_format, + FrameAllocator::Frame audio_frame, size_t audio_offset, AudioFormat audio_format) { if (video_pts >= 0 && video_frame.len > 0) { ReceivedTimestamps ts; @@ -157,7 +157,7 @@ void video_frame_callback(FFmpegCapture *video, X264Encoder *x264_encoder, Audio } audio_pts = av_rescale_q(audio_pts, audio_timebase, AVRational{ 1, TIMEBASE }); audio_encoder->encode_audio(float_samples, audio_pts); - } + } if (video_frame.owner) { video_frame.owner->release_frame(video_frame); -- 2.39.2