Commit b9e7efc0 authored by michael's avatar michael

be less noisy


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@8107 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 073c4e07
...@@ -317,7 +317,7 @@ int put_wav_header(ByteIOContext *pb, AVCodecContext *enc) ...@@ -317,7 +317,7 @@ int put_wav_header(ByteIOContext *pb, AVCodecContext *enc)
} else { } else {
bps = 16; bps = 16;
} }
if(bps != enc->bits_per_sample){ if(bps != enc->bits_per_sample && enc->bits_per_sample){
av_log(enc, AV_LOG_WARNING, "requested bits_per_sample (%d) and actually stored (%d) differ\n", enc->bits_per_sample, bps); av_log(enc, AV_LOG_WARNING, "requested bits_per_sample (%d) and actually stored (%d) differ\n", enc->bits_per_sample, bps);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment