Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
FFmpeg
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
libremedia
Tethys
FFmpeg
Commits
0e16b3e2
Commit
0e16b3e2
authored
8 years ago
by
James Darnley
Browse files
Options
Downloads
Patches
Plain Diff
avcodec/h264: add avx 8-bit 4:2:0 chroma h intra deblock/loop filter
~1.10x faster (69 vs. 63 cycles) compared to mmxext function
parent
987ffe4b
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
libavcodec/x86/h264_deblock.asm
+9
-0
9 additions, 0 deletions
libavcodec/x86/h264_deblock.asm
libavcodec/x86/h264dsp_init.c
+1
-0
1 addition, 0 deletions
libavcodec/x86/h264dsp_init.c
with
10 additions
and
0 deletions
libavcodec/x86/h264_deblock.asm
+
9
−
0
View file @
0e16b3e2
...
@@ -1223,6 +1223,15 @@ cglobal deblock_v_chroma_intra_8, 4, 5, 8, pix_, stride_, alpha_, beta_
...
@@ -1223,6 +1223,15 @@ cglobal deblock_v_chroma_intra_8, 4, 5, 8, pix_, stride_, alpha_, beta_
movq
[
pix_q
],
m2
movq
[
pix_q
],
m2
RET
RET
cglobal
deblock_h_chroma_intra_8
,
4
,
6
,
8
,
pix_
,
stride_
,
al
pha_
,
beta_
CHROMA_H_START_XMM
r4
,
r5
LOAD_8_ROWS
PASS8ROWS
(
pix_q
-
2
,
r4
-
2
,
stride_q
,
r5
)
TRANSPOSE_8x4B_XMM
CHROMA_INTRA_BODY_XMM
TRANSPOSE_4x8B_XMM
STORE_8_ROWS
PASS8ROWS
(
pix_q
-
2
,
r4
-
2
,
stride_q
,
r5
)
RET
%endmacro
; DEBLOCK_CHROMA_XMM
%endmacro
; DEBLOCK_CHROMA_XMM
DEBLOCK_CHROMA_XMM
avx
DEBLOCK_CHROMA_XMM
avx
...
...
This diff is collapsed.
Click to expand it.
libavcodec/x86/h264dsp_init.c
+
1
−
0
View file @
0e16b3e2
...
@@ -322,6 +322,7 @@ av_cold void ff_h264dsp_init_x86(H264DSPContext *c, const int bit_depth,
...
@@ -322,6 +322,7 @@ av_cold void ff_h264dsp_init_x86(H264DSPContext *c, const int bit_depth,
c
->
h264_v_loop_filter_chroma_intra
=
ff_deblock_v_chroma_intra_8_avx
;
c
->
h264_v_loop_filter_chroma_intra
=
ff_deblock_v_chroma_intra_8_avx
;
if
(
chroma_format_idc
<=
1
)
{
if
(
chroma_format_idc
<=
1
)
{
c
->
h264_h_loop_filter_chroma
=
ff_deblock_h_chroma_8_avx
;
c
->
h264_h_loop_filter_chroma
=
ff_deblock_h_chroma_8_avx
;
c
->
h264_h_loop_filter_chroma_intra
=
ff_deblock_h_chroma_intra_8_avx
;
}
else
{
}
else
{
c
->
h264_h_loop_filter_chroma
=
ff_deblock_h_chroma422_8_avx
;
c
->
h264_h_loop_filter_chroma
=
ff_deblock_h_chroma422_8_avx
;
}
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment