Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Steve Lhomme
VLC
Commits
2ca48ef0
Commit
2ca48ef0
authored
Nov 15, 2004
by
Laurent Aimar
Browse files
* input: added a meta field to input.
* network: export ipv4 name resolution.
parent
9bb94e24
Changes
3
Hide whitespace changes
Inline
Side-by-side
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