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

Builder ffmpeg64-solaris10-sparc Build #13557

Results:

Failed shell_2 shell_3 shell_4 shell_5

SourceStamp:

Projectffmpeg
Repositoryhttps://git.ffmpeg.org/ffmpeg.git
Branchmaster
Revisionde18feb0f099154e6ccb6d3746881030d2f53fa1
Got Revisionde18feb0f099154e6ccb6d3746881030d2f53fa1
Changes1 change

BuildSlave:

unstable10s

Reason:

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

Steps and Logfiles:

  1. git update ( 7 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_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 13557 Build
codebase Build
got_revision de18feb0f099154e6ccb6d3746881030d2f53fa1 Git
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision de18feb0f099154e6ccb6d3746881030d2f53fa1 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. Jeongkeun Kim

Timing:

StartSun Apr 19 21:34:53 2026
EndSun Apr 19 21:35:10 2026
Elapsed17 secs

All Changes:

:

  1. Change #264963

    Category ffmpeg
    Changed by Jeongkeun Kim <variety0724ohnoyoudont@gmail.com>
    Changed at Sun 19 Apr 2026 21:27:55
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision de18feb0f099154e6ccb6d3746881030d2f53fa1

    Comments

    avutil/aarch64: add pixelutils 32x32 SAD NEON implementation
    This adds a NEON-optimized function for computing 32x32 Sum of Absolute
    Differences (SAD) on AArch64, addressing a gap where x86 had SSE2/AVX2
    implementations but AArch64 lacked equivalent coverage.
    
    The implementation mirrors the existing sad8 and sad16 NEON functions,
    employing a 4-row unrolled loop with UABAL and UABAL2 instructions for
    efficient load-compute interleaving, and four 8x16-bit accumulators to
    handle the wider 32-byte rows.
    
    Benchmarks on AWS Graviton3 (Neoverse V1, c7g.xlarge) using checkasm:
      sad_32x32_0: C 146.4 cycles -> NEON  98.1 cycles (1.49x speedup)
      sad_32x32_1: C 141.4 cycles -> NEON  98.9 cycles (1.43x speedup)
      sad_32x32_2: C 140.7 cycles -> NEON  95.0 cycles (1.48x speedup)
    
    Signed-off-by: Jeongkeun Kim <variety0724@gmail.com>

    Changed files

    • libavutil/aarch64/pixelutils.h
    • libavutil/aarch64/pixelutils_neon.S