diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-12-27 19:01:07 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-12-27 19:01:07 +0100 |
commit | ed96830afc05fb917443da09bec881f61e57003d (patch) | |
tree | cc908fa25ca57ab017120c5e685baa7267ee90c9 | |
parent | d4fd3f24e86fe77435a9cbcdd77feeecf6a83bbd (diff) | |
download | ffmpeg-ed96830afc05fb917443da09bec881f61e57003d.tar.gz |
avfilter/vf_blend: Fix AVClass
Fixes infinite loop
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavfilter/vf_blend.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vf_blend.c b/libavfilter/vf_blend.c index 6dbf1496d6..538774be3f 100644 --- a/libavfilter/vf_blend.c +++ b/libavfilter/vf_blend.c @@ -537,7 +537,7 @@ AVFilter ff_vf_tblend = { .name = "tblend", .description = NULL_IF_CONFIG_SMALL("Blend successive frames."), .priv_size = sizeof(BlendContext), - .priv_class = &blend_class, + .priv_class = &tblend_class, .query_formats = query_formats, .init = init, .uninit = uninit, |