mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-10 03:19:40 +00:00
[210/906] get ride of a wrong color on nvidia/linux when converting yv12 to rgb through GLSL
This commit is contained in:
parent
ff67654533
commit
450dd45a6e
1 changed files with 7 additions and 5 deletions
|
@ -2493,12 +2493,13 @@ gst_gl_display_thread_do_upload_fill (GstGLDisplay *display)
|
|||
offsetU = 1;
|
||||
offsetV = 2;
|
||||
break;
|
||||
//it works on ati+win32 but we have to use the same offset as
|
||||
//I420 on nvidia + linux (I mean offsetU = 1; offsetV = 2;)
|
||||
//So we have to set a display->hardware (ATI o/ NVIDIA) and
|
||||
//etc...
|
||||
case GST_VIDEO_FORMAT_YV12:
|
||||
|
||||
//WIN32
|
||||
#if defined(_MSC_VER) || defined(__CYGWIN__) || defined(__MINGW32__)
|
||||
offsetU = 2;
|
||||
offsetV = 1;
|
||||
//LINUX
|
||||
#elseif
|
||||
if (g_ascii_strncasecmp ("ATI", (gchar *) glGetString (GL_VENDOR), 3) == 0)
|
||||
{
|
||||
offsetU = 2;
|
||||
|
@ -2509,6 +2510,7 @@ gst_gl_display_thread_do_upload_fill (GstGLDisplay *display)
|
|||
offsetU = 1;
|
||||
offsetV = 2;
|
||||
}
|
||||
#endif
|
||||
break;
|
||||
default:
|
||||
g_assert_not_reached ();
|
||||
|
|
Loading…
Reference in a new issue