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

Builder ffmpegsos-solaris10-i386 Build #13999

Results:

Failed shell_2 shell_3 shell_4 shell_5

SourceStamp:

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

BuildSlave:

unstable10x

Reason:

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

Steps and Logfiles:

  1. git update ( 8 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 ( 7 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 13999 Build
codebase Build
got_revision 520968debbb791b5ee8a8dc4a11bd747966d7ea4 Git
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision 520968debbb791b5ee8a8dc4a11bd747966d7ea4 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. Zhao Zhili

Timing:

StartWed Jun 3 12:54:27 2026
EndWed Jun 3 12:54:47 2026
Elapsed19 secs

All Changes:

:

  1. Change #269296

    Category ffmpeg
    Changed by Zhao Zhili <zhilizhaoohnoyoudont@tencent.com>
    Changed at Wed 03 Jun 2026 12:40:20
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 200914853da88aef7f3ae915d64976c7589d5e80

    Comments

    aarch64/sbrdsp: unroll sum64x5 to 16 floats/iter
    The C version is faster than the previous asm with clang and gcc > 12 on
    rpi5, since compiler basically does the same unroll.
    
    sum64x5_neon:             before          after
      Cortex-A76 (gcc 12.4):  72.3 (3.63x)    47.4 (5.56x)
      Cortex-A76 (gcc 14.2):  72.3 (0.69x)    47.4 (1.05x)
      Apple M1 (clang 16):     0.2 (0.98x)     0.2 (0.99x)
    
    Signed-off-by: Zhao Zhili <quinkblack@foxmail.com>

    Changed files

    • libavcodec/aarch64/sbrdsp_neon.S
  2. Change #269297

    Category ffmpeg
    Changed by Zhao Zhili <zhilizhaoohnoyoudont@tencent.com>
    Changed at Wed 03 Jun 2026 12:41:08
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 520968debbb791b5ee8a8dc4a11bd747966d7ea4

    Comments

    avcodec/vc1dsp: always inline vc1_loop_filter
    vc1_loop_filter() is only reached through the six C wrappers. Clang 14
    keeps it out of line with plain static inline, adding a 224-byte stack
    frame before the tiny bestcase path on rpi 5. gcc 12 already inlines
    it.
    
    rpi 5 clang 14:
                                    before  after
    vc1_v_loop_filter4_bestcase_c   27.2     8.3   (3.3x)
    vc1_h_loop_filter4_bestcase_c   26.4    10.2   (2.6x)
    vc1_v_loop_filter8_bestcase_c   32.5    20.3   (1.6x)
    vc1_h_loop_filter8_bestcase_c   31.7    19.5   (1.6x)
    vc1_v_loop_filter16_bestcase_c  42.1    33.2   (1.3x)
    vc1_h_loop_filter16_bestcase_c  41.6    25.3   (1.6x)
    
    Signed-off-by: Zhao Zhili <zhilizhao@tencent.com>

    Changed files

    • libavcodec/vc1dsp.c