diff options
author | Matthew Waters <matthew@centricular.com> | 2018-09-19 18:01:26 +1000 |
---|---|---|
committer | Matthew Waters <matthew@centricular.com> | 2018-09-21 19:45:13 +1000 |
commit | ce9e2a7b787b035b79c02db321f3a6e37528e21d (patch) | |
tree | 2047b2dcdea504fda71491913952b4b4db13e06f | |
parent | 07e9374eff7967713ab2dc47b1eb2843d0bfcaa0 (diff) |
glvideomixer: fix constant alpha enum value for constant alpha
-rw-r--r-- | ext/gl/gstglvideomixer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/gl/gstglvideomixer.c b/ext/gl/gstglvideomixer.c index cf634d8e4..2256e549b 100644 --- a/ext/gl/gstglvideomixer.c +++ b/ext/gl/gstglvideomixer.c @@ -137,7 +137,7 @@ gst_gl_video_mixer_blend_function_get_type (void) "One Minus Constant Color", "one-minus-contant-color"}, {GST_GL_VIDEO_MIXER_BLEND_FUNCTION_CONSTANT_ALPHA, "Constant Alpha", "constant-alpha"}, - {GST_GL_VIDEO_MIXER_BLEND_FUNCTION_ONE_MINUS_CONSTANT_COLOR, + {GST_GL_VIDEO_MIXER_BLEND_FUNCTION_ONE_MINUS_CONSTANT_ALPHA, "One Minus Constant Alpha", "one-minus-contant-alpha"}, {GST_GL_VIDEO_MIXER_BLEND_FUNCTION_SRC_ALPHA_SATURATE, "Source Alpha Saturate", "src-alpha-saturate"}, |