Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Here is the pipeline that i have set up in my gstreamer application :

appsrc->decodebin->ffmpegcolorspace->ximagesink

the appsrc element recieves raw byte streams from a h264 video format file. The entire thing is running on a ubuntu 12.04 vm running on virtualbox.

While running the application, I get the following error message :

libva: VA-API version 0.32.0
libva: va_getDriverName() returns 0
libva: Trying to open /usr/lib/i386-linux-gnu/dri/vboxvideo_drv_video.so
libva: va_openDriver() returns -1

The reason for it seems to be no hardware acceleration support in virtualbox. However, when i try to run the video using a media player it works. Please let me know what am I missing here.

share|improve this question
The problem was solved by removing the libgstreamer-vaapi0.10 plugin using sudo apt-get remove libgstreamer-vaapi0.10. This removes the support for using hardware acceleration for playing h264 videos from gstreamer. – Anand Gupta Aug 16 '12 at 2:06

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.