Commit 8e1b957c authored by Alex Beregszaszi's avatar Alex Beregszaszi

Support 44.1kHz audio. Acked by Benjamin

Originally committed as revision 11024 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 8ef4de4e
......@@ -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