GStreamer Critical #2360

Hey,

I'm using Processing 2.1.1 64 bit with a simple webcam viewer example:

import processing.video.*;

Capture video;

void setup() { size(1300,900); // available is name=Microsoft LifeCam Studio,size=1280x720,fps=30 video = new Capture(this,1280,720,30); video.start(); }

void draw() { if (video.available()) { video.read(); } image(video,0,0); }

I've now encountered a problem with high resolution camera pictures: they aren't displayed and I get the following error message after a while. Camera stream with a lower resolution (or even with a lower framerate) are displayed properly.

(javaw.exe:6520): GStreamer-CRITICAL **: Trying to dispose element rgb, but it is in READY instead of the NULL state. You need to explicitly set elements to the NULL state before dropping the final reference, to allow them to clean up. This problem may also be caused by a refcounting bug in the application or some element.

I've posted this question also on Github

Answers

Sign In or Register to comment.