Commit 177b641a authored by romansh's avatar romansh

* fixing a memory leak in DV format.

    Patch by Brian Brice bbrice at newtek dot com



git-svn-id: file:///var/local/repositories/ffmpeg/trunk@6945 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 692ebe63
......@@ -279,7 +279,7 @@ int dv_assemble_frame(DVMuxContext *c, AVStream* st,
DVMuxContext* dv_init_mux(AVFormatContext* s)
{
DVMuxContext *c;
DVMuxContext *c = (DVMuxContext *)s->priv_data;
AVStream *vst = NULL;
int i;
......@@ -287,10 +287,6 @@ DVMuxContext* dv_init_mux(AVFormatContext* s)
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 @@ DVMuxContext* dv_init_mux(AVFormatContext* s)
return c;
bail_out:
av_free(c);
return NULL;
}
......@@ -359,8 +354,7 @@ void dv_delete_mux(DVMuxContext *c)
#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"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment