now raw mpeg4 video decoding is fully supported

Originally committed as revision 1224 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Fabrice Bellard 2002-11-18 17:33:03 +00:00
parent 93ced3e81a
commit 231dd3f327
1 changed files with 1 additions and 4 deletions

View File

@ -84,10 +84,7 @@ int raw_read_packet(AVFormatContext *s,
int ret, size;
AVStream *st = s->streams[0];
if(st->codec.codec_id == CODEC_ID_MPEG4)
size= 1024*1024; //cant handle partial frames
else
size= RAW_PACKET_SIZE;
size= RAW_PACKET_SIZE;
if (av_new_packet(pkt, size) < 0)
return -EIO;