mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 04:01:08 +00:00
video: Set correct value in g-i annotations for tile related mask constants
This commit is contained in:
parent
a4c6fbc43b
commit
4696ecab15
1 changed files with 8 additions and 0 deletions
|
@ -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)
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue