Skip to content

Commit

Permalink
Merge cb8c1ee into 8bc7854
Browse files Browse the repository at this point in the history
  • Loading branch information
nomis52 committed Nov 28, 2014
2 parents 8bc7854 + cb8c1ee commit 72ccb08
Show file tree
Hide file tree
Showing 42 changed files with 2,258 additions and 2,106 deletions.
5 changes: 5 additions & 0 deletions common/utils/DmxBuffer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -261,6 +261,11 @@ void DmxBuffer::Get(uint8_t *data, unsigned int *length) const {

void DmxBuffer::GetRange(unsigned int slot, uint8_t *data,
unsigned int *length) const {
if (slot >= m_length) {
*length = 0;
return;
}

if (m_data) {
*length = min(*length, m_length - slot);
memcpy(data, m_data + slot, *length);
Expand Down
80 changes: 0 additions & 80 deletions plugins/usbdmx/AnymaDevice.cpp

This file was deleted.

145 changes: 0 additions & 145 deletions plugins/usbdmx/AnymaOutputPort.cpp

This file was deleted.

71 changes: 0 additions & 71 deletions plugins/usbdmx/AnymaOutputPort.h

This file was deleted.

0 comments on commit 72ccb08

Please sign in to comment.