return eof/error if only ffm header has been written, should fix #815

Originally committed as revision 16924 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Baptiste Coudurier 2009-02-01 22:02:57 +00:00
parent cdf5139512
commit eee99eb3e8
1 changed files with 3 additions and 0 deletions

View File

@ -359,6 +359,9 @@ static int ffm_read_packet(AVFormatContext *s, AVPacket *pkt)
FFMContext *ffm = s->priv_data;
int duration;
if (url_fsize(s->pb) == FFM_PACKET_SIZE)
return -1;
switch(ffm->read_state) {
case READ_HEADER:
if (!ffm_is_avail_data(s, FRAME_HEADER_SIZE+4)) {