| Index: source/libvpx/vp8/decoder/dboolhuff.h
|
| diff --git a/source/libvpx/vp8/decoder/dboolhuff.h b/source/libvpx/vp8/decoder/dboolhuff.h
|
| index 51c5adc28abe97c1be9f916c0a50d8019fb12ef6..cc9eaaf4399bcb51e6e834fa442789401adeeac7 100644
|
| --- a/source/libvpx/vp8/decoder/dboolhuff.h
|
| +++ b/source/libvpx/vp8/decoder/dboolhuff.h
|
| @@ -15,7 +15,7 @@
|
| #include <stddef.h>
|
| #include <limits.h>
|
|
|
| -#include "vpx_config.h"
|
| +#include "./vpx_config.h"
|
| #include "vpx_ports/mem.h"
|
| #include "vpx/vp8dx.h"
|
| #include "vpx/vpx_integer.h"
|
| @@ -95,7 +95,7 @@ static int vp8dx_decode_bool(BOOL_DECODER *br, int probability) {
|
| return bit;
|
| }
|
|
|
| -static int vp8_decode_value(BOOL_DECODER *br, int bits)
|
| +static INLINE int vp8_decode_value(BOOL_DECODER *br, int bits)
|
| {
|
| int z = 0;
|
| int bit;
|
| @@ -108,7 +108,7 @@ static int vp8_decode_value(BOOL_DECODER *br, int bits)
|
| return z;
|
| }
|
|
|
| -static int vp8dx_bool_error(BOOL_DECODER *br)
|
| +static INLINE int vp8dx_bool_error(BOOL_DECODER *br)
|
| {
|
| /* Check if we have reached the end of the buffer.
|
| *
|
|
|