[FFmpeg-devel] [PATCH v2 3/4] avformat/argo_cvg: remove trace logging
Zane van Iperen
zane at zanevaniperen.com
Wed Jul 20 17:49:36 EEST 2022
Signed-off-by: Zane van Iperen <zane at zanevaniperen.com>
---
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
More information about the ffmpeg-devel
mailing list