Brutal port of Drone code to try to make video work using gstreamer 0.10 using appsink

This commit is contained in:
Tats
2014-04-25 23:38:46 +01:00
parent 8224a64374
commit ed3f476d6b
5 changed files with 798 additions and 31 deletions
+5 -3
View File
@@ -45,14 +45,16 @@ Paint::~Paint()
/* Implementation of the Video class */
Video::Video(const QString uri_, uid id=NULL_UID):
Video::Video(const QString uri_, uid id):
Texture(id),
uri(uri_),
impl_(new VideoImpl)
impl_(NULL)
{
this->impl_->setUri(uri);
impl_ = new VideoImpl(uri_);
}
// vertigo
Video::~Video()
{
delete impl_;