[Ffmpeg-cvslog] r6945 - trunk/libavformat/dvenc.c
romansh
subversion
Wed Nov 8 19:57:02 CET 2006
Author: romansh
Date: Wed Nov 8 19:57:02 2006
New Revision: 6945
Modified:
trunk/libavformat/dvenc.c
Log:
* fixing a memory leak in DV format.
Patch by Brian Brice bbrice at newtek dot com
Modified: trunk/libavformat/dvenc.c
==============================================================================
--- trunk/libavformat/dvenc.c (original)
+++ trunk/libavformat/dvenc.c Wed Nov 8 19:57:02 2006
@@ -279,7 +279,7 @@
DVMuxContext* dv_init_mux(AVFormatContext* s)
{
- DVMuxContext *c;
+ DVMuxContext *c = (DVMuxContext *)s->priv_data;
AVStream *vst = NULL;
int i;
@@ -287,10 +287,6 @@
if (s->nb_streams > 3)
return NULL;
- c = av_mallocz(sizeof(DVMuxContext));
- if (!c)
- return NULL;
-
c->n_ast = 0;
c->ast[0] = c->ast[1] = NULL;
@@ -345,7 +341,6 @@
return c;
bail_out:
- av_free(c);
return NULL;
}
@@ -359,8 +354,7 @@
#ifdef CONFIG_MUXERS
static int dv_write_header(AVFormatContext *s)
{
- s->priv_data = dv_init_mux(s);
- if (!s->priv_data) {
+ if (!dv_init_mux(s)) {
av_log(s, AV_LOG_ERROR, "Can't initialize DV format!\n"
"Make sure that you supply exactly two streams:\n"
" video: 25fps or 29.97fps, audio: 2ch/48Khz/PCM\n"
More information about the ffmpeg-cvslog
mailing list