<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=Content-Type content="text/html; charset=iso-8859-1">
<META content="MSHTML 6.00.2900.2769" name=GENERATOR>
<STYLE></STYLE>
</HEAD>
<BODY bgColor=#ffffff>
<DIV><FONT face=Arial size=4>I am wondering if&nbsp;buffer size for my decoding 
to pcm can be predicted dependably as follows.&nbsp; So far, the one problem I 
have had is when I have played a file of only about 5k.&nbsp; The buffer was a 
little less than 10% too small.&nbsp; I "solved" that by padding the result with 
an extra 20 percent.&nbsp; However, I have been told that I should be able to 
rely on the value of ov_pcm_total.</FONT></DIV>
<DIV><FONT face=Arial size=4></FONT>&nbsp;</DIV>
<DIV><STRONG><FONT face=Arial>&nbsp;char* m_pDataVorbis;<BR>&nbsp;. . 
.<BR>&nbsp;OggVorbis_File vf;<BR>&nbsp;. . .<BR>&nbsp;vorbis_info* vi = 
ov_info(&amp;vf,-1);<BR>&nbsp;. . .<BR>int pcmTotal = ov_pcm_total(&amp;vf, 
-1);<BR>m_pDataVorbis =&nbsp; new char[pcmTotal * vi-&gt;channels * 
2];</FONT></STRONG></DIV></BODY></HTML>