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
Steve Lhomme
VLC
Commits
f9dc58a3
Commit
f9dc58a3
authored
Sep 28, 2001
by
Christophe Massiot
Browse files
Fixed a stupid mistake in NormScan().
parent
43cfba30
Changes
1
Hide whitespace changes
Inline
Side-by-side
plugins/idct/idctaltivec.c
View file @
f9dc58a3
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
* idctaltivec.c : Altivec IDCT module
* idctaltivec.c : Altivec IDCT module
*****************************************************************************
*****************************************************************************
* Copyright (C) 1999, 2000 VideoLAN
* Copyright (C) 1999, 2000 VideoLAN
* $Id: idctaltivec.c,v 1.1
5
2001/09/2
5 11:46:14
massiot Exp $
* $Id: idctaltivec.c,v 1.1
6
2001/09/2
8 09:55:20
massiot Exp $
*
*
* Authors: Christophe Massiot <massiot@via.ecp.fr>
* Authors: Christophe Massiot <massiot@via.ecp.fr>
*
*
...
@@ -103,10 +103,10 @@ static void NormScan( u8 ppi_scan[2][64] )
...
@@ -103,10 +103,10 @@ static void NormScan( u8 ppi_scan[2][64] )
for
(
i
=
0
;
i
<
64
;
i
++
)
for
(
i
=
0
;
i
<
64
;
i
++
)
{
{
j
=
ppi_scan
[
0
][
i
];
j
=
ppi_scan
[
0
][
i
];
ppi_scan
[
0
][
i
]
=
(
j
&
0x38
)
|
((
j
&
6
)
>>
1
)
|
((
j
&
1
)
<<
2
);
ppi_scan
[
0
][
i
]
=
(
j
>>
3
)
|
((
j
&
7
)
<<
3
);
j
=
ppi_scan
[
1
][
i
];
j
=
ppi_scan
[
1
][
i
];
ppi_scan
[
1
][
i
]
=
(
j
&
0x38
)
|
((
j
&
6
)
>>
1
)
|
((
j
&
1
)
<<
2
);
ppi_scan
[
1
][
i
]
=
(
j
>>
3
)
|
((
j
&
7
)
<<
3
);
}
}
}
}
...
...
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