OSDN Git Service

Merge commit '5d6a990c115850326711c2f5be4d9fd33f399616'
authorMichael Niedermayer <michaelni@gmx.at>
Mon, 11 Nov 2013 20:46:35 +0000 (21:46 +0100)
committerMichael Niedermayer <michaelni@gmx.at>
Mon, 11 Nov 2013 20:46:35 +0000 (21:46 +0100)
* commit '5d6a990c115850326711c2f5be4d9fd33f399616':
  mpegaudioenc: Remove broken integer-only quantization code path

Conflicts:
libavcodec/mpegaudioenc.c

Mostly not merged, the integer code works fine.

Merged-by: Michael Niedermayer <michaelni@gmx.at>
1  2 
libavcodec/mpegaudioenc.c

  #define FRAC_BITS   15   /* fractional bits for sb_samples and dct */
  #define WFRAC_BITS  14   /* fractional bits for window */
  
++/* define it to use floats in quantization (I don't like floats !) */
++#define USE_FLOATS
++
  #include "mpegaudio.h"
  #include "mpegaudiodsp.h"
+ #include "mpegaudiodata.h"
+ #include "mpegaudiotab.h"
  
  /* currently, cannot change these constants (need to modify
     quantization stage) */