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 C36A942454 for ; Wed, 20 Jul 2022 14:50:23 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id C084668B691; Wed, 20 Jul 2022 17:50:14 +0300 (EEST) Received: from out1.migadu.com (out1.migadu.com [91.121.223.63]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id 3CF9D68B5FF for ; Wed, 20 Jul 2022 17:50:08 +0300 (EEST) X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. From: Zane van Iperen To: ffmpeg-devel@ffmpeg.org Date: Thu, 21 Jul 2022 00:49:36 +1000 Message-Id: <20220720144937.93133-3-zane@zanevaniperen.com> In-Reply-To: <20220720144937.93133-1-zane@zanevaniperen.com> References: <20220720144937.93133-1-zane@zanevaniperen.com> MIME-Version: 1.0 X-Migadu-Flow: FLOW_OUT X-Migadu-Auth-User: cadance.vs49688.net Subject: [FFmpeg-devel] [PATCH v2 3/4] avformat/argo_cvg: remove trace logging 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: Signed-off-by: Zane van Iperen --- libavformat/argo_cvg.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/libavformat/argo_cvg.c b/libavformat/argo_cvg.c index 32247a06be..12465dcbcc 100644 --- a/libavformat/argo_cvg.c +++ b/libavformat/argo_cvg.c @@ -159,13 +159,9 @@ static int argo_cvg_read_header(AVFormatContext *s) if (ctx->header.size < 8) return AVERROR_INVALIDDATA; - av_log(s, AV_LOG_TRACE, "size = %u\n", ctx->header.size); - if ((ret = argo_cvg_read_checksum(s->pb, &ctx->header, &ctx->checksum)) < 0) return ret; - av_log(s, AV_LOG_TRACE, "checksum = %u\n", ctx->checksum); - par = st->codecpar; par->codec_type = AVMEDIA_TYPE_AUDIO; par->codec_id = AV_CODEC_ID_ADPCM_PSX; -- 2.36.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".