Commit 2ca48ef0 authored by Laurent Aimar's avatar Laurent Aimar

* input: added a meta field to input.

 * network: export ipv4 name resolution.
parent 9bb94e24
...@@ -211,6 +211,7 @@ static inline char *vlc_b64_encode( unsigned char *src ) ...@@ -211,6 +211,7 @@ static inline char *vlc_b64_encode( unsigned char *src )
return ret; return ret;
} }
VLC_EXPORT( int, net_ConvertIPv4, ( uint32_t *p_addr, const char * psz_address ) );
/* Portable networking layer communication */ /* Portable networking layer communication */
#define net_OpenTCP(a, b, c) __net_OpenTCP(VLC_OBJECT(a), b, c) #define net_OpenTCP(a, b, c) __net_OpenTCP(VLC_OBJECT(a), b, c)
......
...@@ -35,6 +35,7 @@ extern "C" { ...@@ -35,6 +35,7 @@ extern "C" {
* Required internal headers * Required internal headers
*****************************************************************************/ *****************************************************************************/
#include "vlc_block.h" #include "vlc_block.h"
#include "vlc_meta.h"
#include "vlc_es.h" #include "vlc_es.h"
#include "vlc_es_out.h" #include "vlc_es_out.h"
......
...@@ -346,6 +346,9 @@ struct input_thread_t ...@@ -346,6 +346,9 @@ struct input_thread_t
int i_bookmark; int i_bookmark;
seekpoint_t **bookmark; seekpoint_t **bookmark;
/* Global meta datas FIXME move to input_item_t ? */
vlc_meta_t *p_meta;
/* Output */ /* Output */
es_out_t *p_es_out; es_out_t *p_es_out;
sout_instance_t *p_sout; /* XXX Move it to es_out ? */ sout_instance_t *p_sout; /* XXX Move it to es_out ? */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment