Commit 8f92c089 authored by Michael Niedermayer's avatar Michael Niedermayer

Merge commit 'ad94c6ca'

* commit 'ad94c6ca':
  siff: Use the correct type for packet size variables

Conflicts:
	libavformat/siff.c
Merged-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parents 2e8020c6 ad94c6ca
...@@ -54,11 +54,11 @@ typedef struct SIFFContext { ...@@ -54,11 +54,11 @@ typedef struct SIFFContext {
int has_audio; int has_audio;
int curstrm; int curstrm;
int pktsize; unsigned int pktsize;
int gmcsize; int gmcsize;
int sndsize; int sndsize;
int flags; unsigned int flags;
uint8_t gmc[4]; uint8_t gmc[4];
} SIFFContext; } SIFFContext;
...@@ -192,9 +192,9 @@ static int siff_read_header(AVFormatContext *s) ...@@ -192,9 +192,9 @@ static int siff_read_header(AVFormatContext *s)
static int siff_read_packet(AVFormatContext *s, AVPacket *pkt) static int siff_read_packet(AVFormatContext *s, AVPacket *pkt)
{ {
SIFFContext *c = s->priv_data; SIFFContext *c = s->priv_data;
int size;
if (c->has_video) { if (c->has_video) {
unsigned int size;
if (c->cur_frame >= c->frames) if (c->cur_frame >= c->frames)
return AVERROR_EOF; return AVERROR_EOF;
if (c->curstrm == -1) { if (c->curstrm == -1) {
...@@ -224,10 +224,11 @@ static int siff_read_packet(AVFormatContext *s, AVPacket *pkt) ...@@ -224,10 +224,11 @@ static int siff_read_packet(AVFormatContext *s, AVPacket *pkt)
pkt->stream_index = 0; pkt->stream_index = 0;
c->curstrm = -1; c->curstrm = -1;
} else { } else {
if ((size = av_get_packet(s->pb, pkt, c->sndsize - 4)) < 0) int pktsize = av_get_packet(s->pb, pkt, c->sndsize - 4);
if (pktsize < 0)
return AVERROR(EIO); return AVERROR(EIO);
pkt->stream_index = 1; pkt->stream_index = 1;
pkt->duration = size; pkt->duration = pktsize;
c->curstrm = 0; c->curstrm = 0;
} }
if (!c->cur_frame || c->curstrm) if (!c->cur_frame || c->curstrm)
...@@ -235,12 +236,12 @@ static int siff_read_packet(AVFormatContext *s, AVPacket *pkt) ...@@ -235,12 +236,12 @@ static int siff_read_packet(AVFormatContext *s, AVPacket *pkt)
if (c->curstrm == -1) if (c->curstrm == -1)
c->cur_frame++; c->cur_frame++;
} else { } else {
size = av_get_packet(s->pb, pkt, c->block_align); int pktsize = av_get_packet(s->pb, pkt, c->block_align);
if (!size) if (!pktsize)
return AVERROR_EOF; return AVERROR_EOF;
if (size < 0) if (pktsize <= 0)
return AVERROR(EIO); return AVERROR(EIO);
pkt->duration = size; pkt->duration = pktsize;
} }
return pkt->size; return pkt->size;
} }
......
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