| Index: source/libvpx/vp8/decoder/error_concealment.c
|
| ===================================================================
|
| --- source/libvpx/vp8/decoder/error_concealment.c (revision 191025)
|
| +++ source/libvpx/vp8/decoder/error_concealment.c (working copy)
|
| @@ -8,14 +8,14 @@
|
| * be found in the AUTHORS file in the root of the source tree.
|
| */
|
|
|
| +#include <assert.h>
|
| +
|
| #include "error_concealment.h"
|
| #include "onyxd_int.h"
|
| #include "decodemv.h"
|
| #include "vpx_mem/vpx_mem.h"
|
| #include "vp8/common/findnearmv.h"
|
|
|
| -#include <assert.h>
|
| -
|
| #define MIN(x,y) (((x)<(y))?(x):(y))
|
| #define MAX(x,y) (((x)>(y))?(x):(y))
|
|
|
|
|