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
52985bd2
Commit
52985bd2
authored
Mar 26, 2001
by
Sam Hocevar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
- fixed SDL compilation, thanks to Colin. - disabled Altivec iDCT until it works.
parent
a32ef53e
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
2 deletions
+7
-2
Makefile.in
Makefile.in
+4
-0
plugins/idct/idctaltivec.c
plugins/idct/idctaltivec.c
+3
-2
No files found.
Makefile.in
View file @
52985bd2
...
...
@@ -753,7 +753,11 @@ lib/sdl.so: $(PLUGIN_SDL)
$(CC)
$(PCFLAGS)
-o
$@
$^
$(PLCFLAGS)
$(LIB_SDL)
lib/ts.so
:
$(PLUGIN_TS)
ifeq
($(SYS),darwin)
$(CC)
$(PCFLAGS)
-o
$@
$^
$(PLCFLAGS)
-framework
AGL
-framework
Carbon
else
$(CC)
$(PCFLAGS)
-o
$@
$^
$(PLCFLAGS)
endif
lib/x11.so
:
$(PLUGIN_X11)
ifeq
($(SYS),nto-qnx)
...
...
plugins/idct/idctaltivec.c
View file @
52985bd2
...
...
@@ -2,7 +2,7 @@
* idctaltivec.c : Altivec IDCT module
*****************************************************************************
* Copyright (C) 1999, 2000 VideoLAN
* $Id: idctaltivec.c,v 1.
2 2001/03/21 02:58:29
sam Exp $
* $Id: idctaltivec.c,v 1.
3 2001/03/26 19:06:18
sam Exp $
*
* Authors: Christophe Massiot <massiot@via.ecp.fr>
*
...
...
@@ -148,7 +148,8 @@ static int idct_Probe( probedata_t *p_data )
}
else
{
return
(
200
);
/* The Altivec iDCT is deactivated until it really works */
return
(
0
/* 200 */
);
}
}
else
...
...
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