From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from ffbox0-bg.ffmpeg.org (ffbox0-bg.ffmpeg.org [79.124.17.100]) by master.gitmailbox.com (Postfix) with ESMTPS id CEDF34F047 for ; Sun, 15 Jun 2025 06:56:25 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.ffmpeg.org (Postfix) with ESMTP id CB84268D138; Sun, 15 Jun 2025 09:56:21 +0300 (EEST) Received: from iq.passwd.hu (iq.passwd.hu [217.27.212.140]) by ffbox0-bg.ffmpeg.org (Postfix) with ESMTP id A6B4268D0BD for ; Sun, 15 Jun 2025 09:56:14 +0300 (EEST) Received: from localhost (localhost [127.0.0.1]) by iq.passwd.hu (Postfix) with ESMTP id 820B5EC7AA for ; Sun, 15 Jun 2025 08:53:19 +0200 (CEST) X-Virus-Scanned: amavisd-new at passwd.hu Received: from iq.passwd.hu ([127.0.0.1]) by localhost (iq.passwd.hu [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id q_89Qm-CKncZ for ; Sun, 15 Jun 2025 08:53:17 +0200 (CEST) Received: from iq (iq [217.27.212.140]) by iq.passwd.hu (Postfix) with ESMTPS id C0F91EC7A8 for ; Sun, 15 Jun 2025 08:53:17 +0200 (CEST) Date: Sun, 15 Jun 2025 08:53:17 +0200 (CEST) From: Marton Balint To: FFmpeg development discussions and patches In-Reply-To: <20250615064622.6612-2-marth64@proxyid.net> Message-ID: <0aadedde-d4ba-d77f-e618-e06e991c1864@passwd.hu> References: <20250615064622.6612-2-marth64@proxyid.net> MIME-Version: 1.0 Subject: Re: [FFmpeg-devel] [PATCH] avformat/dump: lowercase 'Start' prefix for start offset X-BeenThere: ffmpeg-devel@ffmpeg.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: FFmpeg development discussions and patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: FFmpeg development discussions and patches Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="us-ascii"; Format="flowed" Errors-To: ffmpeg-devel-bounces@ffmpeg.org Sender: "ffmpeg-devel" Archived-At: List-Archive: List-Post: On Sun, 15 Jun 2025, Marth64 wrote: > Just applying some UX polish. > This is to match the lowercase trend of attributes in > the dump string (and similar to chapters). > > Signed-off-by: Marth64 > --- > libavformat/dump.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/libavformat/dump.c b/libavformat/dump.c > index c263921b99..f22b70b660 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 %.6f", stream_start); > + av_log(NULL, AV_LOG_INFO, ", start %.6f", stream_start); > } > > dump_disposition(st->disposition, log_level); > -- LGTM. Thanks, Marton _______________________________________________ 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".