Commit 9f1c258df6475b3d22a2bb4ee95783da545b5d40

Authored by Josh Klontz
1 parent 736b5a2d

now propogating metadata of the first frame

Showing 1 changed file with 1 additions and 1 deletions
openbr/plugins/frames.cpp
@@ -28,7 +28,7 @@ class AggregateFrames : public TimeVaryingTransform @@ -28,7 +28,7 @@ class AggregateFrames : public TimeVaryingTransform
28 buffer.append(src); 28 buffer.append(src);
29 if (buffer.size() < n) return; 29 if (buffer.size() < n) return;
30 foreach (const Template &t, buffer) dst.append(t); 30 foreach (const Template &t, buffer) dst.append(t);
31 - buffer.removeFirst(); 31 + dst.file = buffer.takeFirst().file;
32 } 32 }
33 33
34 void store(QDataStream &stream) const 34 void store(QDataStream &stream) const