Commit 3d8994ab authored by Laurent Aimar's avatar Laurent Aimar

* ninput, access: compilation fix.

parent 22c36814
...@@ -143,9 +143,9 @@ struct access_t ...@@ -143,9 +143,9 @@ struct access_t
access_sys_t *p_sys; access_sys_t *p_sys;
}; };
#define access2_New( a, b, c, d ) __acess2_New(VLC_OBJECT(a), b, c, d) #define access2_New( a, b ) __acess2_New(VLC_OBJECT(a), b )
VLC_EXPORT( demux_t *, __access2_New, ( vlc_object_t *p_obj, char *psz_mrl, stream_t *s, es_out_t *out ) ); VLC_EXPORT( access_t *, __access2_New, ( vlc_object_t *p_obj, char *psz_mrl ) );
VLC_EXPORT( void, access2_Delete, ( demux_t * ) ); VLC_EXPORT( void, access2_Delete, ( access_t * ) );
static inline int access2_vaControl( access_t *p_access, int i_query, va_list args ) static inline int access2_vaControl( access_t *p_access, int i_query, va_list args )
{ {
......
...@@ -56,8 +56,7 @@ int access_vaControlDefault( input_thread_t *p_input, int i_query, va_list args ...@@ -56,8 +56,7 @@ int access_vaControlDefault( input_thread_t *p_input, int i_query, va_list args
/***************************************************************************** /*****************************************************************************
* access2_New: * access2_New:
*****************************************************************************/ *****************************************************************************/
access_t *__access2_New( vlc_object_t *p_obj, access_t *__access2_New( vlc_object_t *p_obj, char *psz_mrl )
char *psz_mrl, stream_t *s, es_out_t *out )
{ {
msg_Err( p_obj, "access2_New not yet implemented" ); msg_Err( p_obj, "access2_New not yet implemented" );
return NULL; return NULL;
......
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