vp10/ -> av1/
Change-Id: Ia055d03656ad1580447eced8687949583fdf4089
This commit is contained in:
Родитель
69f014211c
Коммит
cfea7dd766
|
@ -26,7 +26,7 @@
|
|||
#include "aom/vp8cx.h"
|
||||
#include "aom/vpx_encoder.h"
|
||||
#include "aom_mem/vpx_mem.h"
|
||||
#include "vp10/common/onyxc_int.h"
|
||||
#include "av1/common/onyxc_int.h"
|
||||
|
||||
#ifdef __MINGW32__
|
||||
#define strtok_r strtok_s
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
#include "aom_ports/mem.h"
|
||||
#include "aom_scale/yv12config.h"
|
||||
#if CONFIG_VPX_HIGHBITDEPTH
|
||||
#include "vp10/common/common.h"
|
||||
#include "av1/common/common.h"
|
||||
#endif
|
||||
|
||||
static void extend_plane(uint8_t *const src, int src_stride, int width,
|
||||
|
|
|
@ -11,11 +11,11 @@
|
|||
#include "./vpx_config.h"
|
||||
#include "aom_mem/vpx_mem.h"
|
||||
|
||||
#include "vp10/common/alloccommon.h"
|
||||
#include "vp10/common/blockd.h"
|
||||
#include "vp10/common/entropymode.h"
|
||||
#include "vp10/common/entropymv.h"
|
||||
#include "vp10/common/onyxc_int.h"
|
||||
#include "av1/common/alloccommon.h"
|
||||
#include "av1/common/blockd.h"
|
||||
#include "av1/common/entropymode.h"
|
||||
#include "av1/common/entropymv.h"
|
||||
#include "av1/common/onyxc_int.h"
|
||||
|
||||
void vp10_set_mb_mi(VP10_COMMON *cm, int width, int height) {
|
||||
const int aligned_width = ALIGN_POWER_OF_TWO(width, MI_SIZE_LOG2);
|
|
@ -13,7 +13,7 @@
|
|||
|
||||
#include "./vp10_rtcd.h"
|
||||
#include "./vpx_config.h"
|
||||
#include "vp10/common/common.h"
|
||||
#include "av1/common/common.h"
|
||||
|
||||
static int16_t sinpi_1_9 = 0x14a3;
|
||||
static int16_t sinpi_2_9 = 0x26c9;
|
|
@ -13,7 +13,7 @@
|
|||
|
||||
#include "./vp10_rtcd.h"
|
||||
#include "./vpx_config.h"
|
||||
#include "vp10/common/common.h"
|
||||
#include "av1/common/common.h"
|
||||
|
||||
static int16_t cospi_2_64 = 16305;
|
||||
static int16_t cospi_4_64 = 16069;
|
|
@ -8,7 +8,7 @@
|
|||
* be found in the AUTHORS file in the root of the source tree.
|
||||
*/
|
||||
|
||||
#include "vp10/common/blockd.h"
|
||||
#include "av1/common/blockd.h"
|
||||
|
||||
PREDICTION_MODE vp10_left_block_mode(const MODE_INFO *cur_mi,
|
||||
const MODE_INFO *left_mi, int b) {
|
|
@ -17,16 +17,16 @@
|
|||
#include "aom_ports/mem.h"
|
||||
#include "aom_scale/yv12config.h"
|
||||
|
||||
#include "vp10/common/common_data.h"
|
||||
#include "vp10/common/entropy.h"
|
||||
#include "vp10/common/entropymode.h"
|
||||
#include "vp10/common/mv.h"
|
||||
#include "av1/common/common_data.h"
|
||||
#include "av1/common/entropy.h"
|
||||
#include "av1/common/entropymode.h"
|
||||
#include "av1/common/mv.h"
|
||||
#if CONFIG_AOM_QM
|
||||
#include "vp10/common/quant_common.h"
|
||||
#include "av1/common/quant_common.h"
|
||||
#endif
|
||||
#include "vp10/common/scale.h"
|
||||
#include "vp10/common/seg_common.h"
|
||||
#include "vp10/common/tile_common.h"
|
||||
#include "av1/common/scale.h"
|
||||
#include "av1/common/seg_common.h"
|
||||
#include "av1/common/tile_common.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
|
@ -3,7 +3,7 @@ Copyright (c) 2016 Cisco Systems
|
|||
(Replace with proper AOM header)
|
||||
*/
|
||||
|
||||
#include "vp10/common/clpf.h"
|
||||
#include "av1/common/clpf.h"
|
||||
|
||||
// Apply the filter on a single block
|
||||
static void clpf_block(const uint8_t *src, uint8_t *dst, int sstride,
|
|
@ -6,7 +6,7 @@ Copyright (c) 2016, Cisco Systems
|
|||
#ifndef VP10_COMMON_CLPF_H_
|
||||
#define VP10_COMMON_CLPF_H_
|
||||
|
||||
#include "vp10/common/reconinter.h"
|
||||
#include "av1/common/reconinter.h"
|
||||
|
||||
// Configuration
|
||||
#define CLPF_ALLOW_PIXEL_PARALLELISM \
|
|
@ -11,7 +11,7 @@
|
|||
#ifndef VP10_COMMON_COMMON_DATA_H_
|
||||
#define VP10_COMMON_COMMON_DATA_H_
|
||||
|
||||
#include "vp10/common/enums.h"
|
||||
#include "av1/common/enums.h"
|
||||
#include "aom/vpx_integer.h"
|
||||
#include "aom_dsp/vpx_dsp_common.h"
|
||||
|
|
@ -10,8 +10,8 @@
|
|||
|
||||
#include <stdio.h>
|
||||
|
||||
#include "vp10/common/blockd.h"
|
||||
#include "vp10/common/onyxc_int.h"
|
||||
#include "av1/common/blockd.h"
|
||||
#include "av1/common/onyxc_int.h"
|
||||
|
||||
static void log_frame_info(VP10_COMMON *cm, const char *str, FILE *f) {
|
||||
fprintf(f, "%s", str);
|
|
@ -13,10 +13,10 @@
|
|||
|
||||
#include "./vpx_scale_rtcd.h"
|
||||
#include "aom/vpx_integer.h"
|
||||
#include "vp10/common/dering.h"
|
||||
#include "vp10/common/onyxc_int.h"
|
||||
#include "vp10/common/reconinter.h"
|
||||
#include "vp10/common/od_dering.h"
|
||||
#include "av1/common/dering.h"
|
||||
#include "av1/common/onyxc_int.h"
|
||||
#include "av1/common/reconinter.h"
|
||||
#include "av1/common/od_dering.h"
|
||||
|
||||
|
||||
int compute_level_from_index(int global_level, int gi) {
|
|
@ -1,8 +1,8 @@
|
|||
#ifndef VP10_COMMON_DERING_H_
|
||||
#define VP10_COMMON_DERING_H_
|
||||
|
||||
#include "vp10/common/od_dering.h"
|
||||
#include "vp10/common/onyxc_int.h"
|
||||
#include "av1/common/od_dering.h"
|
||||
#include "av1/common/onyxc_int.h"
|
||||
#include "aom/vpx_integer.h"
|
||||
#include "./vpx_config.h"
|
||||
#include "aom_ports/mem.h"
|
|
@ -8,10 +8,10 @@
|
|||
* be found in the AUTHORS file in the root of the source tree.
|
||||
*/
|
||||
|
||||
#include "vp10/common/entropy.h"
|
||||
#include "vp10/common/blockd.h"
|
||||
#include "vp10/common/onyxc_int.h"
|
||||
#include "vp10/common/entropymode.h"
|
||||
#include "av1/common/entropy.h"
|
||||
#include "av1/common/blockd.h"
|
||||
#include "av1/common/onyxc_int.h"
|
||||
#include "av1/common/entropymode.h"
|
||||
#include "aom_mem/vpx_mem.h"
|
||||
#include "aom/vpx_integer.h"
|
||||
|
|
@ -14,8 +14,8 @@
|
|||
#include "aom/vpx_integer.h"
|
||||
#include "aom_dsp/prob.h"
|
||||
|
||||
#include "vp10/common/common.h"
|
||||
#include "vp10/common/enums.h"
|
||||
#include "av1/common/common.h"
|
||||
#include "av1/common/enums.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
|
@ -10,8 +10,8 @@
|
|||
|
||||
#include "aom_mem/vpx_mem.h"
|
||||
|
||||
#include "vp10/common/onyxc_int.h"
|
||||
#include "vp10/common/seg_common.h"
|
||||
#include "av1/common/onyxc_int.h"
|
||||
#include "av1/common/seg_common.h"
|
||||
|
||||
const vpx_prob vp10_kf_y_mode_prob[INTRA_MODES][INTRA_MODES][INTRA_MODES - 1] =
|
||||
{ {
|
|
@ -11,10 +11,10 @@
|
|||
#ifndef VP10_COMMON_ENTROPYMODE_H_
|
||||
#define VP10_COMMON_ENTROPYMODE_H_
|
||||
|
||||
#include "vp10/common/entropy.h"
|
||||
#include "vp10/common/entropymv.h"
|
||||
#include "vp10/common/filter.h"
|
||||
#include "vp10/common/seg_common.h"
|
||||
#include "av1/common/entropy.h"
|
||||
#include "av1/common/entropymv.h"
|
||||
#include "av1/common/filter.h"
|
||||
#include "av1/common/seg_common.h"
|
||||
#include "aom_dsp/vpx_filter.h"
|
||||
|
||||
#ifdef __cplusplus
|
|
@ -8,8 +8,8 @@
|
|||
* be found in the AUTHORS file in the root of the source tree.
|
||||
*/
|
||||
|
||||
#include "vp10/common/onyxc_int.h"
|
||||
#include "vp10/common/entropymv.h"
|
||||
#include "av1/common/onyxc_int.h"
|
||||
#include "av1/common/entropymv.h"
|
||||
|
||||
// Integer pel reference mv threshold for use of high-precision 1/8 mv
|
||||
#define COMPANDED_MVREF_THRESH 8
|
|
@ -15,7 +15,7 @@
|
|||
|
||||
#include "aom_dsp/prob.h"
|
||||
|
||||
#include "vp10/common/mv.h"
|
||||
#include "av1/common/mv.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
#include <assert.h>
|
||||
|
||||
#include "vp10/common/filter.h"
|
||||
#include "av1/common/filter.h"
|
||||
|
||||
DECLARE_ALIGNED(256, static const InterpKernel,
|
||||
bilinear_filters[SUBPEL_SHIFTS]) = {
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
#include <assert.h>
|
||||
|
||||
#include "vp10/common/frame_buffers.h"
|
||||
#include "av1/common/frame_buffers.h"
|
||||
#include "aom_mem/vpx_mem.h"
|
||||
|
||||
int vp10_alloc_internal_frame_buffers(InternalFrameBufferList *list) {
|
|
@ -12,8 +12,8 @@
|
|||
|
||||
#include "./vp10_rtcd.h"
|
||||
#include "./vpx_dsp_rtcd.h"
|
||||
#include "vp10/common/blockd.h"
|
||||
#include "vp10/common/idct.h"
|
||||
#include "av1/common/blockd.h"
|
||||
#include "av1/common/idct.h"
|
||||
#include "aom_dsp/inv_txfm.h"
|
||||
#include "aom_ports/mem.h"
|
||||
|
|
@ -14,8 +14,8 @@
|
|||
#include <assert.h>
|
||||
|
||||
#include "./vpx_config.h"
|
||||
#include "vp10/common/common.h"
|
||||
#include "vp10/common/enums.h"
|
||||
#include "av1/common/common.h"
|
||||
#include "av1/common/enums.h"
|
||||
#include "aom_dsp/inv_txfm.h"
|
||||
#include "aom_dsp/txfm_common.h"
|
||||
#include "aom_ports/mem.h"
|
|
@ -10,14 +10,14 @@
|
|||
|
||||
#include "./vpx_config.h"
|
||||
#include "./vpx_dsp_rtcd.h"
|
||||
#include "vp10/common/loopfilter.h"
|
||||
#include "vp10/common/onyxc_int.h"
|
||||
#include "vp10/common/reconinter.h"
|
||||
#include "av1/common/loopfilter.h"
|
||||
#include "av1/common/onyxc_int.h"
|
||||
#include "av1/common/reconinter.h"
|
||||
#include "aom_dsp/vpx_dsp_common.h"
|
||||
#include "aom_mem/vpx_mem.h"
|
||||
#include "aom_ports/mem.h"
|
||||
|
||||
#include "vp10/common/seg_common.h"
|
||||
#include "av1/common/seg_common.h"
|
||||
|
||||
// 64 bit masks for left transform size. Each 1 represents a position where
|
||||
// we should apply a loop filter across the left border of an 8x8 block
|
|
@ -14,8 +14,8 @@
|
|||
#include "aom_ports/mem.h"
|
||||
#include "./vpx_config.h"
|
||||
|
||||
#include "vp10/common/blockd.h"
|
||||
#include "vp10/common/seg_common.h"
|
||||
#include "av1/common/blockd.h"
|
||||
#include "av1/common/seg_common.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
|
@ -13,9 +13,9 @@
|
|||
|
||||
#include "./vpx_config.h"
|
||||
#include "./vp10_rtcd.h"
|
||||
#include "vp10/common/common.h"
|
||||
#include "vp10/common/blockd.h"
|
||||
#include "vp10/common/idct.h"
|
||||
#include "av1/common/common.h"
|
||||
#include "av1/common/blockd.h"
|
||||
#include "av1/common/idct.h"
|
||||
#include "aom_dsp/mips/inv_txfm_dspr2.h"
|
||||
#include "aom_dsp/txfm_common.h"
|
||||
#include "aom_ports/mem.h"
|
|
@ -13,9 +13,9 @@
|
|||
|
||||
#include "./vpx_config.h"
|
||||
#include "./vp10_rtcd.h"
|
||||
#include "vp10/common/common.h"
|
||||
#include "vp10/common/blockd.h"
|
||||
#include "vp10/common/idct.h"
|
||||
#include "av1/common/common.h"
|
||||
#include "av1/common/blockd.h"
|
||||
#include "av1/common/idct.h"
|
||||
#include "aom_dsp/mips/inv_txfm_dspr2.h"
|
||||
#include "aom_dsp/txfm_common.h"
|
||||
#include "aom_ports/mem.h"
|
|
@ -13,8 +13,8 @@
|
|||
|
||||
#include "./vpx_config.h"
|
||||
#include "./vp10_rtcd.h"
|
||||
#include "vp10/common/common.h"
|
||||
#include "vp10/common/blockd.h"
|
||||
#include "av1/common/common.h"
|
||||
#include "av1/common/blockd.h"
|
||||
#include "aom_dsp/mips/inv_txfm_dspr2.h"
|
||||
#include "aom_dsp/txfm_common.h"
|
||||
#include "aom_ports/mem.h"
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
#include <assert.h>
|
||||
|
||||
#include "vp10/common/enums.h"
|
||||
#include "av1/common/enums.h"
|
||||
#include "aom_dsp/mips/inv_txfm_msa.h"
|
||||
|
||||
void vp10_iht16x16_256_add_msa(const int16_t *input, uint8_t *dst,
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
#include <assert.h>
|
||||
|
||||
#include "vp10/common/enums.h"
|
||||
#include "av1/common/enums.h"
|
||||
#include "aom_dsp/mips/inv_txfm_msa.h"
|
||||
|
||||
void vp10_iht4x4_16_add_msa(const int16_t *input, uint8_t *dst,
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
#include <assert.h>
|
||||
|
||||
#include "vp10/common/enums.h"
|
||||
#include "av1/common/enums.h"
|
||||
#include "aom_dsp/mips/inv_txfm_msa.h"
|
||||
|
||||
void vp10_iht8x8_64_add_msa(const int16_t *input, uint8_t *dst,
|
|
@ -13,7 +13,7 @@
|
|||
|
||||
#include "aom/vpx_integer.h"
|
||||
|
||||
#include "vp10/common/common.h"
|
||||
#include "av1/common/common.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
|
@ -9,7 +9,7 @@
|
|||
* be found in the AUTHORS file in the root of the source tree.
|
||||
*/
|
||||
|
||||
#include "vp10/common/mvref_common.h"
|
||||
#include "av1/common/mvref_common.h"
|
||||
|
||||
// This function searches the neighbourhood of a given MB/SB
|
||||
// to try and find candidate reference vectors.
|
|
@ -10,8 +10,8 @@
|
|||
#ifndef VP10_COMMON_MVREF_COMMON_H_
|
||||
#define VP10_COMMON_MVREF_COMMON_H_
|
||||
|
||||
#include "vp10/common/onyxc_int.h"
|
||||
#include "vp10/common/blockd.h"
|
||||
#include "av1/common/onyxc_int.h"
|
||||
#include "av1/common/blockd.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
|
@ -22,7 +22,7 @@ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|||
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.*/
|
||||
|
||||
#include "vp10/common/odintrin.h"
|
||||
#include "av1/common/odintrin.h"
|
||||
|
||||
/*Constants for use with OD_DIVU_SMALL().
|
||||
See \cite{Rob05} for details on computing these constants.
|
|
@ -1,7 +1,7 @@
|
|||
#ifndef VP10_COMMON_ODINTRIN_H_
|
||||
#define VP10_COMMON_ODINTRIN_H_
|
||||
|
||||
#include "vp10/common/enums.h"
|
||||
#include "av1/common/enums.h"
|
||||
#include "aom/vpx_integer.h"
|
||||
#include "aom_dsp/vpx_dsp_common.h"
|
||||
#include "aom_ports/bitops.h"
|
|
@ -15,13 +15,13 @@
|
|||
#include "aom/internal/vpx_codec_internal.h"
|
||||
#include "aom_util/vpx_thread.h"
|
||||
#include "./vp10_rtcd.h"
|
||||
#include "vp10/common/alloccommon.h"
|
||||
#include "vp10/common/loopfilter.h"
|
||||
#include "vp10/common/entropymv.h"
|
||||
#include "vp10/common/entropy.h"
|
||||
#include "vp10/common/entropymode.h"
|
||||
#include "vp10/common/frame_buffers.h"
|
||||
#include "vp10/common/tile_common.h"
|
||||
#include "av1/common/alloccommon.h"
|
||||
#include "av1/common/loopfilter.h"
|
||||
#include "av1/common/entropymv.h"
|
||||
#include "av1/common/entropy.h"
|
||||
#include "av1/common/entropymode.h"
|
||||
#include "av1/common/frame_buffers.h"
|
||||
#include "av1/common/tile_common.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
|
@ -9,9 +9,9 @@
|
|||
* be found in the AUTHORS file in the root of the source tree.
|
||||
*/
|
||||
|
||||
#include "vp10/common/common.h"
|
||||
#include "vp10/common/pred_common.h"
|
||||
#include "vp10/common/seg_common.h"
|
||||
#include "av1/common/common.h"
|
||||
#include "av1/common/pred_common.h"
|
||||
#include "av1/common/seg_common.h"
|
||||
|
||||
// Returns a context number for the given MB prediction signal
|
||||
int vp10_get_pred_context_switchable_interp(const MACROBLOCKD *xd) {
|
|
@ -11,8 +11,8 @@
|
|||
#ifndef VP10_COMMON_PRED_COMMON_H_
|
||||
#define VP10_COMMON_PRED_COMMON_H_
|
||||
|
||||
#include "vp10/common/blockd.h"
|
||||
#include "vp10/common/onyxc_int.h"
|
||||
#include "av1/common/blockd.h"
|
||||
#include "av1/common/onyxc_int.h"
|
||||
#include "aom_dsp/vpx_dsp_common.h"
|
||||
|
||||
#ifdef __cplusplus
|
|
@ -8,10 +8,10 @@
|
|||
* be found in the AUTHORS file in the root of the source tree.
|
||||
*/
|
||||
|
||||
#include "vp10/common/common.h"
|
||||
#include "vp10/common/onyxc_int.h"
|
||||
#include "vp10/common/quant_common.h"
|
||||
#include "vp10/common/seg_common.h"
|
||||
#include "av1/common/common.h"
|
||||
#include "av1/common/onyxc_int.h"
|
||||
#include "av1/common/quant_common.h"
|
||||
#include "av1/common/seg_common.h"
|
||||
|
||||
#if CONFIG_AOM_QM
|
||||
static void make_qmatrices(qm_val_t* wmatrix[NUM_QM_LEVELS][2][2][TX_SIZES],
|
|
@ -12,8 +12,8 @@
|
|||
#define VP10_COMMON_QUANT_COMMON_H_
|
||||
|
||||
#include "aom/vpx_codec.h"
|
||||
#include "vp10/common/seg_common.h"
|
||||
#include "vp10/common/enums.h"
|
||||
#include "av1/common/seg_common.h"
|
||||
#include "av1/common/enums.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
|
@ -15,9 +15,9 @@
|
|||
|
||||
#include "aom/vpx_integer.h"
|
||||
|
||||
#include "vp10/common/blockd.h"
|
||||
#include "vp10/common/reconinter.h"
|
||||
#include "vp10/common/reconintra.h"
|
||||
#include "av1/common/blockd.h"
|
||||
#include "av1/common/reconinter.h"
|
||||
#include "av1/common/reconintra.h"
|
||||
|
||||
#if CONFIG_VPX_HIGHBITDEPTH
|
||||
void vp10_highbd_build_inter_predictor(
|
|
@ -11,8 +11,8 @@
|
|||
#ifndef VP10_COMMON_RECONINTER_H_
|
||||
#define VP10_COMMON_RECONINTER_H_
|
||||
|
||||
#include "vp10/common/filter.h"
|
||||
#include "vp10/common/onyxc_int.h"
|
||||
#include "av1/common/filter.h"
|
||||
#include "av1/common/onyxc_int.h"
|
||||
#include "aom/vpx_integer.h"
|
||||
#include "aom_dsp/vpx_filter.h"
|
||||
|
|
@ -18,8 +18,8 @@
|
|||
#include "aom_ports/mem.h"
|
||||
#include "aom_ports/vpx_once.h"
|
||||
|
||||
#include "vp10/common/reconintra.h"
|
||||
#include "vp10/common/onyxc_int.h"
|
||||
#include "av1/common/reconintra.h"
|
||||
#include "av1/common/onyxc_int.h"
|
||||
|
||||
#if CONFIG_MISC_FIXES
|
||||
enum {
|
|
@ -12,7 +12,7 @@
|
|||
#define VP10_COMMON_RECONINTRA_H_
|
||||
|
||||
#include "aom/vpx_integer.h"
|
||||
#include "vp10/common/blockd.h"
|
||||
#include "av1/common/blockd.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
|
@ -9,8 +9,8 @@
|
|||
*/
|
||||
|
||||
#include "./vpx_dsp_rtcd.h"
|
||||
#include "vp10/common/filter.h"
|
||||
#include "vp10/common/scale.h"
|
||||
#include "av1/common/filter.h"
|
||||
#include "av1/common/scale.h"
|
||||
#include "aom_dsp/vpx_filter.h"
|
||||
|
||||
static INLINE int scaled_x(int val, const struct scale_factors *sf) {
|
|
@ -11,7 +11,7 @@
|
|||
#ifndef VP10_COMMON_SCALE_H_
|
||||
#define VP10_COMMON_SCALE_H_
|
||||
|
||||
#include "vp10/common/mv.h"
|
||||
#include "av1/common/mv.h"
|
||||
#include "aom_dsp/vpx_convolve.h"
|
||||
|
||||
#ifdef __cplusplus
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
#include <assert.h>
|
||||
|
||||
#include "vp10/common/scan.h"
|
||||
#include "av1/common/scan.h"
|
||||
|
||||
DECLARE_ALIGNED(16, static const int16_t, default_scan_4x4[16]) = {
|
||||
0, 4, 1, 5, 8, 2, 12, 9, 3, 6, 13, 10, 7, 14, 11, 15,
|
|
@ -14,8 +14,8 @@
|
|||
#include "aom/vpx_integer.h"
|
||||
#include "aom_ports/mem.h"
|
||||
|
||||
#include "vp10/common/enums.h"
|
||||
#include "vp10/common/blockd.h"
|
||||
#include "av1/common/enums.h"
|
||||
#include "av1/common/blockd.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
|
@ -10,10 +10,10 @@
|
|||
|
||||
#include <assert.h>
|
||||
|
||||
#include "vp10/common/blockd.h"
|
||||
#include "vp10/common/loopfilter.h"
|
||||
#include "vp10/common/seg_common.h"
|
||||
#include "vp10/common/quant_common.h"
|
||||
#include "av1/common/blockd.h"
|
||||
#include "av1/common/loopfilter.h"
|
||||
#include "av1/common/seg_common.h"
|
||||
#include "av1/common/quant_common.h"
|
||||
|
||||
static const int seg_feature_data_signed[SEG_LVL_MAX] = { 1, 1, 0, 0 };
|
||||
|
|
@ -11,10 +11,10 @@
|
|||
#include "./vpx_config.h"
|
||||
#include "aom_dsp/vpx_dsp_common.h"
|
||||
#include "aom_mem/vpx_mem.h"
|
||||
#include "vp10/common/entropymode.h"
|
||||
#include "vp10/common/thread_common.h"
|
||||
#include "vp10/common/reconinter.h"
|
||||
#include "vp10/common/loopfilter.h"
|
||||
#include "av1/common/entropymode.h"
|
||||
#include "av1/common/thread_common.h"
|
||||
#include "av1/common/reconinter.h"
|
||||
#include "av1/common/loopfilter.h"
|
||||
|
||||
#if CONFIG_MULTITHREAD
|
||||
static INLINE void mutex_lock(pthread_mutex_t *const mutex) {
|
|
@ -11,7 +11,7 @@
|
|||
#ifndef VP10_COMMON_LOOPFILTER_THREAD_H_
|
||||
#define VP10_COMMON_LOOPFILTER_THREAD_H_
|
||||
#include "./vpx_config.h"
|
||||
#include "vp10/common/loopfilter.h"
|
||||
#include "av1/common/loopfilter.h"
|
||||
#include "aom_util/vpx_thread.h"
|
||||
|
||||
#ifdef __cplusplus
|
|
@ -8,8 +8,8 @@
|
|||
* be found in the AUTHORS file in the root of the source tree.
|
||||
*/
|
||||
|
||||
#include "vp10/common/tile_common.h"
|
||||
#include "vp10/common/onyxc_int.h"
|
||||
#include "av1/common/tile_common.h"
|
||||
#include "av1/common/onyxc_int.h"
|
||||
#include "aom_dsp/vpx_dsp_common.h"
|
||||
|
||||
#define MIN_TILE_WIDTH_B64 4
|
|
@ -8,7 +8,7 @@
|
|||
* be found in the AUTHORS file in the root of the source tree.
|
||||
*/
|
||||
|
||||
#include "vp10/common/vp10_fwd_txfm.h"
|
||||
#include "av1/common/vp10_fwd_txfm.h"
|
||||
|
||||
void vp10_fdct4x4_c(const int16_t *input, tran_low_t *output, int stride) {
|
||||
// The 2D transform is done with two passes which are actually pretty
|
|
@ -12,7 +12,7 @@
|
|||
#include <math.h>
|
||||
#include <string.h>
|
||||
|
||||
#include "vp10/common/vp10_inv_txfm.h"
|
||||
#include "av1/common/vp10_inv_txfm.h"
|
||||
|
||||
void vp10_iwht4x4_16_add_c(const tran_low_t *input, uint8_t *dest, int stride) {
|
||||
/* 4-point reversible, orthonormal inverse Walsh-Hadamard in 3.5 adds,
|
|
@ -5,8 +5,8 @@ print <<EOF
|
|||
*/
|
||||
|
||||
#include "aom/vpx_integer.h"
|
||||
#include "vp10/common/common.h"
|
||||
#include "vp10/common/enums.h"
|
||||
#include "av1/common/common.h"
|
||||
#include "av1/common/enums.h"
|
||||
|
||||
struct macroblockd;
|
||||
|
|
@ -11,7 +11,7 @@
|
|||
#include <emmintrin.h> // SSE2
|
||||
|
||||
#include "./vp10_rtcd.h"
|
||||
#include "vp10/common/vp10_fwd_txfm.h"
|
||||
#include "av1/common/vp10_fwd_txfm.h"
|
||||
#include "aom_dsp/txfm_common.h"
|
||||
#include "aom_dsp/x86/txfm_common_sse2.h"
|
||||
|
||||
|
@ -3146,7 +3146,7 @@ void FDCT32x32_2D(const int16_t *input, tran_low_t *output_org, int stride) {
|
|||
tr2_6 = _mm_sub_epi16(tr2_6, tr2_6_0);
|
||||
tr2_7 = _mm_sub_epi16(tr2_7, tr2_7_0);
|
||||
// ... and here.
|
||||
// PS: also change code in vp10/encoder/dct.c
|
||||
// PS: also change code in av1/encoder/dct.c
|
||||
tr2_0 = _mm_add_epi16(tr2_0, kOne);
|
||||
tr2_1 = _mm_add_epi16(tr2_1, kOne);
|
||||
tr2_2 = _mm_add_epi16(tr2_2, kOne);
|
|
@ -228,20 +228,20 @@ void vp10_fdct32x32_1_sse2(const int16_t *input, tran_low_t *output,
|
|||
#define FDCT4x4_2D vp10_fdct4x4_sse2
|
||||
#define FDCT8x8_2D vp10_fdct8x8_sse2
|
||||
#define FDCT16x16_2D vp10_fdct16x16_sse2
|
||||
#include "vp10/common/x86/vp10_fwd_txfm_impl_sse2.h"
|
||||
#include "av1/common/x86/vp10_fwd_txfm_impl_sse2.h"
|
||||
#undef FDCT4x4_2D
|
||||
#undef FDCT8x8_2D
|
||||
#undef FDCT16x16_2D
|
||||
|
||||
#define FDCT32x32_2D vp10_fdct32x32_rd_sse2
|
||||
#define FDCT32x32_HIGH_PRECISION 0
|
||||
#include "vp10/common/x86/vp10_fwd_dct32x32_impl_sse2.h"
|
||||
#include "av1/common/x86/vp10_fwd_dct32x32_impl_sse2.h"
|
||||
#undef FDCT32x32_2D
|
||||
#undef FDCT32x32_HIGH_PRECISION
|
||||
|
||||
#define FDCT32x32_2D vp10_fdct32x32_sse2
|
||||
#define FDCT32x32_HIGH_PRECISION 1
|
||||
#include "vp10/common/x86/vp10_fwd_dct32x32_impl_sse2.h" // NOLINT
|
||||
#include "av1/common/x86/vp10_fwd_dct32x32_impl_sse2.h" // NOLINT
|
||||
#undef FDCT32x32_2D
|
||||
#undef FDCT32x32_HIGH_PRECISION
|
||||
#undef DCT_HIGH_BIT_DEPTH
|
||||
|
@ -251,20 +251,20 @@ void vp10_fdct32x32_1_sse2(const int16_t *input, tran_low_t *output,
|
|||
#define FDCT4x4_2D vp10_highbd_fdct4x4_sse2
|
||||
#define FDCT8x8_2D vp10_highbd_fdct8x8_sse2
|
||||
#define FDCT16x16_2D vp10_highbd_fdct16x16_sse2
|
||||
#include "vp10/common/x86/vp10_fwd_txfm_impl_sse2.h" // NOLINT
|
||||
#include "av1/common/x86/vp10_fwd_txfm_impl_sse2.h" // NOLINT
|
||||
#undef FDCT4x4_2D
|
||||
#undef FDCT8x8_2D
|
||||
#undef FDCT16x16_2D
|
||||
|
||||
#define FDCT32x32_2D vp10_highbd_fdct32x32_rd_sse2
|
||||
#define FDCT32x32_HIGH_PRECISION 0
|
||||
#include "vp10/common/x86/vp10_fwd_dct32x32_impl_sse2.h" // NOLINT
|
||||
#include "av1/common/x86/vp10_fwd_dct32x32_impl_sse2.h" // NOLINT
|
||||
#undef FDCT32x32_2D
|
||||
#undef FDCT32x32_HIGH_PRECISION
|
||||
|
||||
#define FDCT32x32_2D vp10_highbd_fdct32x32_sse2
|
||||
#define FDCT32x32_HIGH_PRECISION 1
|
||||
#include "vp10/common/x86/vp10_fwd_dct32x32_impl_sse2.h" // NOLINT
|
||||
#include "av1/common/x86/vp10_fwd_dct32x32_impl_sse2.h" // NOLINT
|
||||
#undef FDCT32x32_2D
|
||||
#undef FDCT32x32_HIGH_PRECISION
|
||||
#undef DCT_HIGH_BIT_DEPTH
|
|
@ -9,7 +9,7 @@
|
|||
*/
|
||||
|
||||
#include "./vp10_rtcd.h"
|
||||
#include "vp10/common/x86/vp10_inv_txfm_sse2.h"
|
||||
#include "av1/common/x86/vp10_inv_txfm_sse2.h"
|
||||
#include "aom_dsp/x86/txfm_common_sse2.h"
|
||||
|
||||
#define RECON_AND_STORE4X4(dest, in_x) \
|
|
@ -14,7 +14,7 @@
|
|||
#include <emmintrin.h> // SSE2
|
||||
#include "./vpx_config.h"
|
||||
#include "aom/vpx_integer.h"
|
||||
#include "vp10/common/vp10_inv_txfm.h"
|
||||
#include "av1/common/vp10_inv_txfm.h"
|
||||
|
||||
// perform 8x8 transpose
|
||||
static INLINE void array_transpose_8x8(__m128i *in, __m128i *res) {
|
|
@ -25,30 +25,30 @@
|
|||
#include "aom_scale/vpx_scale.h"
|
||||
#include "aom_util/vpx_thread.h"
|
||||
|
||||
#include "vp10/common/alloccommon.h"
|
||||
#include "av1/common/alloccommon.h"
|
||||
#if CONFIG_CLPF
|
||||
#include "vp10/common/clpf.h"
|
||||
#include "av1/common/clpf.h"
|
||||
#endif
|
||||
#include "vp10/common/common.h"
|
||||
#include "av1/common/common.h"
|
||||
#if CONFIG_DERING
|
||||
#include "vp10/common/dering.h"
|
||||
#include "av1/common/dering.h"
|
||||
#endif // CONFIG_DERING
|
||||
#include "vp10/common/entropy.h"
|
||||
#include "vp10/common/entropymode.h"
|
||||
#include "vp10/common/idct.h"
|
||||
#include "vp10/common/thread_common.h"
|
||||
#include "vp10/common/pred_common.h"
|
||||
#include "vp10/common/quant_common.h"
|
||||
#include "vp10/common/reconintra.h"
|
||||
#include "vp10/common/reconinter.h"
|
||||
#include "vp10/common/seg_common.h"
|
||||
#include "vp10/common/tile_common.h"
|
||||
#include "av1/common/entropy.h"
|
||||
#include "av1/common/entropymode.h"
|
||||
#include "av1/common/idct.h"
|
||||
#include "av1/common/thread_common.h"
|
||||
#include "av1/common/pred_common.h"
|
||||
#include "av1/common/quant_common.h"
|
||||
#include "av1/common/reconintra.h"
|
||||
#include "av1/common/reconinter.h"
|
||||
#include "av1/common/seg_common.h"
|
||||
#include "av1/common/tile_common.h"
|
||||
|
||||
#include "vp10/decoder/decodeframe.h"
|
||||
#include "vp10/decoder/detokenize.h"
|
||||
#include "vp10/decoder/decodemv.h"
|
||||
#include "vp10/decoder/decoder.h"
|
||||
#include "vp10/decoder/dsubexp.h"
|
||||
#include "av1/decoder/decodeframe.h"
|
||||
#include "av1/decoder/detokenize.h"
|
||||
#include "av1/decoder/decodemv.h"
|
||||
#include "av1/decoder/decoder.h"
|
||||
#include "av1/decoder/dsubexp.h"
|
||||
|
||||
#define MAX_VP10_HEADER_SIZE 80
|
||||
|
|
@ -10,17 +10,17 @@
|
|||
|
||||
#include <assert.h>
|
||||
|
||||
#include "vp10/common/common.h"
|
||||
#include "vp10/common/entropy.h"
|
||||
#include "vp10/common/entropymode.h"
|
||||
#include "vp10/common/entropymv.h"
|
||||
#include "vp10/common/mvref_common.h"
|
||||
#include "vp10/common/pred_common.h"
|
||||
#include "vp10/common/reconinter.h"
|
||||
#include "vp10/common/seg_common.h"
|
||||
#include "av1/common/common.h"
|
||||
#include "av1/common/entropy.h"
|
||||
#include "av1/common/entropymode.h"
|
||||
#include "av1/common/entropymv.h"
|
||||
#include "av1/common/mvref_common.h"
|
||||
#include "av1/common/pred_common.h"
|
||||
#include "av1/common/reconinter.h"
|
||||
#include "av1/common/seg_common.h"
|
||||
|
||||
#include "vp10/decoder/decodemv.h"
|
||||
#include "vp10/decoder/decodeframe.h"
|
||||
#include "av1/decoder/decodemv.h"
|
||||
#include "av1/decoder/decodeframe.h"
|
||||
|
||||
#include "aom_dsp/vpx_dsp_common.h"
|
||||
|
|
@ -13,7 +13,7 @@
|
|||
|
||||
#include "aom_dsp/bitreader.h"
|
||||
|
||||
#include "vp10/decoder/decoder.h"
|
||||
#include "av1/decoder/decoder.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
|
@ -23,15 +23,15 @@
|
|||
#include "aom_scale/vpx_scale.h"
|
||||
#include "aom_util/vpx_thread.h"
|
||||
|
||||
#include "vp10/common/alloccommon.h"
|
||||
#include "vp10/common/loopfilter.h"
|
||||
#include "vp10/common/onyxc_int.h"
|
||||
#include "vp10/common/quant_common.h"
|
||||
#include "vp10/common/reconintra.h"
|
||||
#include "av1/common/alloccommon.h"
|
||||
#include "av1/common/loopfilter.h"
|
||||
#include "av1/common/onyxc_int.h"
|
||||
#include "av1/common/quant_common.h"
|
||||
#include "av1/common/reconintra.h"
|
||||
|
||||
#include "vp10/decoder/decodeframe.h"
|
||||
#include "vp10/decoder/decoder.h"
|
||||
#include "vp10/decoder/detokenize.h"
|
||||
#include "av1/decoder/decodeframe.h"
|
||||
#include "av1/decoder/decoder.h"
|
||||
#include "av1/decoder/detokenize.h"
|
||||
|
||||
static void initialize_dec(void) {
|
||||
static volatile int init_done = 0;
|
|
@ -18,9 +18,9 @@
|
|||
#include "aom_scale/yv12config.h"
|
||||
#include "aom_util/vpx_thread.h"
|
||||
|
||||
#include "vp10/common/thread_common.h"
|
||||
#include "vp10/common/onyxc_int.h"
|
||||
#include "vp10/decoder/dthread.h"
|
||||
#include "av1/common/thread_common.h"
|
||||
#include "av1/common/onyxc_int.h"
|
||||
#include "av1/decoder/dthread.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
|
@ -11,14 +11,14 @@
|
|||
#include "aom_mem/vpx_mem.h"
|
||||
#include "aom_ports/mem.h"
|
||||
|
||||
#include "vp10/common/blockd.h"
|
||||
#include "vp10/common/common.h"
|
||||
#include "vp10/common/entropy.h"
|
||||
#include "av1/common/blockd.h"
|
||||
#include "av1/common/common.h"
|
||||
#include "av1/common/entropy.h"
|
||||
#if CONFIG_COEFFICIENT_RANGE_CHECKING
|
||||
#include "vp10/common/idct.h"
|
||||
#include "av1/common/idct.h"
|
||||
#endif
|
||||
|
||||
#include "vp10/decoder/detokenize.h"
|
||||
#include "av1/decoder/detokenize.h"
|
||||
|
||||
#define EOB_CONTEXT_NODE 0
|
||||
#define ZERO_CONTEXT_NODE 1
|
|
@ -12,8 +12,8 @@
|
|||
#define VP10_DECODER_DETOKENIZE_H_
|
||||
|
||||
#include "aom_dsp/bitreader.h"
|
||||
#include "vp10/decoder/decoder.h"
|
||||
#include "vp10/common/scan.h"
|
||||
#include "av1/decoder/decoder.h"
|
||||
#include "av1/common/scan.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
|
@ -10,9 +10,9 @@
|
|||
|
||||
#include <assert.h>
|
||||
|
||||
#include "vp10/common/entropy.h"
|
||||
#include "av1/common/entropy.h"
|
||||
|
||||
#include "vp10/decoder/dsubexp.h"
|
||||
#include "av1/decoder/dsubexp.h"
|
||||
|
||||
static int inv_recenter_nonneg(int v, int m) {
|
||||
if (v > 2 * m) return v;
|
|
@ -10,9 +10,9 @@
|
|||
|
||||
#include "./vpx_config.h"
|
||||
#include "aom_mem/vpx_mem.h"
|
||||
#include "vp10/common/reconinter.h"
|
||||
#include "vp10/decoder/dthread.h"
|
||||
#include "vp10/decoder/decoder.h"
|
||||
#include "av1/common/reconinter.h"
|
||||
#include "av1/decoder/dthread.h"
|
||||
#include "av1/decoder/decoder.h"
|
||||
|
||||
// #define DEBUG_THREAD
|
||||
|
|
@ -11,11 +11,11 @@
|
|||
#include <limits.h>
|
||||
#include <math.h>
|
||||
|
||||
#include "vp10/encoder/aq_complexity.h"
|
||||
#include "vp10/encoder/aq_variance.h"
|
||||
#include "vp10/encoder/encodeframe.h"
|
||||
#include "vp10/common/seg_common.h"
|
||||
#include "vp10/encoder/segmentation.h"
|
||||
#include "av1/encoder/aq_complexity.h"
|
||||
#include "av1/encoder/aq_variance.h"
|
||||
#include "av1/encoder/encodeframe.h"
|
||||
#include "av1/common/seg_common.h"
|
||||
#include "av1/encoder/segmentation.h"
|
||||
#include "aom_dsp/vpx_dsp_common.h"
|
||||
#include "aom_ports/system_state.h"
|
||||
|
|
@ -15,7 +15,7 @@
|
|||
extern "C" {
|
||||
#endif
|
||||
|
||||
#include "vp10/common/enums.h"
|
||||
#include "av1/common/enums.h"
|
||||
|
||||
struct VP10_COMP;
|
||||
struct macroblock;
|
|
@ -11,10 +11,10 @@
|
|||
#include <limits.h>
|
||||
#include <math.h>
|
||||
|
||||
#include "vp10/common/seg_common.h"
|
||||
#include "vp10/encoder/aq_cyclicrefresh.h"
|
||||
#include "vp10/encoder/ratectrl.h"
|
||||
#include "vp10/encoder/segmentation.h"
|
||||
#include "av1/common/seg_common.h"
|
||||
#include "av1/encoder/aq_cyclicrefresh.h"
|
||||
#include "av1/encoder/ratectrl.h"
|
||||
#include "av1/encoder/segmentation.h"
|
||||
#include "aom_dsp/vpx_dsp_common.h"
|
||||
#include "aom_ports/system_state.h"
|
||||
|
|
@ -11,7 +11,7 @@
|
|||
#ifndef VP10_ENCODER_AQ_CYCLICREFRESH_H_
|
||||
#define VP10_ENCODER_AQ_CYCLICREFRESH_H_
|
||||
|
||||
#include "vp10/common/blockd.h"
|
||||
#include "av1/common/blockd.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
|
@ -12,12 +12,12 @@
|
|||
|
||||
#include "aom_ports/mem.h"
|
||||
|
||||
#include "vp10/encoder/aq_variance.h"
|
||||
#include "av1/encoder/aq_variance.h"
|
||||
|
||||
#include "vp10/common/seg_common.h"
|
||||
#include "vp10/encoder/ratectrl.h"
|
||||
#include "vp10/encoder/rd.h"
|
||||
#include "vp10/encoder/segmentation.h"
|
||||
#include "av1/common/seg_common.h"
|
||||
#include "av1/encoder/ratectrl.h"
|
||||
#include "av1/encoder/rd.h"
|
||||
#include "av1/encoder/segmentation.h"
|
||||
#include "aom_ports/system_state.h"
|
||||
|
||||
#define ENERGY_MIN (-4)
|
|
@ -11,7 +11,7 @@
|
|||
#ifndef VP10_ENCODER_AQ_VARIANCE_H_
|
||||
#define VP10_ENCODER_AQ_VARIANCE_H_
|
||||
|
||||
#include "vp10/encoder/encoder.h"
|
||||
#include "av1/encoder/encoder.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
|
@ -14,7 +14,7 @@
|
|||
#include "./vpx_config.h"
|
||||
#include "./vpx_dsp_rtcd.h"
|
||||
|
||||
#include "vp10/common/blockd.h"
|
||||
#include "av1/common/blockd.h"
|
||||
#include "aom_dsp/txfm_common.h"
|
||||
|
||||
void vp10_fdct8x8_quant_neon(
|
|
@ -14,12 +14,12 @@
|
|||
|
||||
#include "aom_mem/vpx_mem.h"
|
||||
|
||||
#include "vp10/common/quant_common.h"
|
||||
#include "vp10/common/seg_common.h"
|
||||
#include "av1/common/quant_common.h"
|
||||
#include "av1/common/seg_common.h"
|
||||
|
||||
#include "vp10/encoder/encoder.h"
|
||||
#include "vp10/encoder/quantize.h"
|
||||
#include "vp10/encoder/rd.h"
|
||||
#include "av1/encoder/encoder.h"
|
||||
#include "av1/encoder/quantize.h"
|
||||
#include "av1/encoder/rd.h"
|
||||
|
||||
void vp10_quantize_fp_neon(const int16_t *coeff_ptr, intptr_t count,
|
||||
int skip_block, const int16_t *zbin_ptr,
|
|
@ -20,26 +20,26 @@
|
|||
#include "aom_ports/system_state.h"
|
||||
|
||||
#if CONFIG_CLPF
|
||||
#include "vp10/common/clpf.h"
|
||||
#include "av1/common/clpf.h"
|
||||
#endif
|
||||
#if CONFIG_DERING
|
||||
#include "vp10/common/dering.h"
|
||||
#include "av1/common/dering.h"
|
||||
#endif // CONFIG_DERING
|
||||
#include "vp10/common/entropy.h"
|
||||
#include "vp10/common/entropymode.h"
|
||||
#include "vp10/common/entropymv.h"
|
||||
#include "vp10/common/mvref_common.h"
|
||||
#include "vp10/common/pred_common.h"
|
||||
#include "vp10/common/seg_common.h"
|
||||
#include "vp10/common/tile_common.h"
|
||||
#include "av1/common/entropy.h"
|
||||
#include "av1/common/entropymode.h"
|
||||
#include "av1/common/entropymv.h"
|
||||
#include "av1/common/mvref_common.h"
|
||||
#include "av1/common/pred_common.h"
|
||||
#include "av1/common/seg_common.h"
|
||||
#include "av1/common/tile_common.h"
|
||||
|
||||
#include "vp10/encoder/cost.h"
|
||||
#include "vp10/encoder/bitstream.h"
|
||||
#include "vp10/encoder/encodemv.h"
|
||||
#include "vp10/encoder/mcomp.h"
|
||||
#include "vp10/encoder/segmentation.h"
|
||||
#include "vp10/encoder/subexp.h"
|
||||
#include "vp10/encoder/tokenize.h"
|
||||
#include "av1/encoder/cost.h"
|
||||
#include "av1/encoder/bitstream.h"
|
||||
#include "av1/encoder/encodemv.h"
|
||||
#include "av1/encoder/mcomp.h"
|
||||
#include "av1/encoder/segmentation.h"
|
||||
#include "av1/encoder/subexp.h"
|
||||
#include "av1/encoder/tokenize.h"
|
||||
|
||||
static const struct vp10_token intra_mode_encodings[INTRA_MODES] = {
|
||||
{ 0, 1 }, { 6, 3 }, { 28, 5 }, { 30, 5 }, { 58, 6 },
|
|
@ -15,7 +15,7 @@
|
|||
extern "C" {
|
||||
#endif
|
||||
|
||||
#include "vp10/encoder/encoder.h"
|
||||
#include "av1/encoder/encoder.h"
|
||||
|
||||
void vp10_encode_token_init();
|
||||
void vp10_pack_bitstream(VP10_COMP *const cpi, uint8_t *dest, size_t *size);
|
|
@ -11,8 +11,8 @@
|
|||
#ifndef VP10_ENCODER_BLOCK_H_
|
||||
#define VP10_ENCODER_BLOCK_H_
|
||||
|
||||
#include "vp10/common/entropymv.h"
|
||||
#include "vp10/common/entropy.h"
|
||||
#include "av1/common/entropymv.h"
|
||||
#include "av1/common/entropy.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
|
@ -11,8 +11,8 @@
|
|||
#include "./vp10_rtcd.h"
|
||||
#include "./vpx_config.h"
|
||||
#include "./vpx_dsp_rtcd.h"
|
||||
#include "vp10/common/common.h"
|
||||
#include "vp10/common/filter.h"
|
||||
#include "av1/common/common.h"
|
||||
#include "av1/common/filter.h"
|
||||
#include "aom/vpx_integer.h"
|
||||
#include "aom_dsp/vpx_convolve.h"
|
||||
#include "aom_dsp/vpx_filter.h"
|
|
@ -8,8 +8,8 @@
|
|||
* be found in the AUTHORS file in the root of the source tree.
|
||||
*/
|
||||
|
||||
#include "vp10/encoder/context_tree.h"
|
||||
#include "vp10/encoder/encoder.h"
|
||||
#include "av1/encoder/context_tree.h"
|
||||
#include "av1/encoder/encoder.h"
|
||||
|
||||
static const BLOCK_SIZE square[] = {
|
||||
BLOCK_8X8, BLOCK_16X16, BLOCK_32X32, BLOCK_64X64,
|
Некоторые файлы не были показаны из-за слишком большого количества измененных файлов Показать больше
Загрузка…
Ссылка в новой задаче