Tudor Zaharia

Results 99 comments of Tudor Zaharia

OK, so my previous comment was not correct, the missing symbols are in differents libs: Linking `test_mediasoupclient` with ``` ${LIBWEBRTC_BINARY_PATH}/api/video_codecs/libbuiltin_video_encoder_factory${CMAKE_STATIC_LIBRARY_SUFFIX} ${LIBWEBRTC_BINARY_PATH}/api/video_codecs/libbuiltin_video_decoder_factory${CMAKE_STATIC_LIBRARY_SUFFIX} ``` stops it from complaining about the missing enc...

(On Ubuntu 22.04) Re libwebrtc m120, I'm a bit lost because: 1. I cannot build with gcc (i.e. `is_clang=false`) 2. When building with clang, I cannot link against system C++...

Got it, but it's not like I'm doing it on purpose. I'm just checking out libwebrtc and libmediasoupclient and trying to build them. Not changing anything.

I'm having a look at mediasoup-broadcaster-demo. I think it would be useful to have that build and run before moving forward. Here's the updates that I made so far: https://github.com/copiltembel/mediasoup-broadcaster-demo/tree/m120...

> Broadcaster demo uses the same internal encoder/decoders as the tests.., this is why it's not helpful. Got it. > This is why I asked that anyone who has an...

After some libwebrtc code torturing, I was able to build, run and ... crash (my own app). Here is the call stack: (on `sig_thread`) ``` libc.so.6!pthread_kill (Unknown Source:0) libc.so.6!raise (Unknown...

@jmillan Unfortunately I see there's no help coming from the discuss-webrtc forum.

Maybe I am misunderstanding something, but the crash I am seeing (with libwebrtc in release) is on the `sig_thread`.

I had an issue when building in debug, I wasn't using the workerThread to create the audioDeviceModule. With `libwebrtc` in debug, my app works now, without crashing. But running with...