mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 04:01:08 +00:00
add new invalid enum type
This commit is contained in:
parent
4cd9fd5006
commit
de8238031b
2 changed files with 7 additions and 0 deletions
|
@ -47,6 +47,11 @@ ges_track_type_get_type (void)
|
|||
}
|
||||
|
||||
GEnumValue transition_types[] = {
|
||||
{
|
||||
0,
|
||||
"Transition has not been set",
|
||||
"none"}
|
||||
,
|
||||
{
|
||||
1,
|
||||
"A bar moves from left to right",
|
||||
|
|
|
@ -54,6 +54,7 @@ typedef enum {
|
|||
|
||||
/**
|
||||
* GESVideoTransitionType:
|
||||
* @GES_VIDEO_TRANSITION_TYPE_NONE: Transition type has not been set,
|
||||
* @GES_VIDEO_TRANSITION_TYPE_BAR_WIPE_LR: A bar moves from left to right,
|
||||
* @GES_VIDEO_TRANSITION_TYPE_BAR_WIPE_TB: A bar moves from top to bottom,
|
||||
* @GES_VIDEO_TRANSITION_TYPE_BOX_WIPE_TL: A box expands from the upper-left corner to the lower-right corner,
|
||||
|
@ -129,6 +130,7 @@ typedef enum {
|
|||
*/
|
||||
|
||||
typedef enum {
|
||||
GES_VIDEO_TRANSITION_TYPE_NONE = 0,
|
||||
GES_VIDEO_TRANSITION_TYPE_BAR_WIPE_LR = 1,
|
||||
GES_VIDEO_TRANSITION_TYPE_BAR_WIPE_TB = 2,
|
||||
GES_VIDEO_TRANSITION_TYPE_BOX_WIPE_TL = 3,
|
||||
|
|
Loading…
Reference in a new issue