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

Builder ffmpeg-solaris10-sparc Build #12740

Results:

Failed shell_2 shell_3 shell_4 shell_5

SourceStamp:

Projectffmpeg
Repositoryhttps://git.ffmpeg.org/ffmpeg.git
Branchmaster
Revision81362b319ea7244d8d17110adfa59f10c7e78268
Got Revision81362b319ea7244d8d17110adfa59f10c7e78268
Changes3 changes

BuildSlave:

unstable10s

Reason:

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

Steps and Logfiles:

  1. git update ( 11 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 ( 19 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.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-unstable10s/slave/ffmpeg-solaris10-sparc slave
buildername ffmpeg-solaris10-sparc Builder
buildnumber 12740 Build
codebase Build
got_revision 81362b319ea7244d8d17110adfa59f10c7e78268 Git
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision 81362b319ea7244d8d17110adfa59f10c7e78268 Build
scheduler schedule-ffmpeg-solaris10-sparc Scheduler
slavename unstable10s BuildSlave
workdir /export/home/buildbot-unstable10s/slave/ffmpeg-solaris10-sparc slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Andreas Rheinhardt

Timing:

StartWed Nov 26 01:10:14 2025
EndWed Nov 26 01:10:48 2025
Elapsed34 secs

All Changes:

:

  1. Change #250032

    Category ffmpeg
    Changed by Andreas Rheinhardt <andreas.rheinhardtohnoyoudont@outlook.com>
    Changed at Wed 26 Nov 2025 01:01:09
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 6588bf368613a7fdc1970c77030a94f31fcfa970

    Comments

    avcodec/x86/me_cmp: Avoid manual stack handling
    Use x86inc's stack alignment feature instead of allocating the stack
    manually*; this means that this code now also automatically supports
    unaligned stacks, so that the SSE2 and SSSE3 functions will now be
    available everywhere.
    
    *: The code for this was also buggy: It resulted in the stack pointer
    to be 4 mod 8 for x64 for the mmxext version before it was disabled
    in 542765ce3eccbca587d54262a512cbdb1407230d, because it hardcode 4
    instead of using gprsize.
    
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    Changed files

    • libavcodec/x86/me_cmp.asm
    • libavcodec/x86/me_cmp_init.c
  2. Change #250034

    Category ffmpeg
    Changed by Andreas Rheinhardt <andreas.rheinhardtohnoyoudont@outlook.com>
    Changed at Wed 26 Nov 2025 01:01:09
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 23720df371d7da9ea8074b01753497f7194973f4

    Comments

    avcodec/me_cmp: Remove MMXEXT hadamard diff functions
    The SSE2 and SSSE3 functions are now available everywhere,
    making the MMXEXT functions irrelevant.
    
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    Changed files

    • libavcodec/x86/me_cmp.asm
    • libavcodec/x86/me_cmp_init.c
  3. Change #250035

    Category ffmpeg
    Changed by Andreas Rheinhardt <andreas.rheinhardtohnoyoudont@outlook.com>
    Changed at Wed 26 Nov 2025 01:01:09
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 81362b319ea7244d8d17110adfa59f10c7e78268

    Comments

    avcodec/x86/me_cmp: Avoid call on UNIX64
    The internal functions for calculating the hadamard difference
    of two 8x8 blocks have no epilogue on UNIX64, so one can avoid
    the call altogether by placing the 8x8 function so that it directly
    falls into the internal function.
    
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    Changed files

    • libavcodec/x86/me_cmp.asm