X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=modules%2Faccess%2Frtsp%2Freal_sdpplin.c;h=0a08d0dd699e64d91b34e9e109f59c9bae535a39;hb=040e285b8527b157fe7c5a9a6e615d1d1ccf7a4a;hp=53542f90d8c7ebbb143fceb734a3a8242b8cf3ef;hpb=4b44912ce0888ed40d35aa5d782cd17cbf7e9c6b;p=vlc diff --git a/modules/access/rtsp/real_sdpplin.c b/modules/access/rtsp/real_sdpplin.c index 53542f90d8..0a08d0dd69 100644 --- a/modules/access/rtsp/real_sdpplin.c +++ b/modules/access/rtsp/real_sdpplin.c @@ -24,7 +24,7 @@ */ #include "real.h" -#include "vlc_strings.h" +#include #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 )