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
5d011ad3
Commit
5d011ad3
authored
Oct 03, 2001
by
Christophe Massiot
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* Enhanced --with-tuning
* Fixed a nasty segfault
parent
19868f14
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
10 deletions
+14
-10
Makefile.opts.in
Makefile.opts.in
+13
-8
plugins/mpeg/input_ps.c
plugins/mpeg/input_ps.c
+1
-2
No files found.
Makefile.opts.in
View file @
5d011ad3
...
...
@@ -225,20 +225,25 @@ endif
endif
endif
# Optimizations for x86 familiy
ifneq
(,$(findstring 86,$(ARCH)))
CFLAGS
+=
-mcpu
=
$(TUNING)
endif
# Optimizations for PowerPC
ifneq
(,$(findstring powerpc,$(ARCH)))
# Optimizations for PowerPC
CFLAGS
+=
-mmultiple
-mhard-float
-mstring
-mcpu
=
powerpc
ifneq
(,$(TUNING))
CFLAGS
+=
-mtune
=
$(TUNING)
endif
# Optimizations for Sparc
else
ifneq
(,$(findstring sparc,$(ARCH)))
# Optimizations for Sparc
CFLAGS
+=
-mhard-float
ifneq
(,$(TUNING))
CFLAGS
+=
-mcpu
=
$(TUNING)
endif
else
# Generic optimizations
ifneq
(,$(TUNING))
CFLAGS
+=
-mcpu
=
$(TUNING)
endif
endif
endif
#end of optimisations
...
...
plugins/mpeg/input_ps.c
View file @
5d011ad3
...
...
@@ -2,7 +2,7 @@
* input_ps.c: PS demux and packet management
*****************************************************************************
* Copyright (C) 1998, 1999, 2000 VideoLAN
* $Id: input_ps.c,v 1.3
6 2001/10/02 16:46:59
massiot Exp $
* $Id: input_ps.c,v 1.3
7 2001/10/03 14:41:08
massiot Exp $
*
* Authors: Christophe Massiot <massiot@via.ecp.fr>
* Cyril Deguet <asmax@via.ecp.fr>
...
...
@@ -401,7 +401,6 @@ static void PSEnd( input_thread_t * p_input )
#undef p_packet_cache
free
(
p_input
->
p_method_data
);
free
(
p_input
->
p_plugin_data
);
}
/*****************************************************************************
...
...
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