video: Set correct value in g-i annotations for tile related mask constants
authorSebastian Dröge <sebastian@centricular.com>
Wed, 21 Mar 2018 08:27:04 +0000 (10:27 +0200)
committerSebastian Dröge <sebastian@centricular.com>
Wed, 21 Mar 2018 08:28:05 +0000 (10:28 +0200)
gst-libs/gst/video/video-tile.h

index 4959c54..6489650 100644 (file)
@@ -39,6 +39,10 @@ typedef enum
 } GstVideoTileType;
 
 #define GST_VIDEO_TILE_TYPE_SHIFT     (16)
+
+/**
+ * GST_VIDEO_TILE_TYPE_MASK: (value 65535)
+ */
 #define GST_VIDEO_TILE_TYPE_MASK      ((1 << GST_VIDEO_TILE_TYPE_SHIFT) - 1)
 
 /**
@@ -69,6 +73,10 @@ typedef enum
 
 
 #define GST_VIDEO_TILE_Y_TILES_SHIFT     (16)
+
+/**
+ * GST_VIDEO_TILE_X_TILES_MASK: (value 65535)
+ */
 #define GST_VIDEO_TILE_X_TILES_MASK      ((1 << GST_VIDEO_TILE_Y_TILES_SHIFT) - 1)
 
 /**