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
2ca48ef0
Commit
2ca48ef0
authored
Nov 15, 2004
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* input: added a meta field to input.
* network: export ipv4 name resolution.
parent
9bb94e24
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
0 deletions
+5
-0
include/network.h
include/network.h
+1
-0
include/vlc/input.h
include/vlc/input.h
+1
-0
include/vlc_input.h
include/vlc_input.h
+3
-0
No files found.
include/network.h
View file @
2ca48ef0
...
...
@@ -211,6 +211,7 @@ static inline char *vlc_b64_encode( unsigned char *src )
return
ret
;
}
VLC_EXPORT
(
int
,
net_ConvertIPv4
,
(
uint32_t
*
p_addr
,
const
char
*
psz_address
)
);
/* Portable networking layer communication */
#define net_OpenTCP(a, b, c) __net_OpenTCP(VLC_OBJECT(a), b, c)
...
...
include/vlc/input.h
View file @
2ca48ef0
...
...
@@ -35,6 +35,7 @@ extern "C" {
* Required internal headers
*****************************************************************************/
#include "vlc_block.h"
#include "vlc_meta.h"
#include "vlc_es.h"
#include "vlc_es_out.h"
...
...
include/vlc_input.h
View file @
2ca48ef0
...
...
@@ -346,6 +346,9 @@ struct input_thread_t
int
i_bookmark
;
seekpoint_t
**
bookmark
;
/* Global meta datas FIXME move to input_item_t ? */
vlc_meta_t
*
p_meta
;
/* Output */
es_out_t
*
p_es_out
;
sout_instance_t
*
p_sout
;
/* XXX Move it to es_out ? */
...
...
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