Commit 73ae7715 authored by alex's avatar alex

Support 44.1kHz audio. Acked by Benjamin

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@11024 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 77e64818
......@@ -379,6 +379,8 @@ static int decode_tag(AVCodecContext * avctx,
blocks = 2; break;
case 256: // 22050Hz
blocks = 4; break;
case 512: // 44100Hz
blocks = 8; break;
default:
av_log(avctx, AV_LOG_ERROR, "Tag size %d unknown, report sample!\n", buf_size);
return buf_size;
......
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