We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 18e6a6f commit a2e3ff4Copy full SHA for a2e3ff4
jvb/src/main/kotlin/org/jitsi/videobridge/export/ExporterWrapper.kt
@@ -49,10 +49,6 @@ class ExporterWrapper(
49
/** Whether we want to accept a packet. */
50
override fun wants(packet: PacketInfo): Boolean {
51
if (!isConnected() || packet.packet !is AudioRtpPacket) return false
52
- if (packet.payloadType !is OpusPayloadType) {
53
- logger.warn("Ignore audio with unsupported payload type: ${packet.payloadType}")
54
- return false
55
- }
56
return true
57
}
58
0 commit comments