Check of channels !=0 is right above. Signed-off-by: Paul B Mahol <one...@gmail.com> --- libavformat/nsvdec.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-)
diff --git a/libavformat/nsvdec.c b/libavformat/nsvdec.c index 531e273..632667c 100644 --- a/libavformat/nsvdec.c +++ b/libavformat/nsvdec.c @@ -630,10 +630,7 @@ null_chunk_retry: if (bps != 16) { av_dlog(s, "NSV AUDIO bit/sample != 16 (%d)!!!\n", bps); } - if(channels) - bps /= channels; // ??? - else - av_log(s, AV_LOG_WARNING, "Channels is 0\n"); + bps /= channels; // ??? if (bps == 8) st[NSV_ST_AUDIO]->codec->codec_id = AV_CODEC_ID_PCM_U8; samplerate /= 4;/* UGH ??? XXX */ -- 1.7.11.2 _______________________________________________ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-devel