Skip to content

Commit

Permalink
Whitespace change.
Browse files Browse the repository at this point in the history
  • Loading branch information
ggarra13 committed Sep 14, 2023
1 parent 901db19 commit fb7181d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/tlTimeline/PlayerPrivate.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -523,7 +523,7 @@ namespace tl
const size_t byteCount = audio->getByteCount();
auto tmp = audio::Audio::create(p->ioInfo.audio, p->ioInfo.audio.sampleRate);
tmp->zero();
std::memcpy(tmp->getData(), audio->getData(), byteCount );
std::memcpy(tmp->getData(), audio->getData(), byteCount);
audio = tmp;
audios.push_back(audio);
}
Expand Down

0 comments on commit fb7181d

Please sign in to comment.