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

Builder ffmpeg64-solaris10-i386 Build #14145

Results:

Failed

SourceStamp:

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

BuildSlave:

unstable10x

Reason:

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

Steps and Logfiles:

  1. git updating ( 8 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 14145 Build
codebase Build
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision e519d13bc72534d120df44ddf60d08d0123fb238 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. Michael Niedermayer
  2. Thierry Foucu

Timing:

StartWed Sep 16 19:16:35 2026
EndWed Sep 16 19:16:43 2026
Elapsed8 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