Commit b497df76 authored by Pierre Ynard's avatar Pierre Ynard

vlm: use make_URI() with --vlm-conf

parent d304fd2e
...@@ -49,6 +49,7 @@ ...@@ -49,6 +49,7 @@
#include <vlc_charset.h> #include <vlc_charset.h>
#include <vlc_fs.h> #include <vlc_fs.h>
#include <vlc_sout.h> #include <vlc_sout.h>
#include <vlc_url.h>
#include "../stream_output/stream_output.h" #include "../stream_output/stream_output.h"
#include "../libvlc.h" #include "../libvlc.h"
...@@ -522,9 +523,11 @@ error: ...@@ -522,9 +523,11 @@ error:
return VLC_EGENERIC; return VLC_EGENERIC;
} }
static int ExecuteLoad( vlm_t *p_vlm, const char *psz_url, vlm_message_t **pp_status ) static int ExecuteLoad( vlm_t *p_vlm, const char *psz_path, vlm_message_t **pp_status )
{ {
char *psz_url = make_URI( psz_path, NULL );
stream_t *p_stream = stream_UrlNew( p_vlm, psz_url ); stream_t *p_stream = stream_UrlNew( p_vlm, psz_url );
free( psz_url );
uint64_t i_size; uint64_t i_size;
char *psz_buffer; char *psz_buffer;
......
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