File tree 1 file changed +3
-0
lines changed
examples/SIPExamples/VideoPhoneCmdLine
1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change 11
11
// History:
12
12
// 23 Dec 2020 Aaron Clauson Created, Dublin, Ireland.
13
13
// 30 Sep 2024 Aaron Clauson Broken :(. Needs investigation.
14
+ // 15 Oct 2024 Aaron Clauson Fixed. Was just missing FFmpeg initialise call.
14
15
//
15
16
// License:
16
17
// BSD 3-Clause "New" or "Revised" License, see included LICENSE.md file.
@@ -153,6 +154,8 @@ static async Task Main(string[] args)
153
154
ManualResetEvent exitMRE = new ManualResetEvent ( false ) ;
154
155
ManualResetEvent waitForCallMre = new ManualResetEvent ( false ) ;
155
156
157
+ SIPSorceryMedia . FFmpeg . FFmpegInit . Initialise ( SIPSorceryMedia . FFmpeg . FfmpegLogLevelEnum . AV_LOG_VERBOSE , null , Log ) ;
158
+
156
159
var parseResult = Parser . Default . ParseArguments < Options > ( args ) ;
157
160
_options = ( parseResult as Parsed < Options > ) ? . Value ;
158
161
You can’t perform that action at this time.
0 commit comments