From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from ffbox0-bg.mplayerhq.hu (ffbox0-bg.ffmpeg.org [79.124.17.100]) by master.gitmailbox.com (Postfix) with ESMTP id 240424211F for ; Mon, 28 Mar 2022 23:26:17 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id 0C4B868B2E3; Tue, 29 Mar 2022 02:25:57 +0300 (EEST) Received: from mail-oa1-f53.google.com (mail-oa1-f53.google.com [209.85.160.53]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id D2B8F68B2D0 for ; Tue, 29 Mar 2022 02:25:48 +0300 (EEST) Received: by mail-oa1-f53.google.com with SMTP id 586e51a60fabf-ddfa38f1c1so16914279fac.11 for ; Mon, 28 Mar 2022 16:25:48 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20210112; h=from:to:subject:date:message-id:in-reply-to:references:mime-version :content-transfer-encoding; bh=i8h70/vBIWV+UJdNuQn214c3aTSQySOz8cObImyOwgQ=; b=RsLd+yVetFKJUI77SH5MoLvkJ/agOZt4R3aMTuFbzGM0vipJ30y4K2Zy1FR6A+tOBW Xe2va6MWeCpAvymZgjbjo7ODjS7teCdLBJHd5SUvdO1m3/RYwrIey7WtYO0GFGQUjtfN LNVTLlZGlstPu1vMEkuE8uHzzj9xeNchL77Ft3fczoRcIWfZ2IWIMJzcohOWyFfZi8iV ImUBah9UGghrtJA0rY3ikBaYh4BU6H7OWt5Ljw1VPxCzuYiP2FDzy2STOFq7IZHf76zt tkL29LBzGmFwPT3GQZ5oN4mw613UGhmfEiGuvfMOu3Cf2QXZihdSZnaxcE+Trh3GDZqo 1Vfg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:from:to:subject:date:message-id:in-reply-to :references:mime-version:content-transfer-encoding; bh=i8h70/vBIWV+UJdNuQn214c3aTSQySOz8cObImyOwgQ=; b=t9cVSzs4ImtIgNC6E3NBVcGMPp6GKWRgImhr2KoArM/yEPUnS68z2l507JMzvvZofO wy+bNGX5n/marpsxuYxCMV3LhZPZPVcAD2Iz7gjuc35+PmSL9b4eHW9CTbPg7n86+alK 1UQ44H3/0zIAm7FZ4jnOW+ro5vgzOLVnOEa7KyWbB9mcYNnE2Z4uPeFu3q945c5kHXQT uQDLKII/m00PJL/IBshTR17nYSt60Bj8NIc0s8FvKdETpQiXZERaeI6tp3x49bYkOPP9 GPGX4R8UNdTveVQP3dlpNLoesjyYlzcoum7bfi5UcpTAvytzxFXsE2C9johtT0/dM0WM po+g== X-Gm-Message-State: AOAM532vV6QZlM/PGbHcJhjrR8QFaCRwwSJv3/B1Xga67T+Ue3lqAOAg oEDmW3jlEByW13deNBSrGw7aO1hbpBBoSA== X-Google-Smtp-Source: ABdhPJzZKiPZkm8is1roINx5pJ8JEKaZQT7ULUFZcb6lRBrgmIOBTLwUvTNsArDjADW9HAy/R/BMpw== X-Received: by 2002:a05:6870:d18b:b0:d9:f452:be90 with SMTP id a11-20020a056870d18b00b000d9f452be90mr744450oac.15.1648509946965; Mon, 28 Mar 2022 16:25:46 -0700 (PDT) Received: from localhost.localdomain ([186.136.131.95]) by smtp.gmail.com with ESMTPSA id gk6-20020a0568703c0600b000de4880b357sm7198456oab.50.2022.03.28.16.25.45 for (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Mon, 28 Mar 2022 16:25:46 -0700 (PDT) From: James Almer To: ffmpeg-devel@ffmpeg.org Date: Mon, 28 Mar 2022 20:24:49 -0300 Message-Id: <20220328232453.54773-3-jamrial@gmail.com> X-Mailer: git-send-email 2.35.1 In-Reply-To: <20220328232453.54773-1-jamrial@gmail.com> References: <20220328232453.54773-1-jamrial@gmail.com> MIME-Version: 1.0 Subject: [FFmpeg-devel] [PATCH 3/7] avformat/mov_chan: use a higher log level for a debug message 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-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: ffmpeg-devel-bounces@ffmpeg.org Sender: "ffmpeg-devel" Archived-At: List-Archive: List-Post: Trace is too noisy and this line is useful enough to get it printed at debug level. Signed-off-by: James Almer --- libavformat/mov_chan.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/mov_chan.c b/libavformat/mov_chan.c index 98773bb460..3c23142f35 100644 --- a/libavformat/mov_chan.c +++ b/libavformat/mov_chan.c @@ -574,7 +574,7 @@ int ff_mov_read_chan(AVFormatContext *s, AVIOContext *pb, AVStream *st, bitmap = avio_rb32(pb); num_descr = avio_rb32(pb); - av_log(s, AV_LOG_TRACE, "chan: layout=%"PRIu32" " + av_log(s, AV_LOG_DEBUG, "chan: layout=%"PRIu32" " "bitmap=%"PRIu32" num_descr=%"PRIu32"\n", layout_tag, bitmap, num_descr); -- 2.35.1 _______________________________________________ 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".