[vlc-commits] Revert "video_filter/transform.c: Horizontal and Vertical flip where swapped."

Jean-Paul Saman git at videolan.org
Thu May 31 09:34:29 CEST 2012


vlc | branch: master | Jean-Paul Saman <jean-paul.saman at m2x.nl> | Thu May 31 09:31:37 2012 +0200| [785f8e66b5bde82f9270617633fbc525a827e152] | committer: Jean-Paul Saman

Revert "video_filter/transform.c: Horizontal and Vertical flip where swapped."

This reverts commit 4f71d0bb6fde63edb765fcc7dae194195a43ef74.

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=785f8e66b5bde82f9270617633fbc525a827e152
---

 modules/video_filter/transform.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/modules/video_filter/transform.c b/modules/video_filter/transform.c
index 6a4ddd8..f5df690 100644
--- a/modules/video_filter/transform.c
+++ b/modules/video_filter/transform.c
@@ -71,13 +71,13 @@ vlc_module_end()
 /*****************************************************************************
  * Local prototypes
  *****************************************************************************/
-static void VFlip(int *sx, int *sy, int w, int h, int dx, int dy)
+static void HFlip(int *sx, int *sy, int w, int h, int dx, int dy)
 {
     VLC_UNUSED( h );
     *sx = w - 1 - dx;
     *sy = dy;
 }
-static void HFlip(int *sx, int *sy, int w, int h, int dx, int dy)
+static void VFlip(int *sx, int *sy, int w, int h, int dx, int dy)
 {
     VLC_UNUSED( w );
     *sx = dx;



More information about the vlc-commits mailing list