avformat/argo_cvg: remove trace logging

Reviewed-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Signed-off-by: Zane van Iperen <zane@zanevaniperen.com>
pull/388/head
Zane van Iperen 2 years ago
parent 23f0c55ff8
commit 9054a99fea
No known key found for this signature in database
GPG Key ID: 68616B2D8AC4DCC5
  1. 4
      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;

Loading…
Cancel
Save