[vlc-devel] [PATCH 2/12] esformat: fix ORIENT_ROTATE_180 description
Lyndon Brown
jnqnfe at gmail.com
Fri Sep 25 00:29:47 CEST 2020
From: Lyndon Brown <jnqnfe at gmail.com>
Date: Sun, 7 Jan 2018 19:07:54 +0000
Subject: esformat: fix ORIENT_ROTATE_180 description
diff --git a/include/vlc_es.h b/include/vlc_es.h
index f1ef54283f..a7af6c118c 100644
--- a/include/vlc_es.h
+++ b/include/vlc_es.h
@@ -206,7 +206,7 @@ typedef enum video_orientation_t
#define ORIENT_HFLIP(orient) ((orient) ^ 1)
/** Applies vertical flip to an orientation */
#define ORIENT_VFLIP(orient) ((orient) ^ 2)
-/** Applies horizontal flip to an orientation */
+/** Applies 180 degree rotation to an orientation */
#define ORIENT_ROTATE_180(orient) ((orient) ^ 3)
typedef enum video_transform_t
More information about the vlc-devel
mailing list