Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
975a356c
Commit
975a356c
authored
May 28, 2008
by
Jean-Paul Saman
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of git@git.videolan.org:vlc
parents
b4fdd335
e41bccdf
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
34 additions
and
46 deletions
+34
-46
modules/stream_out/standard.c
modules/stream_out/standard.c
+14
-5
src/network/getaddrinfo.c
src/network/getaddrinfo.c
+19
-33
src/video_output/video_text.c
src/video_output/video_text.c
+1
-8
No files found.
modules/stream_out/standard.c
View file @
975a356c
...
@@ -386,24 +386,33 @@ static int Open( vlc_object_t *p_this )
...
@@ -386,24 +386,33 @@ static int Open( vlc_object_t *p_this )
if
(
var_GetBool
(
p_stream
,
SOUT_CFG_PREFIX
"sap"
)
)
if
(
var_GetBool
(
p_stream
,
SOUT_CFG_PREFIX
"sap"
)
)
{
{
/* Create the SDP */
/* Create the SDP */
static
const
struct
addrinfo
hints
=
{
.
ai_family
=
AF_UNSPEC
,
.
ai_socktype
=
SOCK_DGRAM
,
.
ai_protocol
=
0
,
.
ai_flags
=
AI_NUMERICHOST
|
AI_NUMERICSERV
};
char
*
shost
=
var_GetNonEmptyString
(
p_access
,
"src-addr"
);
char
*
shost
=
var_GetNonEmptyString
(
p_access
,
"src-addr"
);
char
*
dhost
=
var_GetNonEmptyString
(
p_access
,
"dst-addr"
);
char
*
dhost
=
var_GetNonEmptyString
(
p_access
,
"dst-addr"
);
int
sport
=
var_GetInteger
(
p_access
,
"src-port"
);
int
sport
=
var_GetInteger
(
p_access
,
"src-port"
);
int
dport
=
var_GetInteger
(
p_access
,
"dst-port"
);
int
dport
=
var_GetInteger
(
p_access
,
"dst-port"
);
char
port
[
6
];
struct
sockaddr_storage
src
,
dst
;
struct
sockaddr_storage
src
,
dst
;
socklen_t
srclen
=
0
,
dstlen
=
0
;
socklen_t
srclen
=
0
,
dstlen
=
0
;
struct
addrinfo
*
res
;
struct
addrinfo
*
res
;
if
(
vlc_getaddrinfo
(
VLC_OBJECT
(
p_stream
),
dhost
,
dport
,
NULL
,
&
res
)
==
0
)
snprintf
(
port
,
sizeof
(
port
),
"%d"
,
dport
);
if
(
getaddrinfo
(
dhost
,
port
,
&
hints
,
&
res
)
==
0
)
{
{
memcpy
(
&
dst
,
res
->
ai_addr
,
dstlen
=
res
->
ai_addrlen
);
memcpy
(
&
dst
,
res
->
ai_addr
,
dstlen
=
res
->
ai_addrlen
);
vlc_
freeaddrinfo
(
res
);
freeaddrinfo
(
res
);
}
}
if
(
vlc_getaddrinfo
(
VLC_OBJECT
(
p_stream
),
shost
,
sport
,
NULL
,
&
res
)
==
0
)
snprintf
(
port
,
sizeof
(
port
),
"%d"
,
sport
);
if
(
getaddrinfo
(
shost
,
port
,
&
hints
,
&
res
)
==
0
)
{
{
memcpy
(
&
src
,
res
->
ai_addr
,
srclen
=
res
->
ai_addrlen
);
memcpy
(
&
src
,
res
->
ai_addr
,
srclen
=
res
->
ai_addrlen
);
vlc_
freeaddrinfo
(
res
);
freeaddrinfo
(
res
);
}
}
char
*
head
=
vlc_sdp_Start
(
VLC_OBJECT
(
p_stream
),
SOUT_CFG_PREFIX
,
char
*
head
=
vlc_sdp_Start
(
VLC_OBJECT
(
p_stream
),
SOUT_CFG_PREFIX
,
...
...
src/network/getaddrinfo.c
View file @
975a356c
...
@@ -60,11 +60,11 @@
...
@@ -60,11 +60,11 @@
#ifndef HAVE_GAI_STRERROR
#ifndef HAVE_GAI_STRERROR
static
struct
static
const
struct
{
{
int
code
;
char
code
;
const
char
*
msg
;
const
char
msg
[
41
]
}
const
__
gai_errlist
[]
=
}
gai_errlist
[]
=
{
{
{
0
,
"Error 0"
},
{
0
,
"Error 0"
},
{
EAI_BADFLAGS
,
"Invalid flag used"
},
{
EAI_BADFLAGS
,
"Invalid flag used"
},
...
@@ -82,18 +82,18 @@ static struct
...
@@ -82,18 +82,18 @@ static struct
{
0
,
NULL
}
{
0
,
NULL
}
};
};
static
const
char
__
gai_unknownerr
[]
=
"Unrecognized error number"
;
static
const
char
gai_unknownerr
[]
=
"Unrecognized error number"
;
/****************************************************************************
/****************************************************************************
* Converts an EAI_* error code into human readable english text.
* Converts an EAI_* error code into human readable english text.
****************************************************************************/
****************************************************************************/
const
char
*
vlc_gai_strerror
(
int
errnum
)
const
char
*
vlc_gai_strerror
(
int
errnum
)
{
{
for
(
unsigned
i
=
0
;
__
gai_errlist
[
i
].
msg
!=
NULL
;
i
++
)
for
(
unsigned
i
=
0
;
gai_errlist
[
i
].
msg
!=
NULL
;
i
++
)
if
(
errnum
==
__
gai_errlist
[
i
].
code
)
if
(
errnum
==
gai_errlist
[
i
].
code
)
return
__
gai_errlist
[
i
].
msg
;
return
gai_errlist
[
i
].
msg
;
return
__
gai_unknownerr
;
return
gai_unknownerr
;
}
}
#else
/* ifndef HAVE_GAI_STRERROR */
#else
/* ifndef HAVE_GAI_STRERROR */
const
char
*
vlc_gai_strerror
(
int
errnum
)
const
char
*
vlc_gai_strerror
(
int
errnum
)
...
@@ -622,19 +622,13 @@ int vlc_getaddrinfo( vlc_object_t *p_this, const char *node,
...
@@ -622,19 +622,13 @@ int vlc_getaddrinfo( vlc_object_t *p_this, const char *node,
if
(
hints
.
ai_family
==
AF_UNSPEC
)
if
(
hints
.
ai_family
==
AF_UNSPEC
)
{
{
vlc_value_t
val
;
var_Create
(
p_this
,
"ipv4"
,
VLC_VAR_BOOL
|
VLC_VAR_DOINHERIT
);
var_Get
(
p_this
,
"ipv4"
,
&
val
);
if
(
val
.
b_bool
)
hints
.
ai_family
=
AF_INET
;
#ifdef AF_INET6
#ifdef AF_INET6
var_Create
(
p_this
,
"ipv6"
,
VLC_VAR_BOOL
|
VLC_VAR_DOINHERIT
);
if
(
var_CreateGetBool
(
p_this
,
"ipv6"
))
var_Get
(
p_this
,
"ipv6"
,
&
val
);
if
(
val
.
b_bool
)
hints
.
ai_family
=
AF_INET6
;
hints
.
ai_family
=
AF_INET6
;
else
#endif
#endif
if
(
var_CreateGetBool
(
p_this
,
"ipv4"
))
hints
.
ai_family
=
AF_INET
;
}
}
/*
/*
...
@@ -683,21 +677,13 @@ int vlc_getaddrinfo( vlc_object_t *p_this, const char *node,
...
@@ -683,21 +677,13 @@ int vlc_getaddrinfo( vlc_object_t *p_this, const char *node,
#if defined (HAVE_GETADDRINFO)
#if defined (HAVE_GETADDRINFO)
# ifdef AI_IDN
# ifdef AI_IDN
/* Run-time I18n Domain Names support */
/* Run-time I18n Domain Names support */
static
bool
b_idn
=
true
;
/* beware of thread-safety */
hints
.
ai_flags
|=
AI_IDN
;
int
ret
=
getaddrinfo
(
psz_node
,
psz_service
,
&
hints
,
res
);
if
(
ret
!=
EAI_BADFLAGS
)
return
ret
;
if
(
b_idn
)
/* IDN not available: disable and retry without it */
{
hints
.
ai_flags
&=
~
AI_IDN
;
hints
.
ai_flags
|=
AI_IDN
;
int
ret
=
getaddrinfo
(
psz_node
,
psz_service
,
&
hints
,
res
);
if
(
ret
!=
EAI_BADFLAGS
)
return
ret
;
/* IDN not available: disable and retry without it */
hints
.
ai_flags
&=
~
AI_IDN
;
b_idn
=
false
;
msg_Info
(
p_this
,
"International Domain Names not supported"
);
}
# endif
# endif
return
getaddrinfo
(
psz_node
,
psz_service
,
&
hints
,
res
);
return
getaddrinfo
(
psz_node
,
psz_service
,
&
hints
,
res
);
#else
#else
...
...
src/video_output/video_text.c
View file @
975a356c
...
@@ -131,14 +131,7 @@ void __vout_OSDMessage( vlc_object_t *p_caller, int i_channel,
...
@@ -131,14 +131,7 @@ void __vout_OSDMessage( vlc_object_t *p_caller, int i_channel,
if
(
!
config_GetInt
(
p_caller
,
"osd"
)
)
return
;
if
(
!
config_GetInt
(
p_caller
,
"osd"
)
)
return
;
if
(
p_caller
->
i_object_type
==
VLC_OBJECT_VOUT
)
p_vout
=
vlc_object_find
(
p_caller
,
VLC_OBJECT_VOUT
,
FIND_ANYWHERE
);
{
p_vout
=
(
vout_thread_t
*
)
p_caller
;
vlc_object_yield
(
p_vout
);
}
else
p_vout
=
vlc_object_find
(
p_caller
,
VLC_OBJECT_VOUT
,
FIND_ANYWHERE
);
if
(
p_vout
)
if
(
p_vout
)
{
{
va_start
(
args
,
psz_format
);
va_start
(
args
,
psz_format
);
...
...
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