]> git.sesse.net Git - vlc/commitdiff
Revert "video_filter/transform.c: Horizontal and Vertical flip where swapped."
authorJean-Paul Saman <jean-paul.saman@m2x.nl>
Thu, 31 May 2012 07:31:37 +0000 (09:31 +0200)
committerJean-Paul Saman <jean-paul.saman@m2x.nl>
Thu, 31 May 2012 07:34:06 +0000 (09:34 +0200)
This reverts commit 4f71d0bb6fde63edb765fcc7dae194195a43ef74.

modules/video_filter/transform.c

index 6a4ddd815f8c3e6107bab7aed118c4dd18c198de..f5df690f40a82096bc5948182204e156dea8c5a0 100644 (file)
@@ -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;