summaryrefslogtreecommitdiff
path: root/vp9/decoder/vp9_dboolhuff.h
diff options
context:
space:
mode:
Diffstat (limited to 'vp9/decoder/vp9_dboolhuff.h')
-rw-r--r--vp9/decoder/vp9_dboolhuff.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/vp9/decoder/vp9_dboolhuff.h b/vp9/decoder/vp9_dboolhuff.h
index a1c0c7956..c8c5c3b01 100644
--- a/vp9/decoder/vp9_dboolhuff.h
+++ b/vp9/decoder/vp9_dboolhuff.h
@@ -8,9 +8,9 @@
* be found in the AUTHORS file in the root of the source tree.
*/
-
#ifndef VP9_DECODER_VP9_DBOOLHUFF_H_
#define VP9_DECODER_VP9_DBOOLHUFF_H_
+
#include <stddef.h>
#include <limits.h>
#include "vpx_ports/config.h"
@@ -33,7 +33,7 @@ typedef struct {
unsigned int range;
} BOOL_DECODER;
-DECLARE_ALIGNED(16, extern const unsigned char, vp9_norm[256]);
+DECLARE_ALIGNED(16, extern const uint8_t, vp9_norm[256]);
int vp9_start_decode(BOOL_DECODER *br,
const unsigned char *source,
@@ -152,4 +152,4 @@ static int bool_error(BOOL_DECODER *br) {
extern int vp9_decode_unsigned_max(BOOL_DECODER *br, int max);
-#endif
+#endif // VP9_DECODER_VP9_DBOOLHUFF_H_