Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Raphael Zumer
aom-rav1e
Commits
cfea7dd7
Commit
cfea7dd7
authored
Mar 22, 2016
by
Yaowu Xu
Browse files
vp10/ -> av1/
Change-Id: Ia055d03656ad1580447eced8687949583fdf4089
parent
69f01421
Changes
196
Hide whitespace changes
Inline
Side-by-side
aom/src/svc_encodeframe.c
View file @
cfea7dd7
...
...
@@ -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
...
...
aom_scale/generic/yv12extend.c
View file @
cfea7dd7
...
...
@@ -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
,
...
...
vp10
/common/alloccommon.c
→
av1
/common/alloccommon.c
View file @
cfea7dd7
...
...
@@ -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
);
...
...
vp10
/common/alloccommon.h
→
av1
/common/alloccommon.h
View file @
cfea7dd7
File moved
vp10
/common/arm/neon/iht4x4_add_neon.c
→
av1
/common/arm/neon/iht4x4_add_neon.c
View file @
cfea7dd7
...
...
@@ -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
;
...
...
vp10
/common/arm/neon/iht8x8_add_neon.c
→
av1
/common/arm/neon/iht8x8_add_neon.c
View file @
cfea7dd7
...
...
@@ -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
;
...
...
vp10
/common/blockd.c
→
av1
/common/blockd.c
View file @
cfea7dd7
...
...
@@ -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
)
{
...
...
vp10
/common/blockd.h
→
av1
/common/blockd.h
View file @
cfea7dd7
...
...
@@ -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"
{
...
...
vp10
/common/clpf.c
→
av1
/common/clpf.c
View file @
cfea7dd7
...
...
@@ -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
,
...
...
vp10
/common/clpf.h
→
av1
/common/clpf.h
View file @
cfea7dd7
...
...
@@ -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 \
...
...
vp10
/common/common.h
→
av1
/common/common.h
View file @
cfea7dd7
File moved
vp10
/common/common_data.h
→
av1
/common/common_data.h
View file @
cfea7dd7
...
...
@@ -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"
...
...
vp10
/common/debugmodes.c
→
av1
/common/debugmodes.c
View file @
cfea7dd7
...
...
@@ -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
);
...
...
vp10
/common/dering.c
→
av1
/common/dering.c
View file @
cfea7dd7
...
...
@@ -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
)
{
...
...
vp10
/common/dering.h
→
av1
/common/dering.h
View file @
cfea7dd7
#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"
...
...
vp10
/common/entropy.c
→
av1
/common/entropy.c
View file @
cfea7dd7
...
...
@@ -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"
...
...
vp10
/common/entropy.h
→
av1
/common/entropy.h
View file @
cfea7dd7
...
...
@@ -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"
{
...
...
vp10
/common/entropymode.c
→
av1
/common/entropymode.c
View file @
cfea7dd7
...
...
@@ -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
]
=
{
{
...
...
vp10
/common/entropymode.h
→
av1
/common/entropymode.h
View file @
cfea7dd7
...
...
@@ -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
...
...
vp10
/common/entropymv.c
→
av1
/common/entropymv.c
View file @
cfea7dd7
...
...
@@ -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
...
...
Prev
1
2
3
4
5
…
10
Next
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment