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

Builder ffmpegsos-solaris10-i386 Build #13248

Results:

Failed shell_2 shell_3 shell_4 shell_5

SourceStamp:

Projectffmpeg
Repositoryhttps://git.ffmpeg.org/ffmpeg.git
Branchmaster
Revisionc898ddb8fede853027a7c9458d928900d5db6e38
Got Revisionc898ddb8fede853027a7c9458d928900d5db6e38
Changes6 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 ( 6 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 13248 Build
codebase Build
got_revision c898ddb8fede853027a7c9458d928900d5db6e38 Git
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision c898ddb8fede853027a7c9458d928900d5db6e38 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. Andreas Rheinhardt

Timing:

StartThu Jan 29 02:16:33 2026
EndThu Jan 29 02:16:49 2026
Elapsed16 secs

All Changes:

:

  1. Change #256612

    Category ffmpeg
    Changed by Andreas Rheinhardt <andreas.rheinhardtohnoyoudont@outlook.com>
    Changed at Thu 29 Jan 2026 01:32:57
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision cd3d8116fb751fea6c498998f6ec2e30e6529a5d

    Comments

    avcodec/x86/cfhdencdsp: Avoid load of -1
    It can be easily generated at runtime.
    
    Reviewed-by: James Almer <jamrial@gmail.com>
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    Changed files

    • libavcodec/x86/cfhdencdsp.asm
  2. Change #256613

    Category ffmpeg
    Changed by Andreas Rheinhardt <andreas.rheinhardtohnoyoudont@outlook.com>
    Changed at Thu 29 Jan 2026 01:33:23
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 91c7710412bdb9bcd6aac76840b86e8a5da19785

    Comments

    avcodec/x86/cfhdencdsp: Avoid unnecessary constants
    Up until now, cfhdencdsp used constants consisting
    of -1, 1, ...,-1,1 words and 1, -1,...,1,-1 words
    for use as constants in pmaddwd. But one can use
    the same constants if one shuffles the words in
    a dword the opposite order. Similarly for some other
    constants. This also allowed to avoid a register in
    chfdenc_vert_filter.
    
    Reviewed-by: James Almer <jamrial@gmail.com>
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    Changed files

    • libavcodec/x86/cfhdencdsp.asm
  3. Change #256614

    Category ffmpeg
    Changed by Andreas Rheinhardt <andreas.rheinhardtohnoyoudont@outlook.com>
    Changed at Thu 29 Jan 2026 01:33:30
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 7dd6487800582fbf5c50836f135a2d1ce14d7fec

    Comments

    avcodec/x86/cfhdencdsp: Don't load twice
    Sign extend the integer arguments directly from the stack
    instead of loading qwords, followed by sign-extending the
    lower half.
    
    Reviewed-by: James Almer <jamrial@gmail.com>
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    Changed files

    • libavcodec/x86/cfhdencdsp.asm
  4. Change #256615

    Category ffmpeg
    Changed by Andreas Rheinhardt <andreas.rheinhardtohnoyoudont@outlook.com>
    Changed at Thu 29 Jan 2026 01:33:34
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 62244457539605f0c85df683e180f15ac2381a0f

    Comments

    avcodec/x86/cfhdencdsp: Avoid += x, -= x
    Avoid incrementing lowq and highq inside the loop by using
    complex addressing modes, avoiding to undo said modification
    at the end of the horizontal loop.
    For inputq, modify istrideq outside of the loop so that
    it is only modified once at the end of the horizontal loop.
    
    Reviewed-by: James Almer <jamrial@gmail.com>
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    Changed files

    • libavcodec/x86/cfhdencdsp.asm
  5. Change #256616

    Category ffmpeg
    Changed by Andreas Rheinhardt <andreas.rheinhardtohnoyoudont@outlook.com>
    Changed at Thu 29 Jan 2026 01:33:37
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 848c3ca772b5a7e18fedd32b80fa647785410426

    Comments

    avcodec/x86/cfhddsp: Avoid pmaddwd
    The result of using pmaddwd with the coefficients 1,-1,...,1,-1
    is just the negative of using pmaddwd with the coefficients
    -1,1,...,-1,1, so avoid one pmaddwd.
    
    Reviewed-by: James Almer <jamrial@gmail.com>
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    Changed files

    • libavcodec/x86/cfhddsp.asm
  6. Change #256617

    Category ffmpeg
    Changed by Andreas Rheinhardt <andreas.rheinhardtohnoyoudont@outlook.com>
    Changed at Thu 29 Jan 2026 01:33:40
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision c898ddb8fede853027a7c9458d928900d5db6e38

    Comments

    avcodec/x86/cfhddsp: Reduce number of xmm registers used
    Reviewed-by: James Almer <jamrial@gmail.com>
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    Changed files

    • libavcodec/x86/cfhddsp.asm