diff options
author | Clément Bœsch <ubitux@gmail.com> | 2013-04-14 10:32:23 +0200 |
---|---|---|
committer | Clément Bœsch <ubitux@gmail.com> | 2013-04-14 10:32:35 +0200 |
commit | f359be96cacbc38c87f4f313ec8d9fa5c48dcefa (patch) | |
tree | 7a50fe0e198830c752a7778b51bc865140971693 | |
parent | d9be6e69cf0049efc16e37a06b102ba416ce5167 (diff) | |
download | ffmpeg-f359be96cacbc38c87f4f313ec8d9fa5c48dcefa.tar.gz |
lavfi/smptehdbars: fix priv_class pointer.
Fix Ticket2468.
-rw-r--r-- | libavfilter/vsrc_testsrc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vsrc_testsrc.c b/libavfilter/vsrc_testsrc.c index fc8eb727b8..3f423b3f0d 100644 --- a/libavfilter/vsrc_testsrc.c +++ b/libavfilter/vsrc_testsrc.c @@ -908,7 +908,7 @@ AVFilter avfilter_vsrc_smptehdbars = { .query_formats = smptebars_query_formats, .inputs = NULL, .outputs = smptebars_outputs, - .priv_class = &smptebars_class, + .priv_class = &smptehdbars_class, }; #endif /* CONFIG_SMPTEHDBARS_FILTER */ |