From: Philip Gladstone Date: Wed, 5 Jun 2002 02:21:10 +0000 (+0000) Subject: * Get the buffer size right now we have the buffer inside the FFStream block X-Git-Tag: v0.5~17632 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=16300e23d526f428ca71b5af3486951a5f87b91b;p=platform%2Fupstream%2Flibav.git * Get the buffer size right now we have the buffer inside the FFStream block Originally committed as revision 666 to svn://svn.ffmpeg.org/ffmpeg/trunk --- diff --git a/libav/ffm.c b/libav/ffm.c index 9ae03e7..1d1564a 100644 --- a/libav/ffm.c +++ b/libav/ffm.c @@ -141,7 +141,7 @@ static int ffm_write_header(AVFormatContext *s) /* list of streams */ for(i=0;inb_streams;i++) { st = s->streams[i]; - fst = av_mallocz(sizeof(FFMStream) + ffm->packet_size); + fst = av_mallocz(sizeof(FFMStream)); if (!fst) goto fail; st->priv_data = fst; @@ -383,7 +383,7 @@ static int ffm_read_header(AVFormatContext *s, AVFormatParameters *ap) if (!st) goto fail; s->streams[i] = st; - fst = av_mallocz(sizeof(FFMStream) + ffm->packet_size); + fst = av_mallocz(sizeof(FFMStream)); if (!fst) goto fail; st->priv_data = fst;