diff options
Diffstat (limited to 'contrib/ffmpeg/libavcodec/wmadata.h')
-rw-r--r-- | contrib/ffmpeg/libavcodec/wmadata.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/contrib/ffmpeg/libavcodec/wmadata.h b/contrib/ffmpeg/libavcodec/wmadata.h index 31ed89bf0..aa2a120a2 100644 --- a/contrib/ffmpeg/libavcodec/wmadata.h +++ b/contrib/ffmpeg/libavcodec/wmadata.h @@ -24,6 +24,12 @@ * Various WMA tables. */ +#ifndef FFMPEG_WMADATA_H +#define FFMPEG_WMADATA_H + +#include <stdint.h> +#include "wma.h" + static const uint16_t wma_critical_freqs[25] = { 100, 200, 300, 400, 510, 630, 770, 920, 1080, 1270, 1480, 1720, 2000, 2320, 2700, 3150, @@ -1431,3 +1437,5 @@ static const CoefVLCTable coef_vlcs[6] = { sizeof(coef5_huffbits), sizeof(levels5)/2, coef5_huffcodes, coef5_huffbits, levels5, }, }; + +#endif /* FFMPEG_WMADATA_H */ |