12 lines
No EOL
214 B
C++
12 lines
No EOL
214 B
C++
#include "AudioPacketsComparator.hpp"
|
|
|
|
|
|
namespace drp::event {
|
|
|
|
|
|
bool AudioPacketsComparator::operator()(const packet::AudioPacket& a, const packet::AudioPacket& b) const {
|
|
return a.timePlay > b.timePlay;
|
|
}
|
|
|
|
|
|
} |