mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-25 11:11:08 +00:00
video: add GST_VIDEO_INFO_COMP_BITS
This commit is contained in:
parent
103c59af24
commit
fa63d7181d
1 changed files with 1 additions and 0 deletions
|
@ -577,6 +577,7 @@ struct _GstVideoInfo {
|
|||
/* dealing with components */
|
||||
#define GST_VIDEO_INFO_N_COMPONENTS(i) GST_VIDEO_FORMAT_INFO_N_COMPONENTS((i)->finfo)
|
||||
#define GST_VIDEO_INFO_COMP_DEPTH(i,c) GST_VIDEO_FORMAT_INFO_DEPTH((i)->finfo,c)
|
||||
#define GST_VIDEO_INFO_COMP_BITS(i,c) GST_VIDEO_FORMAT_INFO_BITS((i)->finfo,c)
|
||||
#define GST_VIDEO_INFO_COMP_DATA(i,d,c) GST_VIDEO_FORMAT_INFO_DATA((i)->finfo,d,c)
|
||||
#define GST_VIDEO_INFO_COMP_OFFSET(i,c) GST_VIDEO_FORMAT_INFO_OFFSET((i)->finfo,(i)->offset,c)
|
||||
#define GST_VIDEO_INFO_COMP_STRIDE(i,c) GST_VIDEO_FORMAT_INFO_STRIDE((i)->finfo,(i)->stride,c)
|
||||
|
|
Loading…
Reference in a new issue