Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClément Bœsch <u@pkh.me>2014-12-12 03:52:02 +0300
committerClément Bœsch <u@pkh.me>2014-12-12 03:52:19 +0300
commite93abe1f406964e6e59f2bf86b0763f3a90f5acf (patch)
tree3f42bc3af81c64e90df3eafca2be7235f952c996 /libavfilter/vf_uspp.c
parent397859c4a830338a4cffb54701ed8e3e5986f92e (diff)
avfilter/uspp: use AVFILTER_DEFINE_CLASS()
Diffstat (limited to 'libavfilter/vf_uspp.c')
-rw-r--r--libavfilter/vf_uspp.c8
1 files changed, 1 insertions, 7 deletions
diff --git a/libavfilter/vf_uspp.c b/libavfilter/vf_uspp.c
index 9ddf5df501..dede413be1 100644
--- a/libavfilter/vf_uspp.c
+++ b/libavfilter/vf_uspp.c
@@ -65,13 +65,7 @@ static const AVOption uspp_options[] = {
{ NULL }
};
-static const AVClass uspp_class = {
- .class_name = "uspp",
- .item_name = av_default_item_name,
- .option = uspp_options,
- .version = LIBAVUTIL_VERSION_INT,
- .category = AV_CLASS_CATEGORY_FILTER,
-};
+AVFILTER_DEFINE_CLASS(uspp);
DECLARE_ALIGNED(8, static const uint8_t, dither)[8][8] = {
{ 0*4, 48*4, 12*4, 60*4, 3*4, 51*4, 15*4, 63*4, },