]> git.sesse.net Git - x264/blobdiff - common/set.c
Improve the --b-adapt 1 algorithm
[x264] / common / set.c
index bbfd921d6d2e65c90bf3fb17975bac34df29272b..78535510307a720602f58a80cd9c727d579c5f87 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * set.c: quantization init
  *****************************************************************************
- * Copyright (C) 2005-2014 x264 project
+ * Copyright (C) 2005-2016 x264 project
  *
  * Authors: Loren Merritt <lorenm@u.washington.edu>
  *
@@ -23,7 +23,6 @@
  * For more information, contact us at licensing@x264.com.
  *****************************************************************************/
 
-#define _ISOC99_SOURCE
 #include "common.h"
 
 #define SHIFT(x,s) ((s)<=0 ? (x)<<-(s) : ((x)+(1<<((s)-1)))>>(s))