changed items to shared ptrs

This commit is contained in:
itsmattkc
2019-07-06 12:50:00 -05:00
parent a6971b3fde
commit b62ec30015
12 changed files with 98 additions and 42 deletions
+2 -2
View File
@@ -24,7 +24,7 @@
#include "decoder/probeserver.h"
ProbeTask::ProbeTask(Footage *footage) :
ProbeTask::ProbeTask(FootagePtr footage) :
footage_(footage)
{
QString base_filename = QFileInfo(footage_->filename()).fileName();
@@ -34,7 +34,7 @@ ProbeTask::ProbeTask(Footage *footage) :
bool ProbeTask::Action()
{
olive::ProbeMedia(footage_);
olive::ProbeMedia(footage_.get());
return true;
}