Browse Source

lavfi/alphamerge: fix leak introduced in 217163eb

tags/n1.1
Stefano Sabatini 12 years ago
parent
commit
255be0734d
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavfilter/vf_alphamerge.c

+ 1
- 1
libavfilter/vf_alphamerge.c View File

@@ -147,7 +147,7 @@ static int filter_frame(AVFilterLink *inlink, AVFilterBufferRef *buf)

merge->frame_requested = 0;
draw_frame(ctx, main_buf, alpha_buf);
ff_filter_frame(ctx->outputs[0], avfilter_ref_buffer(main_buf, ~0));
ff_filter_frame(ctx->outputs[0], main_buf);
avfilter_unref_buffer(alpha_buf);
}
return 0;


Loading…
Cancel
Save