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
1d22fe1f
Commit
1d22fe1f
authored
Dec 13, 2007
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Forward declare vlc_url_t
parent
64fcf937
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
5 deletions
+3
-5
include/vlc_common.h
include/vlc_common.h
+1
-0
include/vlc_url.h
include/vlc_url.h
+2
-2
modules/stream_out/rtcp.c
modules/stream_out/rtcp.c
+0
-3
No files found.
include/vlc_common.h
View file @
1d22fe1f
...
...
@@ -383,6 +383,7 @@ typedef struct virtual_socket_t v_socket_t;
typedef
struct
sockaddr
sockaddr
;
typedef
struct
addrinfo
addrinfo
;
typedef
struct
vlc_acl_t
vlc_acl_t
;
typedef
struct
vlc_url_t
vlc_url_t
;
/* Misc */
typedef
struct
iso639_lang_t
iso639_lang_t
;
...
...
include/vlc_url.h
View file @
1d22fe1f
...
...
@@ -29,7 +29,7 @@
#ifndef __VLC_URL_H
# define __VLC_URL_H
typedef
struc
t
struct
vlc_url_
t
{
char
*
psz_protocol
;
char
*
psz_username
;
...
...
@@ -42,7 +42,7 @@ typedef struct
char
*
psz_option
;
char
*
psz_buffer
;
/* to be freed */
}
vlc_url_t
;
};
VLC_EXPORT
(
char
*
,
unescape_URI_duplicate
,
(
const
char
*
psz
)
);
VLC_EXPORT
(
void
,
unescape_URI
,
(
char
*
psz
)
);
...
...
modules/stream_out/rtcp.c
View file @
1d22fe1f
...
...
@@ -27,9 +27,6 @@
#include <vlc_block.h>
#include <vlc_network.h>
#include <vlc_url.h>
#include <vlc_sout.h>
#include "rtp.h"
...
...
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