X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=nageru%2Fkaeru.cpp;h=2bdc6861f2dffa5a17a0d81922e38adcbaf0b95b;hb=f1d22d113f924803ee0e0f33b81f0720f9378eae;hp=554259acd80a6a5bb8f7c17919100e388dd990ce;hpb=f81ae3be1aae619fe4ad022f55d95a4a83ace076;p=nageru 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);