[WebRTC] Fix SupportedTransceiverCodecs bug (#4605)
authorHaesu Gwon <haesu.gwon@samsung.com>
Tue, 27 Sep 2022 06:42:45 +0000 (15:42 +0900)
committerGitHub <noreply@github.com>
Tue, 27 Sep 2022 06:42:45 +0000 (15:42 +0900)
src/Tizen.Multimedia.Remoting/WebRTC/MediaSource.cs

index 3fd50d1..15042c1 100755 (executable)
@@ -259,7 +259,7 @@ namespace Tizen.Multimedia.Remoting
             {
                 try
                 {
-                    NativeWebRTC.ForeachSupportedTransceiverCodec(WebRtc.Handle, MediaSourceType.Null, type, cb).
+                    NativeWebRTC.ForeachSupportedTransceiverCodec(WebRtc.Handle, MediaSourceType, type, cb).
                         ThrowIfFailed("failed to retrieve stats");
                 }
                 catch (ObjectDisposedException)