]> git.sesse.net Git - nageru/commitdiff
Fix indent error.
authorSteinar H. Gunderson <sgunderson@bigfoot.com>
Fri, 1 Mar 2024 17:32:45 +0000 (18:32 +0100)
committerSteinar H. Gunderson <sgunderson@bigfoot.com>
Fri, 1 Mar 2024 17:34:01 +0000 (18:34 +0100)
nageru/kaeru.cpp

index 554259acd80a6a5bb8f7c17919100e388dd990ce..2bdc6861f2dffa5a17a0d81922e38adcbaf0b95b 100644 (file)
@@ -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);