Index: source/libvpx/vp8/decoder/treereader.h |
=================================================================== |
--- source/libvpx/vp8/decoder/treereader.h (revision 191025) |
+++ source/libvpx/vp8/decoder/treereader.h (working copy) |
@@ -9,18 +9,17 @@ |
*/ |
-#ifndef tree_reader_h |
-#define tree_reader_h 1 |
+#ifndef TREEREADER_H_ |
+#define TREEREADER_H_ |
#include "vp8/common/treecoder.h" |
- |
#include "dboolhuff.h" |
typedef BOOL_DECODER vp8_reader; |
#define vp8_read vp8dx_decode_bool |
#define vp8_read_literal vp8_decode_value |
-#define vp8_read_bit( R) vp8_read( R, vp8_prob_half) |
+#define vp8_read_bit(R) vp8_read(R, vp8_prob_half) |
/* Intent of tree data structure is to make decoding trivial. */ |
@@ -38,4 +37,4 @@ |
return -i; |
} |
-#endif /* tree_reader_h */ |
+#endif // TREEREADER_H_ |