]> git.sesse.net Git - vlc/blobdiff - modules/access/rtsp/real_sdpplin.c
avio: remove interrupt callback for output
[vlc] / modules / access / rtsp / real_sdpplin.c
index 53542f90d8c7ebbb143fceb734a3a8242b8cf3ef..0a08d0dd699e64d91b34e9e109f59c9bae535a39 100644 (file)
@@ -24,7 +24,7 @@
  */
 
 #include "real.h"
-#include "vlc_strings.h"
+#include <vlc_strings.h>
 #define BUFLEN 32000
 
 static inline char *nl(char *data) {
@@ -60,7 +60,7 @@ static sdpplin_stream_t *sdpplin_parse_stream(char **data) {
 
   sdpplin_stream_t *desc;
   char* buf = NULL;
-  char* decoded = NULL;
+  unsigned char* decoded = NULL;
   int handled;
 
   desc = calloc( 1, sizeof(sdpplin_stream_t) );
@@ -185,7 +185,6 @@ sdpplin_t *sdpplin_parse(char *data)
   char*             buf;
   char*             decoded;
   int               handled;
-  int               len;
 
   desc = calloc( 1, sizeof(sdpplin_t) );
   if( !desc )