2010-05-18 11:58:33 -04:00
|
|
|
/*
|
2010-09-09 08:16:39 -04:00
|
|
|
* Copyright (c) 2010 The WebM project authors. All Rights Reserved.
|
2010-05-18 11:58:33 -04:00
|
|
|
*
|
2010-06-18 12:39:21 -04:00
|
|
|
* Use of this source code is governed by a BSD-style license
|
2010-06-04 16:19:40 -04:00
|
|
|
* that can be found in the LICENSE file in the root of the source
|
|
|
|
* tree. An additional intellectual property rights grant can be found
|
2010-06-18 12:39:21 -04:00
|
|
|
* in the file PATENTS. All contributing project authors may
|
2010-06-04 16:19:40 -04:00
|
|
|
* be found in the AUTHORS file in the root of the source tree.
|
2010-05-18 11:58:33 -04:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
2012-12-23 07:20:10 -08:00
|
|
|
#include "./vpx_config.h"
|
2010-05-18 11:58:33 -04:00
|
|
|
#include "vpx_ports/x86.h"
|
2012-11-27 13:59:17 -08:00
|
|
|
#include "vp9/encoder/vp9_variance.h"
|
|
|
|
#include "vp9/encoder/vp9_onyx_int.h"
|
2012-11-29 14:07:21 -08:00
|
|
|
#include "vp9/encoder/x86/vp9_dct_mmx.h"
|
2010-05-18 11:58:33 -04:00
|
|
|
|
2012-11-18 12:33:18 -08:00
|
|
|
// TODO(jimbankoski) Consider rewriting the c to take the same values rather
|
|
|
|
// than going through these pointer conversions
|
2010-05-18 11:58:33 -04:00
|
|
|
#if HAVE_MMX
|
2012-10-30 12:58:42 -07:00
|
|
|
void vp9_short_fdct8x4_mmx(short *input, short *output, int pitch) {
|
|
|
|
vp9_short_fdct4x4_mmx(input, output, pitch);
|
|
|
|
vp9_short_fdct4x4_mmx(input + 4, output + 16, pitch);
|
2010-05-18 11:58:33 -04:00
|
|
|
}
|
|
|
|
|
2012-10-30 12:58:42 -07:00
|
|
|
void vp9_subtract_b_mmx_impl(unsigned char *z, int src_stride,
|
2010-05-18 11:58:33 -04:00
|
|
|
short *diff, unsigned char *predictor,
|
|
|
|
int pitch);
|
2012-10-30 12:58:42 -07:00
|
|
|
void vp9_subtract_b_mmx(BLOCK *be, BLOCKD *bd, int pitch) {
|
2012-07-13 15:21:29 -07:00
|
|
|
unsigned char *z = *(be->base_src) + be->src;
|
|
|
|
unsigned int src_stride = be->src_stride;
|
|
|
|
short *diff = &be->src_diff[0];
|
2013-04-15 09:31:27 -07:00
|
|
|
unsigned char *predictor = *(bd->base_dst) + bd->dst;
|
|
|
|
// TODO(jingning): The prototype function in c has been changed. Need to
|
|
|
|
// modify the mmx and sse versions.
|
2012-10-30 12:58:42 -07:00
|
|
|
vp9_subtract_b_mmx_impl(z, src_stride, diff, predictor, pitch);
|
2010-05-18 11:58:33 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if HAVE_SSE2
|
2012-10-30 12:58:42 -07:00
|
|
|
void vp9_subtract_b_sse2_impl(unsigned char *z, int src_stride,
|
2012-07-13 15:21:29 -07:00
|
|
|
short *diff, unsigned char *predictor,
|
|
|
|
int pitch);
|
2012-10-30 12:58:42 -07:00
|
|
|
void vp9_subtract_b_sse2(BLOCK *be, BLOCKD *bd, int pitch) {
|
2012-07-13 15:21:29 -07:00
|
|
|
unsigned char *z = *(be->base_src) + be->src;
|
|
|
|
unsigned int src_stride = be->src_stride;
|
|
|
|
short *diff = &be->src_diff[0];
|
2013-04-15 09:31:27 -07:00
|
|
|
unsigned char *predictor = *(bd->base_dst) + bd->dst;
|
|
|
|
// TODO(jingning): The prototype function in c has been changed. Need to
|
|
|
|
// modify the mmx and sse versions.
|
2012-10-30 12:58:42 -07:00
|
|
|
vp9_subtract_b_sse2_impl(z, src_stride, diff, predictor, pitch);
|
2010-10-18 14:15:15 -04:00
|
|
|
}
|
|
|
|
|
2010-05-18 11:58:33 -04:00
|
|
|
#endif
|