Commit ed96830a authored by Michael Niedermayer's avatar Michael Niedermayer

avfilter/vf_blend: Fix AVClass

Fixes infinite loop
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent d4fd3f24
...@@ -537,7 +537,7 @@ AVFilter ff_vf_tblend = { ...@@ -537,7 +537,7 @@ AVFilter ff_vf_tblend = {
.name = "tblend", .name = "tblend",
.description = NULL_IF_CONFIG_SMALL("Blend successive frames."), .description = NULL_IF_CONFIG_SMALL("Blend successive frames."),
.priv_size = sizeof(BlendContext), .priv_size = sizeof(BlendContext),
.priv_class = &blend_class, .priv_class = &tblend_class,
.query_formats = query_formats, .query_formats = query_formats,
.init = init, .init = init,
.uninit = uninit, .uninit = uninit,
......
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