diff options
author | Diego Biurrun <diego@biurrun.de> | 2011-06-07 14:02:38 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2011-06-07 14:02:38 +0200 |
commit | 2d9570a304054c009b7f3fee60fff1299f25c7f5 (patch) | |
tree | 35605420f308f16153882dbc01e5e28b3e29abcb /libavcodec/vorbisdec.c | |
parent | e8f6bd4b88405526dea26daaf86e94509e7144df (diff) | |
download | ffmpeg-2d9570a304054c009b7f3fee60fff1299f25c7f5.tar.gz |
vorbisdec: Restore mistakenly removed debug output.
Diffstat (limited to 'libavcodec/vorbisdec.c')
-rw-r--r-- | libavcodec/vorbisdec.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libavcodec/vorbisdec.c b/libavcodec/vorbisdec.c index b969d45783..017102e777 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> #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]; |