Commit 39d0e3e0 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

control/

parent cf4fe30a
...@@ -25,6 +25,7 @@ ...@@ -25,6 +25,7 @@
#include "http.h" #include "http.h"
#include "macros.h" #include "macros.h"
#include "vlc_url.h"
int E_(MacroParse)( macro_t *m, char *psz_src ) int E_(MacroParse)( macro_t *m, char *psz_src )
{ {
......
...@@ -23,6 +23,8 @@ ...@@ -23,6 +23,8 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/ *****************************************************************************/
#include <vlc/vlc.h>
#include <stdio.h>
#include "http.h" #include "http.h"
#include "vlc_strings.h" #include "vlc_strings.h"
......
...@@ -25,6 +25,8 @@ ...@@ -25,6 +25,8 @@
/***************************************************************************** /*****************************************************************************
* Preamble * Preamble
*****************************************************************************/ *****************************************************************************/
#include <vlc/vlc.h>
#include <stdlib.h> /* malloc(), free() */ #include <stdlib.h> /* malloc(), free() */
#include <string.h> #include <string.h>
...@@ -33,7 +35,6 @@ ...@@ -33,7 +35,6 @@
#include <ctype.h> #include <ctype.h>
#include <signal.h> #include <signal.h>
#include <vlc/vlc.h>
#include <vlc/intf.h> #include <vlc/intf.h>
#include <vlc/aout.h> #include <vlc/aout.h>
#include <vlc/vout.h> #include <vlc/vout.h>
...@@ -1978,7 +1979,7 @@ static int VideoConfig( vlc_object_t *p_this, char const *psz_cmd, ...@@ -1978,7 +1979,7 @@ static int VideoConfig( vlc_object_t *p_this, char const *psz_cmd,
/* get */ /* get */
vlc_value_t val, text; vlc_value_t val, text;
int i; int i;
float f_value; float f_value = 0.;
char *psz_value = NULL; char *psz_value = NULL;
if ( var_Get( p_vout, psz_variable, &val ) < 0 ) if ( var_Get( p_vout, psz_variable, &val ) < 0 )
......
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