]> git.sesse.net Git - x264/blobdiff - encoder/me.h
Fix zeroing of mvr predictors in bskip blocks
[x264] / encoder / me.h
index 06e355b9cd902cf73f9e64af07a49e9352d73056..8b5baa01373fec649f4c2456257fc90f2e5aa24f 100644 (file)
@@ -41,11 +41,11 @@ typedef struct
     int      i_ref;
     const x264_weight_t *weight;
 
-    pixel *p_fref[6];
+    pixel *p_fref[12];
     pixel *p_fref_w;
     pixel *p_fenc[3];
     uint16_t *integral;
-    int      i_stride[2];
+    int      i_stride[3];
 
     ALIGNED_4( int16_t mvp[2] );
 
@@ -55,7 +55,8 @@ typedef struct
     ALIGNED_4( int16_t mv[2] );
 } ALIGNED_16( x264_me_t );
 
-typedef struct {
+typedef struct
+{
     int sad;
     int16_t mv[2];
 } mvsad_t;