Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
aom-rav1e
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Xiph.Org
aom-rav1e
Commits
26897d10
Commit
26897d10
authored
Jul 12, 2017
by
Cheng Chen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make CDEF local functions static
Change-Id: I89035a64414f9511789022704ad9343bc2937666
parent
52c5173e
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
9 deletions
+6
-9
av1/common/cdef.c
av1/common/cdef.c
+3
-3
av1/common/od_dering.c
av1/common/od_dering.c
+3
-3
av1/common/od_dering.h
av1/common/od_dering.h
+0
-3
No files found.
av1/common/cdef.c
View file @
26897d10
...
...
@@ -117,9 +117,9 @@ void copy_rect8_16bit_to_16bit_c(uint16_t *dst, int dstride,
}
}
void
copy_sb8_16
(
UNUSED
AV1_COMMON
*
cm
,
uint16_t
*
dst
,
int
dstride
,
const
uint8_t
*
src
,
int
src_voffset
,
int
src_hoffset
,
int
sstride
,
int
vsize
,
int
hsize
)
{
static
void
copy_sb8_16
(
UNUSED
AV1_COMMON
*
cm
,
uint16_t
*
dst
,
int
dstride
,
const
uint8_t
*
src
,
int
src_voffset
,
int
src_hoffset
,
int
sstride
,
int
vsize
,
int
hsize
)
{
#if CONFIG_HIGHBITDEPTH
if
(
cm
->
use_highbitdepth
)
{
const
uint16_t
*
base
=
...
...
av1/common/od_dering.c
View file @
26897d10
...
...
@@ -202,9 +202,9 @@ void copy_4x4_16bit_to_16bit_c(uint16_t *dst, int dstride, const uint16_t *src,
for
(
j
=
0
;
j
<
4
;
j
++
)
dst
[
i
*
dstride
+
j
]
=
src
[
i
*
sstride
+
j
];
}
void
copy_dering_16bit_to_16bit
(
uint16_t
*
dst
,
int
dstride
,
uint16_t
*
src
,
dering_list
*
dlist
,
int
dering_coun
t
,
int
bsize
)
{
static
void
copy_dering_16bit_to_16bit
(
uint16_t
*
dst
,
int
dstride
,
uint16_t
*
src
,
dering_list
*
dlis
t
,
int
dering_count
,
int
bsize
)
{
int
bi
,
bx
,
by
;
if
(
bsize
==
BLOCK_8X8
)
{
...
...
av1/common/od_dering.h
View file @
26897d10
...
...
@@ -39,9 +39,6 @@ typedef void (*od_filter_dering_direction_func)(uint16_t *y, int ystride,
const
uint16_t
*
in
,
int
threshold
,
int
dir
,
int
damping
);
void
copy_dering_16bit_to_16bit
(
uint16_t
*
dst
,
int
dstride
,
uint16_t
*
src
,
dering_list
*
dlist
,
int
dering_count
,
int
bsize
);
int
get_filter_skip
(
int
level
);
...
...
Write
Preview
Markdown
is supported
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