diff options
author | Diego Biurrun <diego@biurrun.de> | 2011-04-29 19:05:40 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2011-04-29 20:00:53 +0200 |
commit | 2e15305b7088c9dfe1c8d29c248a9b49bcf0b0a3 (patch) | |
tree | 975487aadba34a6b14eea20ca282c60847fd7222 /libavcodec/wmadec.c | |
parent | 09cbf60f8eec65cc53c5931234476a9956cc27fd (diff) | |
download | ffmpeg-2e15305b7088c9dfe1c8d29c248a9b49bcf0b0a3.tar.gz |
Remove some disabled printf debug cruft.
Diffstat (limited to 'libavcodec/wmadec.c')
-rw-r--r-- | libavcodec/wmadec.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/libavcodec/wmadec.c b/libavcodec/wmadec.c index f6ed26cb59..479b34c3e0 100644 --- a/libavcodec/wmadec.c +++ b/libavcodec/wmadec.c @@ -178,15 +178,6 @@ static void wma_lsp_to_curve_init(WMACodecContext *s, int frame_len) s->lsp_pow_m_table2[i] = b - a; b = a; } -#if 0 - for(i=1;i<20;i++) { - float v, r1, r2; - v = 5.0 / i; - r1 = pow_m1_4(s, v); - r2 = pow(v,-0.25); - printf("%f^-0.25=%f e=%f\n", v, r1, r2 - r1); - } -#endif } /** |