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

Builder ffmpeg64-solaris10-sparc Build #14303

Results:

Failed shell_2 shell_3 shell_4 shell_5

SourceStamp:

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

BuildSlave:

unstable10s

Reason:

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

Steps and Logfiles:

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

Build Properties:

NameValueSource
branch master Build
builddir /export/home/buildbot-unstable10s/slave/ffmpeg64-solaris10-sparc slave
buildername ffmpeg64-solaris10-sparc Builder
buildnumber 14303 Build
codebase Build
got_revision e519d13bc72534d120df44ddf60d08d0123fb238 Git
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision e519d13bc72534d120df44ddf60d08d0123fb238 Build
scheduler schedule-ffmpeg64-solaris10-sparc Scheduler
slavename unstable10s BuildSlave
workdir /export/home/buildbot-unstable10s/slave/ffmpeg64-solaris10-sparc slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Michael Niedermayer
  2. Thierry Foucu

Timing:

StartWed Sep 16 19:16:32 2026
EndWed Sep 16 19:17:13 2026
Elapsed41 secs

All Changes:

:

  1. Change #281946

    Category ffmpeg
    Changed by Michael Niedermayer <michaelohnoyoudont@niedermayer.cc>
    Changed at Wed 16 Sep 2026 20:56:45
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 79293e8e95e792581badba8201e6dd2d68df3661

    Comments

    avformat/aviobuf: generate the multi-byte readers from one macro
    avio_rl16() through avio_rb64() are eight copies of the same two-step
    read differing only in the partial reads and shifts, so generate them
    from a macro taking those as parameters.
    
    The generated machine code is identical to the open-coded functions.

    Changed files

    • libavformat/aviobuf.c
  2. Change #281947

    Category ffmpeg
    Changed by Thierry Foucu <tfoucuohnoyoudont@gmail.com>
    Changed at Wed 16 Sep 2026 20:56:45
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision e519d13bc72534d120df44ddf60d08d0123fb238

    Comments

    avformat/aviobuf: read multi-byte values directly from the buffer
    The readers fetch their input through nested avio_r8() calls, paying a
    buffer bounds check per byte. Read the value with a single load when
    it is fully contained in the buffer and keep the byte-wise code as the
    refill fallback.
    
    Demuxing a fragmented MP4 with -c copy, where moof/trun parsing is
    dominated by these readers, drops from 2.703 +/- 0.036 to
    2.426 +/- 0.040 seconds of user time (-10%, n=30, p < 1e-4).

    Changed files

    • libavformat/aviobuf.c