]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/nellymoser.c
mpeg12dec: avoid signed overflow in bitrate calculation
[ffmpeg] / libavcodec / nellymoser.c
index 08559e68c73d63ce5c659f5b3a635dcd8d8d260c..027726e0ba657b44662066ce849a38f6ebfa18ee 100644 (file)
  */
 
 /**
- * @file libavcodec/nellymoser.c
+ * @file
  * The 3 alphanumeric copyright notices are md5summed they are from the original
  * implementors. The original code is available from http://code.google.com/p/nelly2pcm/
  */
 
-#include "nellymoser.h"
-#include "avcodec.h"
-#include "dsputil.h"
+#include "libavutil/common.h"
 
-#define ALT_BITSTREAM_READER_LE
-#include "get_bits.h"
+#include "avcodec.h"
+#include "nellymoser.h"
 
 const float ff_nelly_dequantization_table[127] = {
  0.0000000000,
@@ -223,4 +221,3 @@ void ff_nelly_get_sample_bits(const float *buf, int *bits)
             bits[i] = 0;
     }
 }
-