Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
F
ffmpeg
Project
Project
Details
Activity
Releases
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
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Stefan Westerfeld
ffmpeg
Commits
dd57b316
Commit
dd57b316
authored
Feb 02, 2016
by
Timothy Gu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
diracdsp_mmx: Fix some more indentations
parent
f5e2b8de
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
diracdsp_mmx.c
libavcodec/x86/diracdsp_mmx.c
+6
-6
No files found.
libavcodec/x86/diracdsp_mmx.c
View file @
dd57b316
...
...
@@ -91,22 +91,22 @@ void ff_put_dirac_pixels16_sse2(uint8_t *dst, const uint8_t *src[5], int stride,
if
(
h
&
3
)
ff_put_dirac_pixels16_c
(
dst
,
src
,
stride
,
h
);
else
ff_put_pixels16_sse2
(
dst
,
src
[
0
],
stride
,
h
);
ff_put_pixels16_sse2
(
dst
,
src
[
0
],
stride
,
h
);
}
void
ff_avg_dirac_pixels16_sse2
(
uint8_t
*
dst
,
const
uint8_t
*
src
[
5
],
int
stride
,
int
h
)
{
if
(
h
&
3
)
ff_avg_dirac_pixels16_c
(
dst
,
src
,
stride
,
h
);
else
ff_avg_pixels16_sse2
(
dst
,
src
[
0
],
stride
,
h
);
ff_avg_pixels16_sse2
(
dst
,
src
[
0
],
stride
,
h
);
}
void
ff_put_dirac_pixels32_sse2
(
uint8_t
*
dst
,
const
uint8_t
*
src
[
5
],
int
stride
,
int
h
)
{
if
(
h
&
3
)
{
ff_put_dirac_pixels32_c
(
dst
,
src
,
stride
,
h
);
}
else
{
ff_put_pixels16_sse2
(
dst
,
src
[
0
]
,
stride
,
h
);
ff_put_pixels16_sse2
(
dst
+
16
,
src
[
0
]
+
16
,
stride
,
h
);
ff_put_pixels16_sse2
(
dst
,
src
[
0
]
,
stride
,
h
);
ff_put_pixels16_sse2
(
dst
+
16
,
src
[
0
]
+
16
,
stride
,
h
);
}
}
void
ff_avg_dirac_pixels32_sse2
(
uint8_t
*
dst
,
const
uint8_t
*
src
[
5
],
int
stride
,
int
h
)
...
...
@@ -114,8 +114,8 @@ void ff_avg_dirac_pixels32_sse2(uint8_t *dst, const uint8_t *src[5], int stride,
if
(
h
&
3
)
{
ff_avg_dirac_pixels32_c
(
dst
,
src
,
stride
,
h
);
}
else
{
ff_avg_pixels16_sse2
(
dst
,
src
[
0
]
,
stride
,
h
);
ff_avg_pixels16_sse2
(
dst
+
16
,
src
[
0
]
+
16
,
stride
,
h
);
ff_avg_pixels16_sse2
(
dst
,
src
[
0
]
,
stride
,
h
);
ff_avg_pixels16_sse2
(
dst
+
16
,
src
[
0
]
+
16
,
stride
,
h
);
}
}
...
...
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