Home - Waterfall Grid T-Grid Console Builders Recent Builds Buildslaves Changesources - JSON API - About

Builder ffmpegsos-solaris10-i386 Build #13853

Results:

Failed shell_2 shell_3 shell_4 shell_5

SourceStamp:

Projectffmpeg
Repositoryhttps://git.ffmpeg.org/ffmpeg.git
Branchmaster
Revision837cf8e38fa7b4d860ae8a7ef836ce4f94a956d1
Got Revision837cf8e38fa7b4d860ae8a7ef836ce4f94a956d1
Changes2 changes

BuildSlave:

unstable10x

Reason:

The SingleBranchScheduler scheduler named 'schedule-ffmpegsos-solaris10-i386' triggered this build

Steps and Logfiles:

  1. git update ( 6 secs )
    1. stdio
  2. shell 'gsed -i ...' ( 0 secs )
    1. stdio
  3. shell_1 'gsed -i ...' ( 0 secs )
    1. stdio
  4. shell_2 'gsed -i ...' failed ( 0 secs )
    1. stdio
  5. shell_3 './configure --samples="../../../ffmpeg/fate-suite" ...' failed ( 11 secs )
    1. stdio
    2. config.log
  6. shell_4 'gmake fate-rsync' failed ( 0 secs )
    1. stdio
  7. shell_5 '../../../ffmpeg/fate.sh ../../../ffmpeg/fate_config_sos.sh' failed ( 0 secs )
    1. stdio
    2. configure.log
    3. compile.log
    4. test.log

Build Properties:

NameValueSource
branch master Build
builddir /export/home/buildbot/slave/ffmpegsos-solaris10-i386 slave
buildername ffmpegsos-solaris10-i386 Builder
buildnumber 13853 Build
codebase Build
got_revision 837cf8e38fa7b4d860ae8a7ef836ce4f94a956d1 Git
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision 837cf8e38fa7b4d860ae8a7ef836ce4f94a956d1 Build
scheduler schedule-ffmpegsos-solaris10-i386 Scheduler
slavename unstable10x BuildSlave
workdir /export/home/buildbot/slave/ffmpegsos-solaris10-i386 slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Nariman-Sayed

Timing:

StartMon May 11 15:13:02 2026
EndMon May 11 15:13:21 2026
Elapsed19 secs

All Changes:

:

  1. Change #266734

    Category ffmpeg
    Changed by Nariman-Sayed <narimansayed28ohnoyoudont@gmail.com>
    Changed at Mon 11 May 2026 14:36:58
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 094f72748d67e4834d7276ef511242c13ab46fac

    Comments

    avformat/tls: move DTLS packet detection into ff_is_dtls_packet()
    Move the DTLS packet detection logic from whip.c into a shared
    ff_is_dtls_packet() function in tls.c, with its declaration and
    related macros in tls.h. Update whip.c to use the new shared function.
    
    Signed-off-by: Nariman-Sayed <narimansayed28@gmail.com>

    Changed files

    • libavformat/tls.c
    • libavformat/tls.h
    • libavformat/whip.c
  2. Change #266735

    Category ffmpeg
    Changed by Nariman-Sayed <narimansayed28ohnoyoudont@gmail.com>
    Changed at Mon 11 May 2026 14:36:58
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 837cf8e38fa7b4d860ae8a7ef836ce4f94a956d1

    Comments

    avformat/tls_mbedtls: fix DTLS handshake failure when receiving non-DTLS packets
    Some WebRTC servers such as Pion send STUN packets concurrently during
    the DTLS handshake. Unlike OpenSSL and GnuTLS which filter non-DTLS
    packets internally, mbedtls passes all received UDP packets directly to
    its DTLS state machine, causing the handshake to fail.
    
    Fix this by using ff_is_dtls_packet() in mbedtls_recv to discard
    non-DTLS packets such as STUN by returning WANT_READ, as specified
    by RFC 5764 Section 5.1.2.
    
    Signed-off-by: Nariman-Sayed <narimansayed28@gmail.com>

    Changed files

    • libavformat/tls_mbedtls.c