diff options
author | Diego Biurrun <diego@biurrun.de> | 2014-02-08 02:59:58 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2014-07-17 09:07:10 -0700 |
commit | 2d60444331fca1910510038dd3817bea885c2367 (patch) | |
tree | 51ac937c7e051b03c7cc8e39b079a37f18dd09b0 /libavcodec/error_resilience.h | |
parent | a578b0407dc983aecd72028e1127062689b67089 (diff) | |
download | ffmpeg-2d60444331fca1910510038dd3817bea885c2367.tar.gz |
dsputil: Split motion estimation compare bits off into their own context
Diffstat (limited to 'libavcodec/error_resilience.h')
-rw-r--r-- | libavcodec/error_resilience.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/error_resilience.h b/libavcodec/error_resilience.h index 5171094a54..7b9ec1918e 100644 --- a/libavcodec/error_resilience.h +++ b/libavcodec/error_resilience.h @@ -23,7 +23,7 @@ #include <stdint.h> #include "avcodec.h" -#include "dsputil.h" +#include "me_cmp.h" #include "thread.h" ///< current MB is the first after a resync marker @@ -52,7 +52,7 @@ typedef struct ERPicture { typedef struct ERContext { AVCodecContext *avctx; - DSPContext *dsp; + MECmpContext *mecc; int *mb_index2xy; int mb_num; |