Skip to content

Commit a2e3ff4

Browse files
committed
Allow any audio encoding format for export.
1 parent 18e6a6f commit a2e3ff4

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

jvb/src/main/kotlin/org/jitsi/videobridge/export/ExporterWrapper.kt

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,10 +49,6 @@ class ExporterWrapper(
4949
/** Whether we want to accept a packet. */
5050
override fun wants(packet: PacketInfo): Boolean {
5151
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-
}
5652
return true
5753
}
5854

0 commit comments

Comments
 (0)