]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/nellymoser.c
d3d11va: make av_d3d11va_alloc_context() available at all times
[ffmpeg] / libavcodec / nellymoser.c
index d867e9e3785a08925f87f934ac8e873b2899b27b..0740c75a0f09873690a4c047e1ef6ea2b72cae70 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 "libavutil/random.h"
 #include "avcodec.h"
-#include "dsputil.h"
 
-#define ALT_BITSTREAM_READER_LE
-#include "bitstream.h"
+#define BITSTREAM_READER_LE
+#include "get_bits.h"
 
 const float ff_nelly_dequantization_table[127] = {
  0.0000000000,
@@ -224,4 +222,3 @@ void ff_nelly_get_sample_bits(const float *buf, int *bits)
             bits[i] = 0;
     }
 }
-