Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-1.1
Commits
f9dc58a3
Commit
f9dc58a3
authored
Sep 28, 2001
by
Christophe Massiot
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed a stupid mistake in NormScan().
parent
43cfba30
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
plugins/idct/idctaltivec.c
plugins/idct/idctaltivec.c
+3
-3
No files found.
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/25 11:46:14
massiot Exp $
* $Id: idctaltivec.c,v 1.1
6 2001/09/28 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