-
-
Notifications
You must be signed in to change notification settings - Fork 248
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Error compiling on Raspbian Raspbian GNU/Linux 8 (jessie) #5
Comments
Which version of libevent you used? |
r $ apt list --installed | grep libevent
WARNING: apt does not have a stable CLI interface yet. Use with caution in
scripts.
libevent-2.0-5/oldstable,now 2.0.21-stable-2+deb8u1 armhf
[installed,automatic]
libevent-core-2.0-5/oldstable,now 2.0.21-stable-2+deb8u1 armhf
[installed,automatic]
libevent-dev/oldstable,now 2.0.21-stable-2+deb8u1 armhf [installed]
libevent-extra-2.0-5/oldstable,now 2.0.21-stable-2+deb8u1 armhf
[installed,automatic]
libevent-openssl-2.0-5/oldstable,now 2.0.21-stable-2+deb8u1 armhf
[installed,automatic]
libevent-pthreads-2.0-5/oldstable,now 2.0.21-stable-2+deb8u1 armhf
[installed]
Il giorno venerdì 17 maggio 2019, Maxim Devaev <[email protected]>
ha scritto:
… Which version of libevent you used?
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#5>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AH46ARPSPQUQPXGG565NQ6LPV2YKDANCNFSM4HNVADOQ>
.
|
Gotcha. |
Ok, I confirm that now it compiles, thanks a lot. |
Cool. Thanks for the issue! I'll make a new ustreamer release. |
* Assign stream index on outgoing RTP packets (pikvm#5) * Correctly assign mindex on outgoing rtp packets Previously mindex was not set and defaulted to zero. This lead to most packets getting dropped because of sequence number reuse when streaming both audio and video. This reorders the SDP entries for video and audio so that video is first in both a video-only and a audio+video configuration. This means that the mindex for video packets should always be zero, and for audio (if present) should always be one. This assumes there will never be an audio-only configuration. * Adjust comments Co-authored-by: Michael Lynch <[email protected]> * Add preprocessor conditional to guard packet.mindex setting The mindex field wasn't added to the janus_plugin_rtp_packet until Janus 1.0, so this change adds a precompiler check to ensure JANUS_PLUGIN_API_VERSION is >= 100 before assigning a value to the mindex field. * Preserve audio-then-video ordering for Janus 0.x Co-authored-by: Louis Goessling <[email protected]>
* Assign stream index on outgoing RTP packets (pikvm#5) * Correctly assign mindex on outgoing rtp packets Previously mindex was not set and defaulted to zero. This lead to most packets getting dropped because of sequence number reuse when streaming both audio and video. This reorders the SDP entries for video and audio so that video is first in both a video-only and a audio+video configuration. This means that the mindex for video packets should always be zero, and for audio (if present) should always be one. This assumes there will never be an audio-only configuration. * Adjust comments Co-authored-by: Michael Lynch <[email protected]> * Add preprocessor conditional to guard packet.mindex setting The mindex field wasn't added to the janus_plugin_rtp_packet until Janus 1.0, so this change adds a precompiler check to ensure JANUS_PLUGIN_API_VERSION is >= 100 before assigning a value to the mindex field. * Preserve audio-then-video ordering for Janus 0.x Co-authored-by: Louis Goessling <[email protected]>
in the linking phase it says that the symbol libevent_global_shutdown is missing (in the compilethere is a warning).
I workarounded by commenting out (it's used to cleanup before destroy, but is not really neded)
The text was updated successfully, but these errors were encountered: