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

Builder ffmpegsos-solaris10-i386 Build #13636

Results:

Failed shell_2 shell_3 shell_4 shell_5

SourceStamp:

Projectffmpeg
Repositoryhttps://git.ffmpeg.org/ffmpeg.git
Branchmaster
Revision1a7979a2f8ab86189e2f9aa2733822ab573c6840
Got Revision1a7979a2f8ab86189e2f9aa2733822ab573c6840
Changes5 changes

BuildSlave:

unstable10x

Reason:

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

Steps and Logfiles:

  1. git update ( 5 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 ( 1 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 13636 Build
codebase Build
got_revision 1a7979a2f8ab86189e2f9aa2733822ab573c6840 Git
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision 1a7979a2f8ab86189e2f9aa2733822ab573c6840 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:

StartSun Mar 29 01:45:01 2026
EndSun Mar 29 01:45:17 2026
Elapsed15 secs

All Changes:

:

  1. Change #262711

    Category ffmpeg
    Changed by Andreas Rheinhardt <andreas.rheinhardtohnoyoudont@outlook.com>
    Changed at Sun 29 Mar 2026 01:05:23
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision c00721310fda193e2b25358da7b2a8ed93d70e8a

    Comments

    avcodec/x86/hevc/deblock: Avoid vmovdqa
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    Changed files

    • libavcodec/x86/hevc/deblock.asm
  2. Change #262712

    Category ffmpeg
    Changed by Andreas Rheinhardt <andreas.rheinhardtohnoyoudont@outlook.com>
    Changed at Sun 29 Mar 2026 01:05:23
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision eb5ac9fee74d1b59c62cde327536e234fc8c4eeb

    Comments

    avfilter/x86/vf_idetdsp: Avoid (v)movdqa
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    Changed files

    • libavfilter/x86/vf_idetdsp.asm
  3. Change #262713

    Category ffmpeg
    Changed by Andreas Rheinhardt <andreas.rheinhardtohnoyoudont@outlook.com>
    Changed at Sun 29 Mar 2026 01:05:23
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 88870f33abea3788287cd501aea6782c94b2df68

    Comments

    avcodec/x86/h26x/h2656_inter: Remove always-true checks
    It has already been checked before that we are only dealing
    with high bitdepth here.
    
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    Changed files

    • libavcodec/x86/h26x/h2656_inter.asm
  4. Change #262714

    Category ffmpeg
    Changed by Andreas Rheinhardt <andreas.rheinhardtohnoyoudont@outlook.com>
    Changed at Sun 29 Mar 2026 01:05:23
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision a72b00675cfc8e52d4f5cc966997da798d920fea

    Comments

    avcodec/x86/h26x/h2656_inter: Don't prepare unused coeffs for hv funcs
    8 tap motion compensation functions with both vertical and horizontal
    components are under severe register pressure, so that the filter
    coefficients have to be put on the stack. Before this commit,
    this meant that coefficients for use with pmaddubsw and pmaddwd
    were always created. Yet this is completely unnecessary, as
    every such register is only used for exactly one purpose and
    it is known at compile time which one it is (only 8bit horizontal
    filters are used with pmaddubsw), so only prepare that one.
    This also allows to half the amount of stack used.
    
    This saves 2432B of .text here.
    
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    Changed files

    • libavcodec/x86/h26x/h2656_inter.asm
  5. Change #262715

    Category ffmpeg
    Changed by Andreas Rheinhardt <andreas.rheinhardtohnoyoudont@outlook.com>
    Changed at Sun 29 Mar 2026 01:05:23
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 1a7979a2f8ab86189e2f9aa2733822ab573c6840

    Comments

    avcodec/x86/h26x/h2656_inter: Simplify splatting coefficients
    For pre-AVX2, vpbroadcastw is emulated via a load, followed
    by two shuffles. Yet given that one always wants to splat
    multiple pairs of coefficients which are adjacent in memory,
    one can do better than that: Load all of them at once, perform
    a punpcklwd with itself and use one pshufd per register.
    In case one has to sign-extend the coefficients, too,
    one can replace the punpcklwd with one pmovsxbw (instead of one
    per register) and use pshufd directly afterwards.
    
    This saved 4816B of .text here.
    
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    Changed files

    • libavcodec/x86/h26x/h2656_inter.asm