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
41306ad7
Commit
41306ad7
authored
Jun 20, 2003
by
Alexis de Lattre
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
modules/misc/sap.c: fix for the default scope of the IPv6 announces.
python/setup.py: a configuration that should work better.
parent
59b5fa56
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
7 deletions
+7
-7
modules/misc/sap.c
modules/misc/sap.c
+5
-5
python/setup.py
python/setup.py
+2
-2
No files found.
modules/misc/sap.c
View file @
41306ad7
...
...
@@ -2,7 +2,7 @@
* sap.c : SAP interface module
*****************************************************************************
* Copyright (C) 2001 VideoLAN
* $Id: sap.c,v 1.1
4 2003/06/18 12:18:51 zorglub
Exp $
* $Id: sap.c,v 1.1
5 2003/06/20 11:42:07 alexis
Exp $
*
* Authors: Arnaud Schauly <gitan@via.ecp.fr>
*
...
...
@@ -151,9 +151,9 @@ vlc_module_begin();
"Set this if you want SAP to listen for IPv6 announces"
,
VLC_TRUE
);
add_string
(
"sap-ipv6-scope"
,
"
3
"
,
NULL
,
add_string
(
"sap-ipv6-scope"
,
"
8
"
,
NULL
,
"IPv6-SAP scope"
,
"Sets the scope for IPv6 announces (default is
3
)"
,
"Sets the scope for IPv6 announces (default is
8
)"
,
VLC_TRUE
);
set_description
(
_
(
"SAP interface"
)
);
...
...
python/setup.py
View file @
41306ad7
from
distutils.core
import
setup
,
Extension
FFMPEG_DIR
=
'
/home/cyril
/ffmpeg'
FFMPEG_DIR
=
'
..
/ffmpeg'
vlc
=
Extension
(
'vlc'
,
sources
=
[
'vlcmodule.c'
],
...
...
@@ -9,7 +9,7 @@ vlc = Extension('vlc',
'memcpymmx'
,
'stream_out_transcode'
,
'i420_rgb_mmx'
,
'i420_yuy2_mmx'
,
'i420_ymga_mmx'
,
'i422_yuy2_mmx'
,
'memcpymmxext'
,
'memcpy3dn'
,
'
encoder_ffmpeg'
,
'
avcodec'
],
'avcodec'
],
library_dirs
=
[
'../lib'
,
'../modules/stream_out'
,
'../modules/encoder/ffmpeg'
,
'../modules/misc/memcpy'
,
'../modules/video_chroma'
,
...
...
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