Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
F
ffmpeg
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
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
ffmpeg
Commits
6d79971e
Commit
6d79971e
authored
Mar 14, 2009
by
Diego Biurrun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
prettyprinting cosmetics
Originally committed as revision 17962 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
f5b2476f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
15 deletions
+15
-15
h264_altivec.c
libavcodec/ppc/h264_altivec.c
+9
-9
h264_template_altivec.c
libavcodec/ppc/h264_template_altivec.c
+6
-6
No files found.
libavcodec/ppc/h264_altivec.c
View file @
6d79971e
...
...
@@ -185,9 +185,9 @@ static void OPNAME ## h264_qpel ## SIZE ## _mc32_ ## CODETYPE(uint8_t *dst, uint
void
put_no_rnd_h264_chroma_mc8_altivec
(
uint8_t
*
dst
,
uint8_t
*
src
,
int
stride
,
int
h
,
int
x
,
int
y
)
{
DECLARE_ALIGNED_16
(
signed
int
,
ABCD
[
4
])
=
{((
8
-
x
)
*
(
8
-
y
)),
((
x
)
*
(
8
-
y
)),
((
8
-
x
)
*
(
y
)),
((
x
)
*
(
y
))};
((
x
)
*
(
8
-
y
)),
((
8
-
x
)
*
(
y
)),
((
x
)
*
(
y
))};
register
int
i
;
vec_u8
fperm
;
const
vec_s32
vABCD
=
vec_ld
(
0
,
ABCD
);
...
...
@@ -210,14 +210,14 @@ void put_no_rnd_h264_chroma_mc8_altivec(uint8_t * dst, uint8_t * src, int stride
if
(((
unsigned
long
)
dst
)
%
16
==
0
)
{
fperm
=
(
vec_u8
){
0x10
,
0x11
,
0x12
,
0x13
,
0x14
,
0x15
,
0x16
,
0x17
,
0x08
,
0x09
,
0x0A
,
0x0B
,
0x0C
,
0x0D
,
0x0E
,
0x0F
};
0x14
,
0x15
,
0x16
,
0x17
,
0x08
,
0x09
,
0x0A
,
0x0B
,
0x0C
,
0x0D
,
0x0E
,
0x0F
};
}
else
{
fperm
=
(
vec_u8
){
0x00
,
0x01
,
0x02
,
0x03
,
0x04
,
0x05
,
0x06
,
0x07
,
0x18
,
0x19
,
0x1A
,
0x1B
,
0x1C
,
0x1D
,
0x1E
,
0x1F
};
0x04
,
0x05
,
0x06
,
0x07
,
0x18
,
0x19
,
0x1A
,
0x1B
,
0x1C
,
0x1D
,
0x1E
,
0x1F
};
}
vsrcAuc
=
vec_ld
(
0
,
src
);
...
...
libavcodec/ppc/h264_template_altivec.c
View file @
6d79971e
...
...
@@ -103,14 +103,14 @@ void PREFIX_h264_chroma_mc8_altivec(uint8_t * dst, uint8_t * src,
if
(((
unsigned
long
)
dst
)
%
16
==
0
)
{
fperm
=
(
vec_u8
){
0x10
,
0x11
,
0x12
,
0x13
,
0x14
,
0x15
,
0x16
,
0x17
,
0x08
,
0x09
,
0x0A
,
0x0B
,
0x0C
,
0x0D
,
0x0E
,
0x0F
};
0x14
,
0x15
,
0x16
,
0x17
,
0x08
,
0x09
,
0x0A
,
0x0B
,
0x0C
,
0x0D
,
0x0E
,
0x0F
};
}
else
{
fperm
=
(
vec_u8
){
0x00
,
0x01
,
0x02
,
0x03
,
0x04
,
0x05
,
0x06
,
0x07
,
0x18
,
0x19
,
0x1A
,
0x1B
,
0x1C
,
0x1D
,
0x1E
,
0x1F
};
0x04
,
0x05
,
0x06
,
0x07
,
0x18
,
0x19
,
0x1A
,
0x1B
,
0x1C
,
0x1D
,
0x1E
,
0x1F
};
}
vsrcAuc
=
vec_ld
(
0
,
src
);
...
...
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