Commit 9b0b5a95dc70068accc478faa827825e3baf1a1a
1 parent
08c9f8b7
Fixed pipeline scoping issue
Showing
1 changed file
with
1 additions
and
1 deletions
openbr/core/core.cpp
| ... | ... | @@ -738,7 +738,7 @@ QSharedPointer<br::Transform> br::Transform::fromAlgorithm(const QString &algori |
| 738 | 738 | stages.append(transform.data()); |
| 739 | 739 | stages.append(progressCounter.data()); |
| 740 | 740 | |
| 741 | - QSharedPointer<Transform> pipeline(pipeTransforms(stages)); | |
| 741 | + QScopedPointer<Transform> pipeline(pipeTransforms(stages)); | |
| 742 | 742 | QSharedPointer<Transform> stream(wrapTransform(pipeline.data(), "Stream(readMode=DistributeFrames)")); |
| 743 | 743 | |
| 744 | 744 | return stream; | ... | ... |