| Index: source/libvpx/vp8/encoder/rdopt.h
|
| ===================================================================
|
| --- source/libvpx/vp8/encoder/rdopt.h (revision 247498)
|
| +++ source/libvpx/vp8/encoder/rdopt.h (working copy)
|
| @@ -12,6 +12,10 @@
|
| #ifndef VP8_ENCODER_RDOPT_H_
|
| #define VP8_ENCODER_RDOPT_H_
|
|
|
| +#ifdef __cplusplus
|
| +extern "C" {
|
| +#endif
|
| +
|
| #define RDCOST(RM,DM,R,D) ( ((128+(R)*(RM)) >> 8) + (DM)*(D) )
|
|
|
| static void insertsortmv(int arr[], int len)
|
| @@ -130,4 +134,8 @@
|
| );
|
| void vp8_cal_sad(VP8_COMP *cpi, MACROBLOCKD *xd, MACROBLOCK *x, int recon_yoffset, int near_sadidx[]);
|
|
|
| +#ifdef __cplusplus
|
| +} // extern "C"
|
| +#endif
|
| +
|
| #endif // VP8_ENCODER_RDOPT_H_
|
|
|