[vlc-commits] esformat: fix ORIENT_LEFT_BOTTOM and ORIENT_RIGHT_TOP descriptions
Lyndon Brown
git at videolan.org
Sat Sep 26 08:44:10 CEST 2020
vlc | branch: master | Lyndon Brown <jnqnfe at gmail.com> | Sun Jan 7 19:22:38 2018 +0000| [ed11480472b95108c859292639f4d5a623cc3f5f] | committer: Rémi Denis-Courmont
esformat: fix ORIENT_LEFT_BOTTOM and ORIENT_RIGHT_TOP descriptions
They had 90 degree clockwise / anti-clockwise rotation the wrong way
around.
Signed-off-by: Rémi Denis-Courmont <remi at remlab.net>
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=ed11480472b95108c859292639f4d5a623cc3f5f
---
include/vlc_es.h | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/include/vlc_es.h b/include/vlc_es.h
index a7af6c118c..841fa05bf6 100644
--- a/include/vlc_es.h
+++ b/include/vlc_es.h
@@ -181,8 +181,8 @@ typedef enum video_orientation_t
ORIENT_BOTTOM_LEFT, /**< Flipped vertically */
ORIENT_BOTTOM_RIGHT, /**< Rotated 180 degrees */
ORIENT_LEFT_TOP, /**< Transposed */
- ORIENT_LEFT_BOTTOM, /**< Rotated 90 degrees clockwise */
- ORIENT_RIGHT_TOP, /**< Rotated 90 degrees anti-clockwise */
+ ORIENT_LEFT_BOTTOM, /**< Rotated 90 degrees anti-clockwise */
+ ORIENT_RIGHT_TOP, /**< Rotated 90 degrees clockwise */
ORIENT_RIGHT_BOTTOM, /**< Anti-transposed */
ORIENT_NORMAL = ORIENT_TOP_LEFT,
More information about the vlc-commits
mailing list