From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <ffmpeg-devel-bounces@ffmpeg.org> Received: from ffbox0-bg.mplayerhq.hu (ffbox0-bg.ffmpeg.org [79.124.17.100]) by master.gitmailbox.com (Postfix) with ESMTPS id 6BFA947A06 for <ffmpegdev@gitmailbox.com>; Mon, 21 Apr 2025 04:51:09 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id EC826689969; Mon, 21 Apr 2025 07:51:05 +0300 (EEST) Received: from mout-p-103.mailbox.org (mout-p-103.mailbox.org [80.241.56.161]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id 3C9A9687DF2 for <ffmpeg-devel@ffmpeg.org>; Mon, 21 Apr 2025 07:50:58 +0300 (EEST) Received: from smtp1.mailbox.org (smtp1.mailbox.org [10.196.197.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by mout-p-103.mailbox.org (Postfix) with ESMTPS id 4ZgtH365Fxz9t8l for <ffmpeg-devel@ffmpeg.org>; Mon, 21 Apr 2025 06:50:55 +0200 (CEST) Message-ID: <af9371b0-8684-404f-8bde-33e4dcaec555@gyani.pro> Date: Mon, 21 Apr 2025 10:20:52 +0530 MIME-Version: 1.0 To: ffmpeg-devel@ffmpeg.org References: <pull.72.ffstaging.FFmpeg.1745179871512.ffmpegagent@gmail.com> Content-Language: en-US From: Gyan Doshi <ffmpeg@gyani.pro> In-Reply-To: <pull.72.ffstaging.FFmpeg.1745179871512.ffmpegagent@gmail.com> Subject: Re: [FFmpeg-devel] [PATCH] avformat/dump: Change precision of stream start offsets X-BeenThere: ffmpeg-devel@ffmpeg.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: FFmpeg development discussions and patches <ffmpeg-devel.ffmpeg.org> List-Unsubscribe: <https://ffmpeg.org/mailman/options/ffmpeg-devel>, <mailto:ffmpeg-devel-request@ffmpeg.org?subject=unsubscribe> List-Archive: <https://ffmpeg.org/pipermail/ffmpeg-devel> List-Post: <mailto:ffmpeg-devel@ffmpeg.org> List-Help: <mailto:ffmpeg-devel-request@ffmpeg.org?subject=help> List-Subscribe: <https://ffmpeg.org/mailman/listinfo/ffmpeg-devel>, <mailto:ffmpeg-devel-request@ffmpeg.org?subject=subscribe> Reply-To: FFmpeg development discussions and patches <ffmpeg-devel@ffmpeg.org> Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="us-ascii"; Format="flowed" Errors-To: ffmpeg-devel-bounces@ffmpeg.org Sender: "ffmpeg-devel" <ffmpeg-devel-bounces@ffmpeg.org> Archived-At: <https://master.gitmailbox.com/ffmpegdev/af9371b0-8684-404f-8bde-33e4dcaec555@gyani.pro/> List-Archive: <https://master.gitmailbox.com/ffmpegdev/> List-Post: <mailto:ffmpegdev@gitmailbox.com> On 2025-04-21 01:41 am, softworkz wrote: > From: softworkz <softworkz@hotmail.com> > > Changing this to 6 digits to align with other > printed times > > Signed-off-by: softworkz <softworkz@hotmail.com> > --- > avformat/dump: Change precision of stream start offsets > > Changing this to 6 digits to align with other printed times > > Signed-off-by: softworkz softworkz@hotmail.com > > Published-As: https://github.com/ffstaging/FFmpeg/releases/tag/pr-ffstaging-72%2Fsoftworkz%2Fsubmit_start_offsets-v1 > Fetch-It-Via: git fetch https://github.com/ffstaging/FFmpeg pr-ffstaging-72/softworkz/submit_start_offsets-v1 > Pull-Request: https://github.com/ffstaging/FFmpeg/pull/72 > > libavformat/dump.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/libavformat/dump.c b/libavformat/dump.c > index 8c7db7b275..1bd0424f3d 100644 > --- a/libavformat/dump.c > +++ b/libavformat/dump.c > @@ -680,7 +680,7 @@ FF_ENABLE_DEPRECATION_WARNINGS > > if (st->start_time != AV_NOPTS_VALUE && st->start_time != 0 && st->time_base.den && st->time_base.num) { > const double stream_start = av_q2d(st->time_base) * st->start_time; > - av_log(NULL, AV_LOG_INFO, ", Start-Time %.3fs", stream_start); > + av_log(NULL, AV_LOG_INFO, ", Start-Time %.6fs", stream_start); The camel case is incongruous with the formatting of the text next To It. Regards, Gyan _______________________________________________ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".