Skip to content
Snippets Groups Projects
Commit 4db3a8e9 authored by Alexandre Savard's avatar Alexandre Savard
Browse files

[#2517] Fix DTMF over RTP issue, don't play the EVENT RTP packet

parent b651713c
Branches
Tags
No related merge requests found
...@@ -466,7 +466,12 @@ namespace sfl { ...@@ -466,7 +466,12 @@ namespace sfl {
unsigned int size = adu->getSize(); // size in char unsigned int size = adu->getSize(); // size in char
processDataDecode (spkrData, size, countTime); // _debug("RTP size: %i\n", size);
// Size of DTMF over RTP
if(size > 4) {
processDataDecode (spkrData, size, countTime);
}
} }
template <typename D> template <typename D>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment