]> git.sesse.net Git - x264/blobdiff - x264.h
* common/i386/i386inc.asm: got PIC to work for real on OS X x86.
[x264] / x264.h
diff --git a/x264.h b/x264.h
index a33e75a9962cac4d8a9a89a24e22514fec204179..42c9e679c89542ab0dd61ba6de99d779b9cf6419 100644 (file)
--- a/x264.h
+++ b/x264.h
@@ -35,7 +35,7 @@
 
 #include <stdarg.h>
 
-#define X264_BUILD 41
+#define X264_BUILD 44
 
 /* x264_t:
  *      opaque handler for decoder and encoder */
@@ -196,10 +196,13 @@ typedef struct
         int          i_me_range; /* integer pixel motion estimation search range (from predicted mv) */
         int          i_mv_range; /* maximum length of a mv (in pixels) */
         int          i_subpel_refine; /* subpixel motion estimation quality */
+        int          b_bidir_me; /* jointly optimize both MVs in B-frames */
         int          b_chroma_me; /* chroma ME for subpel and mode decision in P-frames */
         int          b_bframe_rdo; /* RD based mode decision for B-frames */
         int          b_mixed_references; /* allow each mb partition in P-frames to have it's own reference number */
         int          i_trellis;  /* trellis RD quantization */
+        int          b_fast_pskip; /* early SKIP detection on P-frames */
+        int          i_noise_reduction; /* adaptive pseudo-deadzone */
 
         int          b_psnr;    /* Do we compute PSNR stats (save a few % of cpu) */
     } analyse;