Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
VideoLAN
x264
Commits
f5d929ab
Commit
f5d929ab
authored
Jun 23, 2018
by
Luca Barbato
Committed by
Henrik Gramner
Jun 25, 2018
Browse files
ppc: Fix zigzag_interleave
The permv array has 3 elements
parent
7737e6ad
Changes
1
Hide whitespace changes
Inline
Side-by-side
common/ppc/dct.c
View file @
f5d929ab
...
@@ -641,7 +641,7 @@ void x264_zigzag_interleave_8x8_cavlc_altivec( int16_t *dst, int16_t *src, uint8
...
@@ -641,7 +641,7 @@ void x264_zigzag_interleave_8x8_cavlc_altivec( int16_t *dst, int16_t *src, uint8
{
{
vec_s16_t
tmpv
[
8
];
vec_s16_t
tmpv
[
8
];
vec_s16_t
merge
[
2
];
vec_s16_t
merge
[
2
];
vec_s16_t
permv
[
2
];
vec_s16_t
permv
[
3
];
vec_s16_t
orv
[
4
];
vec_s16_t
orv
[
4
];
vec_s16_t
src0v
=
vec_ld
(
0
*
16
,
src
);
vec_s16_t
src0v
=
vec_ld
(
0
*
16
,
src
);
vec_s16_t
src1v
=
vec_ld
(
1
*
16
,
src
);
vec_s16_t
src1v
=
vec_ld
(
1
*
16
,
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