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>
pull/162/merge
Michael Niedermayer 9 years ago
parent a27401a05b
commit 9696a01f12
  1. 4
      libavformat/mpjpegdec.c

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

Loading…
Cancel
Save