Commit 9696a01f authored by Michael Niedermayer's avatar Michael Niedermayer

avformat/mpjpegdec: Fix "libavformat/mpjpegdec.c:269:9: warning: passing...

avformat/mpjpegdec: Fix "libavformat/mpjpegdec.c:269:9: warning: passing argument 3 of av_stristart from incompatible pointer type"
Signed-off-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
parent a27401a0
......@@ -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;
......
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