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_ENCODEMV_H
|
|
|
|
#define __INC_ENCODEMV_H
|
|
|
|
|
|
|
|
#include "onyx_int.h"
|
|
|
|
|
|
|
|
void vp8_write_mvprobs(VP8_COMP *);
|
|
|
|
void vp8_encode_motion_vector(vp8_writer *, const MV *, const MV_CONTEXT *);
|
2011-04-01 22:41:58 +02:00
|
|
|
void vp8_build_component_cost_table(int *mvcost[2], const MV_CONTEXT *mvc, int mvc_flag[2]);
|
2012-02-27 19:22:38 +01:00
|
|
|
#if CONFIG_HIGH_PRECISION_MV
|
|
|
|
void vp8_write_mvprobs_hp(VP8_COMP *);
|
|
|
|
void vp8_encode_motion_vector_hp(vp8_writer *, const MV *, const MV_CONTEXT_HP *);
|
|
|
|
void vp8_build_component_cost_table_hp(int *mvcost[2], const MV_CONTEXT_HP *mvc, int mvc_flag[2]);
|
|
|
|
#endif /* CONFIG_HIGH_PRECISION_MV */
|
2010-05-18 17:58:33 +02:00
|
|
|
|
|
|
|
#endif
|