[FFmpeg-cvslog] fftools/ffmpeg: cosmetics
Anton Khirnov
git at videolan.org
Mon Nov 28 11:33:34 EET 2022
ffmpeg | branch: master | Anton Khirnov <anton at khirnov.net> | Sat Nov 26 00:50:50 2022 +0100| [becbb22eb032149836070d13edf6b92f87780b35] | committer: Anton Khirnov
fftools/ffmpeg: cosmetics
Reindent after previous commit and break/split some lines as
appropriate.
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=becbb22eb032149836070d13edf6b92f87780b35
---
fftools/ffmpeg.c | 23 +++++++++++------------
1 file changed, 11 insertions(+), 12 deletions(-)
diff --git a/fftools/ffmpeg.c b/fftools/ffmpeg.c
index 045cc609b9..771219f7df 100644
--- a/fftools/ffmpeg.c
+++ b/fftools/ffmpeg.c
@@ -688,18 +688,17 @@ static double adjust_frame_pts_to_encoder_tb(OutputFile *of, OutputStream *ost,
if (frame->pts == AV_NOPTS_VALUE)
goto early_exit;
- tb.den <<= extra_bits;
- float_pts =
- av_rescale_q(frame->pts, filter_tb, tb) -
- av_rescale_q(start_time, AV_TIME_BASE_Q, tb);
- float_pts /= 1 << extra_bits;
- // avoid exact midoints to reduce the chance of rounding differences, this can be removed in case the fps code is changed to work with integers
- float_pts += FFSIGN(float_pts) * 1.0 / (1<<17);
-
- frame->pts =
- av_rescale_q(frame->pts, filter_tb, enc->time_base) -
- av_rescale_q(start_time, AV_TIME_BASE_Q, enc->time_base);
- frame->time_base = enc->time_base;
+ tb.den <<= extra_bits;
+ float_pts = av_rescale_q(frame->pts, filter_tb, tb) -
+ av_rescale_q(start_time, AV_TIME_BASE_Q, tb);
+ float_pts /= 1 << extra_bits;
+ // avoid exact midoints to reduce the chance of rounding differences, this
+ // can be removed in case the fps code is changed to work with integers
+ float_pts += FFSIGN(float_pts) * 1.0 / (1<<17);
+
+ frame->pts = av_rescale_q(frame->pts, filter_tb, enc->time_base) -
+ av_rescale_q(start_time, AV_TIME_BASE_Q, enc->time_base);
+ frame->time_base = enc->time_base;
early_exit:
More information about the ffmpeg-cvslog
mailing list