You've already forked libopenshot
mirror of
https://github.com/OpenShot/libopenshot.git
synced 2026-03-02 08:53:52 -08:00
Merge pull request #406 from OpenShot/copy-max-samples
Copy max_audio_samples with Frame::DeepCopy
This commit is contained in:
@@ -114,6 +114,7 @@ void Frame::DeepCopy(const Frame& other)
|
||||
sample_rate = other.sample_rate;
|
||||
pixel_ratio = Fraction(other.pixel_ratio.num, other.pixel_ratio.den);
|
||||
color = other.color;
|
||||
max_audio_sample = other.max_audio_sample;
|
||||
|
||||
if (other.image)
|
||||
image = std::shared_ptr<QImage>(new QImage(*(other.image)));
|
||||
|
||||
Reference in New Issue
Block a user