Commit b30bb535 authored by Baptiste Coudurier's avatar Baptiste Coudurier

cosmetics, rename first to header, more explicit name

Originally committed as revision 13677 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent a1011180
......@@ -79,7 +79,7 @@ static int ffm_is_avail_data(AVFormatContext *s, int size)
/* first is true if we read the frame header */
static int ffm_read_data(AVFormatContext *s,
uint8_t *buf, int size, int first)
uint8_t *buf, int size, int header)
{
FFMContext *ffm = s->priv_data;
ByteIOContext *pb = s->pb;
......@@ -122,7 +122,7 @@ static int ffm_read_data(AVFormatContext *s,
if ((frame_offset & 0x7fff) < FFM_HEADER_SIZE)
return -1;
ffm->packet_ptr = ffm->packet + (frame_offset & 0x7fff) - FFM_HEADER_SIZE;
if (!first)
if (!header)
break;
} else {
ffm->packet_ptr = ffm->packet;
......@@ -133,7 +133,7 @@ static int ffm_read_data(AVFormatContext *s,
buf += len;
ffm->packet_ptr += len;
size -= len;
first = 0;
header = 0;
}
return size1 - 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