On 06/07/2011 08:23 AM, Diego Biurrun wrote:

> ---
>  libavcodec/vorbisdec.c |    4 ++++
>  1 files changed, 4 insertions(+), 0 deletions(-)
> 
> diff --git a/libavcodec/vorbisdec.c b/libavcodec/vorbisdec.c
> index b969d45..017102e 100644
> --- a/libavcodec/vorbisdec.c
> +++ b/libavcodec/vorbisdec.c
> @@ -20,6 +20,7 @@
>   * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 
> USA
>   */
>  
> +#include <inttypes.h>
>  #include <math.h>

hmmm. this seems unrelated.

>  #define ALT_BITSTREAM_READER_LE
> @@ -1089,6 +1090,9 @@ static int vorbis_floor0_decode(vorbis_context *vc,
>              for (i = 0; i < order; i++)
>                  lsp[i] = 2.0f * cos(lsp[i]);
>  
> +            av_dlog(NULL, "floor0 synth: map_size = %"PRIu32"; m = %d; wstep 
> = %f\n",
> +                    vf->map_size[blockflag], order, wstep);
> +
>              i = 0;
>              while (i < vf->map_size[blockflag]) {
>                  int j, iter_cond = vf->map[blockflag][i];


_______________________________________________
libav-devel mailing list
[email protected]
https://lists.libav.org/mailman/listinfo/libav-devel

Reply via email to