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

Builder ffmpeg64-solaris10-i386 Build #14144

Results:

Failed

SourceStamp:

Projectffmpeg
Repositoryhttps://git.ffmpeg.org/ffmpeg.git
Branchmaster
Revision9cf34b031f489dcecad5c579d0a22a956918cf36
Changes2 changes

BuildSlave:

unstable10x

Reason:

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

Steps and Logfiles:

  1. git updating ( 5 secs )
    1. stdio
  2. shell  
    1. - no logs -
  3. shell_1  
    1. - no logs -
  4. shell_2  
    1. - no logs -
  5. shell_3  
    1. - no logs -
  6. shell_4  
    1. - no logs -
  7. shell_5  
    1. - no logs -

Build Properties:

NameValueSource
branch master Build
builddir /export/home/buildbot/slave/ffmpeg64-solaris10-i386 slave
buildername ffmpeg64-solaris10-i386 Builder
buildnumber 14144 Build
codebase Build
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision 9cf34b031f489dcecad5c579d0a22a956918cf36 Build
scheduler schedule-ffmpeg64-solaris10-i386 Scheduler
slavename unstable10x BuildSlave
workdir /export/home/buildbot/slave/ffmpeg64-solaris10-i386 slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Thomas Devoogdt

Timing:

StartWed Sep 16 17:24:17 2026
EndWed Sep 16 17:24:23 2026
Elapsed5 secs

All Changes:

:

  1. Change #281940

    Category ffmpeg
    Changed by Thomas Devoogdt <thomasohnoyoudont@devoogdt.com>
    Changed at Wed 16 Sep 2026 19:03:53
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 62508d7629d820e1968016112d2d3594447a4fdb

    Comments

    fftools/ffplay: exit via do_exit() on termination signal
    sigterm_handler() called exit(123) directly, bypassing
    avformat_close_input() and therefore any protocol level shutdown, such as
    the RTSP TEARDOWN.  Set a flag instead and let the event loop leave
    through do_exit(), which keeps the 123 exit status.
    
    Add a hard exit on the 4th sigterm, similar to ffmpeg.
    
    Signed-off-by: Thomas Devoogdt <thomas@devoogdt.com>

    Changed files

    • fftools/ffplay.c
  2. Change #281941

    Category ffmpeg
    Changed by Thomas Devoogdt <thomasohnoyoudont@devoogdt.com>
    Changed at Wed 16 Sep 2026 19:05:34
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 9cf34b031f489dcecad5c579d0a22a956918cf36

    Comments

    avformat/rtpdec: propagate SRTP setup errors to the caller
    ff_rtp_parse_set_crypto() was void and dropped the ff_srtp_set_crypto()
    return value.  A rejected crypto suite therefore left srtp_enabled clear
    while RTSPStream.crypto_suite stayed set, and rtsp.c uses crypto_suite[0]
    as the sole guard for secure transport.  The session could thus be
    negotiated as SRTP while the RTP actually went out unprotected.
    
    Return the error instead and let ff_rtsp_open_transport_ctx() abort SETUP
    rather than continue with a half-initialised SRTP context.
    
    Signed-off-by: Thomas Devoogdt <thomas@devoogdt.com>

    Changed files

    • libavformat/rtpdec.c
    • libavformat/rtpdec.h
    • libavformat/rtsp.c