diff mbox series

[FFmpeg-devel,v2,3/4] avformat/argo_cvg: remove trace logging

Message ID 20220720144937.93133-3-zane@zanevaniperen.com
State Accepted
Commit 9054a99feacc0c8f646e2887ca333d01c31fc1b2
Headers show
Series [FFmpeg-devel,v2,1/4] avformat/argo_cvg: name unk{1, 2} fields correctly | expand

Checks

Context Check Description
yinshiyou/make_loongarch64 success Make finished
yinshiyou/make_fate_loongarch64 success Make fate finished
andriy/make_x86 success Make finished
andriy/make_fate_x86 success Make fate finished

Commit Message

Zane van Iperen July 20, 2022, 2:49 p.m. UTC
Signed-off-by: Zane van Iperen <zane@zanevaniperen.com>
---
 libavformat/argo_cvg.c | 4 ----
 1 file changed, 4 deletions(-)
diff mbox series

Patch

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;