Browse Source

Reduce the loglevel on a log message in the Nellymoser decoder. Related to Roundup 447.

Originally committed as revision 14348 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Benjamin Larsson 17 years ago
parent
commit
20455a335b
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/nellymoserdec.c

+ 1
- 1
libavcodec/nellymoserdec.c View File

@@ -174,7 +174,7 @@ static int decode_tag(AVCodecContext * avctx,
case 512: // 44100Hz
blocks = 8; break;
default:
av_log(avctx, AV_LOG_ERROR, "Tag size %d unknown, report sample!\n", buf_size);
av_log(avctx, AV_LOG_DEBUG, "Tag size %d.\n", buf_size);
return buf_size;
}



Loading…
Cancel
Save