Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
04f8a699
Commit
04f8a699
authored
Aug 01, 2002
by
Jon Lech Johansen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* ./plugins/idct/idctaltivec.c: compile fix
parent
d049dd48
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
11 deletions
+11
-11
plugins/idct/idctaltivec.c
plugins/idct/idctaltivec.c
+11
-11
No files found.
plugins/idct/idctaltivec.c
View file @
04f8a699
...
...
@@ -2,7 +2,7 @@
* idctaltivec.c : AltiVec IDCT module
*****************************************************************************
* Copyright (C) 2001 VideoLAN
* $Id: idctaltivec.c,v 1.2
7 2002/07/31 20:56:51 sam
Exp $
* $Id: idctaltivec.c,v 1.2
8 2002/08/01 22:58:38 jlj
Exp $
*
* Authors: Christophe Massiot <massiot@via.ecp.fr>
*
...
...
@@ -699,21 +699,21 @@ void idct_block_add_altivec (vector_s16_t * block, unsigned char * dest,
#ifndef __BUILD_ALTIVEC_ASM__
static
void
*
IDCTFunctions
[]
=
{
InitIDCT
,
NormScan
,
/* FIXME : it would be a nice idea to use sparse IDCT functions */
idct_block_add_altivec
,
idct_block_copy_altivec
,
idct_block_add_altivec
,
idct_block_copy_altivec
};
/*****************************************************************************
* Functions exported as capabilities. They are declared as static so that
* we don't pollute the namespace too much.
*****************************************************************************/
static
void
idct_getfunctions
(
function_list_t
*
p_function_list
)
static
int
Open
(
vlc_object_t
*
p_this
)
{
#define F p_function_list->functions.idct
F
.
pf_idct_init
=
InitIDCT
;
F
.
pf_norm_scan
=
NormScan
;
/* FIXME : it would be a nice idea to use sparse IDCT functions */
F
.
pf_sparse_idct_add
=
idct_block_add_altivec
;
F
.
pf_sparse_idct_copy
=
idct_block_copy_altivec
;
F
.
pf_idct_add
=
idct_block_add_altivec
;
F
.
pf_idct_copy
=
idct_block_copy_altivec
;
#undef F
p_this
->
p_private
=
IDCTFunctions
;
return
VLC_SUCCESS
;
}
#endif
/* __BUILD_ALTIVEC_ASM__ */
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