diff options
author | Matthew Waters <ystreet00@gmail.com> | 2014-03-17 20:43:35 +0100 |
---|---|---|
committer | Matthew Waters <ystreet00@gmail.com> | 2014-03-20 07:01:01 +1100 |
commit | 58aa3e9d64c785adfba9c1dfd5a4fdd028b96eaf (patch) | |
tree | c791f0abc94988efbdadc7b6955905b2414d0bb0 /gst-libs/gst | |
parent | faa94a87376190cc77f814a1cb54b26e70157246 (diff) | |
download | gstreamer-plugins-bad-58aa3e9d64c785adfba9c1dfd5a4fdd028b96eaf.tar.gz |
gl/mixer: fix download check for failure
Diffstat (limited to 'gst-libs/gst')
-rw-r--r-- | gst-libs/gst/gl/gstglmixer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gst-libs/gst/gl/gstglmixer.c b/gst-libs/gst/gl/gstglmixer.c index 267ff475c..605d25af2 100644 --- a/gst-libs/gst/gl/gstglmixer.c +++ b/gst-libs/gst/gl/gstglmixer.c @@ -1695,7 +1695,7 @@ gst_gl_mixer_process_textures (GstGLMixer * mix, GstBuffer * outbuf) mix_class->process_textures (mix, mix->frames, out_tex); if (out_gl_wrapped) { - if (gst_gl_download_perform_with_data (mix->download, out_tex, + if (!gst_gl_download_perform_with_data (mix->download, out_tex, out_frame.data)) { GST_ELEMENT_ERROR (mix, RESOURCE, NOT_FOUND, ("%s", "Failed to download video frame"), (NULL)); |