2010-05-18 17:58:33 +02:00
|
|
|
/*
|
2010-09-09 14:16:39 +02:00
|
|
|
* Copyright (c) 2010 The WebM project authors. All Rights Reserved.
|
2010-05-18 17:58:33 +02:00
|
|
|
*
|
2010-06-18 18:39:21 +02:00
|
|
|
* Use of this source code is governed by a BSD-style license
|
2010-06-04 22:19:40 +02: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 18:39:21 +02:00
|
|
|
* in the file PATENTS. All contributing project authors may
|
2010-06-04 22:19:40 +02:00
|
|
|
* be found in the AUTHORS file in the root of the source tree.
|
2010-05-18 17:58:33 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef __INC_ENCODEMB_H
|
|
|
|
#define __INC_ENCODEMB_H
|
|
|
|
|
|
|
|
#include "vpx_ports/config.h"
|
|
|
|
#include "block.h"
|
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
typedef struct {
|
|
|
|
MB_PREDICTION_MODE mode;
|
|
|
|
MV_REFERENCE_FRAME ref_frame;
|
|
|
|
MV_REFERENCE_FRAME second_ref_frame;
|
2012-06-26 01:23:58 +02:00
|
|
|
#if CONFIG_PRED_FILTER
|
2012-07-14 00:21:29 +02:00
|
|
|
int pred_filter_flag;
|
2012-06-26 01:23:58 +02:00
|
|
|
#endif
|
|
|
|
} MODE_DEFINITION;
|
|
|
|
|
|
|
|
|
2010-05-18 17:58:33 +02:00
|
|
|
#if CONFIG_RUNTIME_CPU_DETECT
|
|
|
|
#define ENCODEMB_INVOKE(ctx,fn) (ctx)->fn
|
|
|
|
#else
|
2012-10-31 22:40:53 +01:00
|
|
|
#define ENCODEMB_INVOKE(ctx,fn) vp9_encodemb_##fn
|
2010-05-18 17:58:33 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#include "onyx_int.h"
|
2012-10-31 22:40:53 +01:00
|
|
|
struct VP9_ENCODER_RTCD;
|
|
|
|
void vp9_encode_inter16x16(const struct VP9_ENCODER_RTCD *rtcd, MACROBLOCK *x);
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2012-10-30 20:58:42 +01:00
|
|
|
void vp9_transform_mbuv_4x4(MACROBLOCK *x);
|
|
|
|
void vp9_transform_mby_4x4(MACROBLOCK *x);
|
2011-08-24 20:42:26 +02:00
|
|
|
|
2012-10-31 22:40:53 +01:00
|
|
|
void vp9_optimize_mby_4x4(MACROBLOCK *x, const struct VP9_ENCODER_RTCD *rtcd);
|
|
|
|
void vp9_optimize_mbuv_4x4(MACROBLOCK *x, const struct VP9_ENCODER_RTCD *rtcd);
|
|
|
|
void vp9_encode_inter16x16y(const struct VP9_ENCODER_RTCD *rtcd, MACROBLOCK *x);
|
2011-02-14 23:18:18 +01:00
|
|
|
|
2012-10-30 20:58:42 +01:00
|
|
|
void vp9_transform_mb_8x8(MACROBLOCK *mb);
|
|
|
|
void vp9_transform_mby_8x8(MACROBLOCK *x);
|
|
|
|
void vp9_transform_mbuv_8x8(MACROBLOCK *x);
|
|
|
|
void vp9_build_dcblock_8x8(MACROBLOCK *b);
|
2012-10-31 22:40:53 +01:00
|
|
|
void vp9_optimize_mby_8x8(MACROBLOCK *x, const struct VP9_ENCODER_RTCD *rtcd);
|
|
|
|
void vp9_optimize_mbuv_8x8(MACROBLOCK *x, const struct VP9_ENCODER_RTCD *rtcd);
|
2011-02-14 23:18:18 +01:00
|
|
|
|
2012-10-30 20:58:42 +01:00
|
|
|
void vp9_transform_mb_16x16(MACROBLOCK *mb);
|
|
|
|
void vp9_transform_mby_16x16(MACROBLOCK *x);
|
2012-10-31 22:40:53 +01:00
|
|
|
void vp9_optimize_mby_16x16(MACROBLOCK *x, const struct VP9_ENCODER_RTCD *rtcd);
|
2012-08-03 02:03:14 +02:00
|
|
|
|
2012-10-30 20:58:42 +01:00
|
|
|
void vp9_subtract_4b_c(BLOCK *be, BLOCKD *bd, int pitch);
|
2011-02-14 23:18:18 +01:00
|
|
|
|
2012-08-21 02:45:36 +02:00
|
|
|
#if CONFIG_SUPERBLOCKS
|
2012-10-30 20:58:42 +01:00
|
|
|
void vp9_subtract_mbuv_s_c(short *diff, const unsigned char *usrc,
|
2012-08-21 02:45:36 +02:00
|
|
|
const unsigned char *vsrc, int src_stride,
|
|
|
|
const unsigned char *upred,
|
|
|
|
const unsigned char *vpred, int dst_stride);
|
2012-10-30 20:58:42 +01:00
|
|
|
void vp9_subtract_mby_s_c(short *diff, const unsigned char *src,
|
2012-08-21 02:45:36 +02:00
|
|
|
int src_stride, const unsigned char *pred,
|
|
|
|
int dst_stride);
|
|
|
|
#endif
|
|
|
|
|
2010-05-18 17:58:33 +02:00
|
|
|
#endif
|