summaryrefslogtreecommitdiff
path: root/libavformat
diff options
context:
space:
mode:
authorZane van Iperen <zane@zanevaniperen.com>2022-07-21 00:47:30 +1000
committerZane van Iperen <zane@zanevaniperen.com>2022-07-24 19:23:57 +1000
commit9054a99feacc0c8f646e2887ca333d01c31fc1b2 (patch)
treea839d52d5412ea442fdd22e5b987f24a0d9b38a8 /libavformat
parent23f0c55ff86c65b15bdfa14884f3201334e043c4 (diff)
avformat/argo_cvg: remove trace logging
Reviewed-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com> Signed-off-by: Zane van Iperen <zane@zanevaniperen.com>
Diffstat (limited to 'libavformat')
-rw-r--r--libavformat/argo_cvg.c4
1 files changed, 0 insertions, 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;