#include "common.h"
-#include <stdarg.h>
#include <ctype.h>
#if HAVE_MALLOC_H
#endif
};
+typedef struct
+{
+ int sad;
+ int16_t mv[2];
+} mvsad_t;
+
// included at the end because it needs x264_t
#include "macroblock.h"
*****************************************************************************/
#include "common.h"
-#include "cpu.h"
#if HAVE_POSIXTHREAD && SYS_LINUX
#include <sched.h>
*****************************************************************************/
#include "common.h"
-#include "encoder/me.h"
#define MC_LUMA(list,p) \
h->mc.mc_luma( &h->mb.pic.p_fdec[p][4*y*FDEC_STRIDE+4*x], FDEC_STRIDE, \
* For more information, contact us at licensing@x264.com.
*****************************************************************************/
-#include <stdlib.h>
-#include <stdio.h>
-#include <string.h>
-#include <stdint.h>
-#include <stdarg.h>
-
-#include "x264.h"
#include "common/common.h"
-#include "common/mc.h"
#include "mc.h"
#include "ppccommon.h"
#include "common/common.h"
#include "ppccommon.h"
-#include "../predict.h"
#if !HIGH_BIT_DEPTH
/***********************************************************************
/*****************************************************************************
- * quant.c: ppc quantization
+ * quant.h: ppc quantization
*****************************************************************************
* Copyright (C) 2007-2016 x264 project
*
* For more information, contact us at licensing@x264.com.
*****************************************************************************/
-#include <stdlib.h>
-#include <stdio.h>
-#include <string.h>
-
#include "common/common.h"
#include "mc.h"
ALIGNED_4( int16_t mv[2] );
} ALIGNED_16( x264_me_t );
-typedef struct
-{
- int sad;
- int16_t mv[2];
-} mvsad_t;
-
void x264_me_search_ref( x264_t *h, x264_me_t *m, int16_t (*mvc)[2], int i_mvc, int *p_fullpel_thresh );
#define x264_me_search( h, m, mvc, i_mvc )\
x264_me_search_ref( h, m, mvc, i_mvc, NULL )