Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
f1011ea2
Commit
f1011ea2
authored
Jan 31, 2019
by
Martin Storsjö
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
aarch64: vp8: Reorder the function pointer inits to match the arm original
Signed-off-by:
Martin Storsjö
<
martin@martin.st
>
parent
b4b27dce
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
vp8dsp_init_aarch64.c
libavcodec/aarch64/vp8dsp_init_aarch64.c
+4
-4
No files found.
libavcodec/aarch64/vp8dsp_init_aarch64.c
View file @
f1011ea2
...
...
@@ -45,10 +45,10 @@ av_cold void ff_vp78dsp_init_aarch64(VP8DSPContext *dsp)
dsp
->
put_vp8_epel_pixels_tab
[
0
][
2
][
2
]
=
ff_put_vp8_epel16_h6v6_neon
;
dsp
->
put_vp8_epel_pixels_tab
[
1
][
0
][
0
]
=
ff_put_vp8_pixels8_neon
;
dsp
->
put_vp8_epel_pixels_tab
[
1
][
2
][
2
]
=
ff_put_vp8_epel8_h6v6_neon
;
dsp
->
put_vp8_epel_pixels_tab
[
1
][
2
][
1
]
=
ff_put_vp8_epel8_h4v6_neon
;
dsp
->
put_vp8_epel_pixels_tab
[
1
][
1
][
2
]
=
ff_put_vp8_epel8_h6v4_neon
;
dsp
->
put_vp8_epel_pixels_tab
[
1
][
1
][
1
]
=
ff_put_vp8_epel8_h4v4_neon
;
dsp
->
put_vp8_epel_pixels_tab
[
1
][
1
][
2
]
=
ff_put_vp8_epel8_h6v4_neon
;
dsp
->
put_vp8_epel_pixels_tab
[
1
][
2
][
1
]
=
ff_put_vp8_epel8_h4v6_neon
;
dsp
->
put_vp8_epel_pixels_tab
[
1
][
2
][
2
]
=
ff_put_vp8_epel8_h6v6_neon
;
}
av_cold
void
ff_vp8dsp_init_aarch64
(
VP8DSPContext
*
dsp
)
...
...
@@ -60,8 +60,8 @@ av_cold void ff_vp8dsp_init_aarch64(VP8DSPContext *dsp)
dsp
->
vp8_idct_dc_add
=
ff_vp8_idct_dc_add_neon
;
dsp
->
vp8_idct_dc_add4y
=
ff_vp8_idct_dc_add4y_neon
;
dsp
->
vp8_h_loop_filter16y
=
ff_vp8_h_loop_filter16_neon
;
dsp
->
vp8_v_loop_filter16y
=
ff_vp8_v_loop_filter16_neon
;
dsp
->
vp8_h_loop_filter16y
=
ff_vp8_h_loop_filter16_neon
;
dsp
->
vp8_v_loop_filter8uv
=
ff_vp8_v_loop_filter8uv_neon
;
dsp
->
vp8_h_loop_filter8uv
=
ff_vp8_h_loop_filter8uv_neon
;
...
...
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