Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Xiph.Org
aom-rav1e
Commits
4e510826
Commit
4e510826
authored
Nov 22, 2017
by
Sebastien Alaiwan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove dead convolve functions
Change-Id: I5ec79635c716b2d1f1b200dcc3067213f2eedd08
parent
20dadeae
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
60 deletions
+0
-60
aom_dsp/aom_convolve.c
aom_dsp/aom_convolve.c
+0
-54
aom_dsp/aom_dsp_rtcd_defs.pl
aom_dsp/aom_dsp_rtcd_defs.pl
+0
-6
No files found.
aom_dsp/aom_convolve.c
View file @
4e510826
...
...
@@ -1143,34 +1143,6 @@ static void highbd_convolve_add_src(const uint8_t *src, ptrdiff_t src_stride,
MAX_SB_SIZE
,
dst
,
dst_stride
,
y_filters
,
y0_q4
,
y_step_q4
,
w
,
h
,
bd
);
}
void
aom_highbd_convolve8_add_src_horiz_c
(
const
uint8_t
*
src
,
ptrdiff_t
src_stride
,
uint8_t
*
dst
,
ptrdiff_t
dst_stride
,
const
int16_t
*
filter_x
,
int
x_step_q4
,
const
int16_t
*
filter_y
,
int
y_step_q4
,
int
w
,
int
h
,
int
bd
)
{
const
InterpKernel
*
const
filters_x
=
get_filter_base
(
filter_x
);
const
int
x0_q4
=
get_filter_offset
(
filter_x
,
filters_x
);
(
void
)
filter_y
;
(
void
)
y_step_q4
;
highbd_convolve_add_src_horiz
(
src
,
src_stride
,
dst
,
dst_stride
,
filters_x
,
x0_q4
,
x_step_q4
,
w
,
h
,
bd
);
}
void
aom_highbd_convolve8_add_src_vert_c
(
const
uint8_t
*
src
,
ptrdiff_t
src_stride
,
uint8_t
*
dst
,
ptrdiff_t
dst_stride
,
const
int16_t
*
filter_x
,
int
x_step_q4
,
const
int16_t
*
filter_y
,
int
y_step_q4
,
int
w
,
int
h
,
int
bd
)
{
const
InterpKernel
*
const
filters_y
=
get_filter_base
(
filter_y
);
const
int
y0_q4
=
get_filter_offset
(
filter_y
,
filters_y
);
(
void
)
filter_x
;
(
void
)
x_step_q4
;
highbd_convolve_add_src_vert
(
src
,
src_stride
,
dst
,
dst_stride
,
filters_y
,
y0_q4
,
y_step_q4
,
w
,
h
,
bd
);
}
void
aom_highbd_convolve8_add_src_c
(
const
uint8_t
*
src
,
ptrdiff_t
src_stride
,
uint8_t
*
dst
,
ptrdiff_t
dst_stride
,
const
int16_t
*
filter_x
,
int
x_step_q4
,
...
...
@@ -1270,32 +1242,6 @@ static void highbd_convolve_add_src_hip(
y0_q4
,
y_step_q4
,
w
,
h
,
bd
);
}
void
aom_highbd_convolve8_add_src_horiz_hip_c
(
const
uint8_t
*
src
,
ptrdiff_t
src_stride
,
uint16_t
*
dst
,
ptrdiff_t
dst_stride
,
const
int16_t
*
filter_x
,
int
x_step_q4
,
const
int16_t
*
filter_y
,
int
y_step_q4
,
int
w
,
int
h
,
int
bd
)
{
const
InterpKernel
*
const
filters_x
=
get_filter_base
(
filter_x
);
const
int
x0_q4
=
get_filter_offset
(
filter_x
,
filters_x
);
(
void
)
filter_y
;
(
void
)
y_step_q4
;
highbd_convolve_add_src_horiz_hip
(
src
,
src_stride
,
dst
,
dst_stride
,
filters_x
,
x0_q4
,
x_step_q4
,
w
,
h
,
bd
);
}
void
aom_highbd_convolve8_add_src_vert_hip_c
(
const
uint16_t
*
src
,
ptrdiff_t
src_stride
,
uint8_t
*
dst
,
ptrdiff_t
dst_stride
,
const
int16_t
*
filter_x
,
int
x_step_q4
,
const
int16_t
*
filter_y
,
int
y_step_q4
,
int
w
,
int
h
,
int
bd
)
{
const
InterpKernel
*
const
filters_y
=
get_filter_base
(
filter_y
);
const
int
y0_q4
=
get_filter_offset
(
filter_y
,
filters_y
);
(
void
)
filter_x
;
(
void
)
x_step_q4
;
highbd_convolve_add_src_vert_hip
(
src
,
src_stride
,
dst
,
dst_stride
,
filters_y
,
y0_q4
,
y_step_q4
,
w
,
h
,
bd
);
}
void
aom_highbd_convolve8_add_src_hip_c
(
const
uint8_t
*
src
,
ptrdiff_t
src_stride
,
uint8_t
*
dst
,
ptrdiff_t
dst_stride
,
...
...
aom_dsp/aom_dsp_rtcd_defs.pl
View file @
4e510826
...
...
@@ -407,16 +407,10 @@ if (aom_config("CONFIG_HIGHBITDEPTH") eq "yes") {
if
(
aom_config
("
CONFIG_LOOP_RESTORATION
")
eq
"
yes
")
{
add_proto
qw/void aom_highbd_convolve8_add_src/
,
"
const uint8_t *src, ptrdiff_t src_stride, uint8_t *dst, ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4, const int16_t *filter_y, int y_step_q4, int w, int h, int bps
";
add_proto
qw/void aom_highbd_convolve8_add_src_horiz/
,
"
const uint8_t *src, ptrdiff_t src_stride, uint8_t *dst, ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4, const int16_t *filter_y, int y_step_q4, int w, int h, int bps
";
add_proto
qw/void aom_highbd_convolve8_add_src_vert/
,
"
const uint8_t *src, ptrdiff_t src_stride, uint8_t *dst, ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4, const int16_t *filter_y, int y_step_q4, int w, int h, int bps
";
add_proto
qw/void aom_highbd_convolve8_add_src_hip/
,
"
const uint8_t *src, ptrdiff_t src_stride, uint8_t *dst, ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4, const int16_t *filter_y, int y_step_q4, int w, int h, int bps
";
add_proto
qw/void aom_highbd_convolve8_add_src_horiz_hip/
,
"
const uint8_t *src, ptrdiff_t src_stride, uint16_t *dst, ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4, const int16_t *filter_y, int y_step_q4, int w, int h, int bps
";
add_proto
qw/void aom_highbd_convolve8_add_src_vert_hip/
,
"
const uint16_t *src, ptrdiff_t src_stride, uint8_t *dst, ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4, const int16_t *filter_y, int y_step_q4, int w, int h, int bps
";
specialize
qw/aom_highbd_convolve8_add_src/
,
"
$sse2_x86_64
";
specialize
qw/aom_highbd_convolve8_add_src_hip ssse3/
;
# The _horiz/_vert functions are currently unused, so we don't bother
# specialising them.
}
# CONFIG_LOOP_RESTORATION
}
# CONFIG_HIGHBITDEPTH
...
...
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