Skip to content

Commit

Permalink
Frame: DeepCopy has_audio_data correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
ferdnyc committed Dec 27, 2019
1 parent a1158ee commit 31a0565
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Frame.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 31a0565

Please sign in to comment.