1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-11-26 19:01:44 +02:00

avformat/mpjpegdec: Fix "libavformat/mpjpegdec.c:269:9: warning: passing argument 3 of av_stristart from incompatible pointer type"

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
Michael Niedermayer 2015-12-04 03:09:00 +01:00
parent a27401a05b
commit 9696a01f12

View File

@ -250,8 +250,8 @@ static int parse_multipart_header(AVIOContext *pb,
static char* mpjpeg_get_boundary(AVIOContext* pb)
{
uint8_t *mime_type = NULL;
uint8_t *start;
uint8_t *end;
const char *start;
const char *end;
uint8_t *res = NULL;
int len;