From fed7d067962b4d7a1759b83b1417e3a930aee139 Mon Sep 17 00:00:00 2001 From: Baptiste Coudurier Date: Mon, 8 Jan 2007 12:33:16 +0000 Subject: priv_data is allocated/freed internally Originally committed as revision 7426 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/swf.c | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) (limited to 'libavformat') diff --git a/libavformat/swf.c b/libavformat/swf.c index b4f6fd1fcb..ee0701e48c 100644 --- a/libavformat/swf.c +++ b/libavformat/swf.c @@ -306,18 +306,13 @@ static void put_swf_matrix(ByteIOContext *pb, /* */ static int swf_write_header(AVFormatContext *s) { - SWFContext *swf; + SWFContext *swf = s->priv_data; ByteIOContext *pb = &s->pb; AVCodecContext *enc, *audio_enc, *video_enc; PutBitContext p; uint8_t buf1[256]; int i, width, height, rate, rate_base; - swf = av_malloc(sizeof(SWFContext)); - if (!swf) - return -1; - s->priv_data = swf; - swf->ch_id = -1; swf->audio_in_pos = 0; swf->audio_out_pos = 0; @@ -452,7 +447,6 @@ static int swf_write_header(AVFormatContext *s) /* not supported */ av_log(s, AV_LOG_ERROR, "swf doesnt support that sample rate, choose from (44100, 22050, 11025)\n"); av_free(swf->audio_fifo); - av_free(swf); return -1; } v |= 0x02; /* 16 bit playback */ -- cgit v1.2.3