mirror of
https://github.com/mapmapteam/mapmap.git
synced 2026-06-16 12:33:19 +02:00
Brutal port of Drone code to try to make video work using gstreamer 0.10 using appsink
This commit is contained in:
@@ -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_;
|
||||
|
||||
Reference in New Issue
Block a user