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 #397 from ferdnyc/frame-copy
Frame: Copy has_audio_data correctly in DeepCopy
This commit is contained in:
@@ -109,7 +109,7 @@ void Frame::DeepCopy(const Frame& other)
|
||||
width = other.width;
|
||||
height = other.height;
|
||||
channel_layout = other.channel_layout;
|
||||
has_audio_data = other.has_image_data;
|
||||
has_audio_data = other.has_audio_data;
|
||||
has_image_data = other.has_image_data;
|
||||
sample_rate = other.sample_rate;
|
||||
pixel_ratio = Fraction(other.pixel_ratio.num, other.pixel_ratio.den);
|
||||
|
||||
Reference in New Issue
Block a user