Add support for vflip/hflip filters.
authorCarl Hetherington <cth@carlh.net>
Fri, 8 Jun 2018 15:20:45 +0000 (16:20 +0100)
committerCarl Hetherington <cth@carlh.net>
Fri, 8 Jun 2018 15:20:45 +0000 (16:20 +0100)
ChangeLog
src/lib/filter.cc

index f740d2e704c66f6c534fa7b7dbf39c7ae16defc5..abe807c276bbf65a93b0569b02a7c7e3dd85f2f1 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2018-06-08  Carl Hetherington  <cth@carlh.net>
+
+       * Add support for vertical and horizontal flipping of video
+       sources.
+
 2018-06-05  Carl Hetherington  <cth@carlh.net>
 
        * Don't allow the queue to get too big with repeat frames
index 946dd51065b64cb531c1fabeaca734d15f1553e9..626d35f23e9b1535b2cd2948e79ed3d48812f99e 100644 (file)
@@ -63,6 +63,8 @@ Filter::setup_filters ()
 {
        /* Note: "none" is a magic id name, so don't use it here */
 
+       maybe_add (N_("vflip"),     _("Vertical flip"),                    _("Orientation"),     N_("vflip"));
+       maybe_add (N_("hflip"),     _("Horizontal flip"),                  _("Orientation"),     N_("hflip"));
        maybe_add (N_("mcdeint"),   _("Motion compensating deinterlacer"), _("De-interlacing"),  N_("mcdeint"));
        maybe_add (N_("kerndeint"), _("Kernel deinterlacer"),              _("De-interlacing"),  N_("kerndeint"));
        maybe_add (N_("yadif"),     _("Yet Another Deinterlacing Filter"), _("De-interlacing"),  N_("yadif"));