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

Builder ffmpeg-solaris10-i386 Build #13130

Results:

Failed shell_2 shell_3 shell_4 shell_5

SourceStamp:

Projectffmpeg
Repositoryhttps://git.ffmpeg.org/ffmpeg.git
Branchmaster
Revisionbf4d5037b4c30dee9cd8641218b66e7b85e79952
Got Revisionbf4d5037b4c30dee9cd8641218b66e7b85e79952
Changes13 changes

BuildSlave:

unstable10x

Reason:

The SingleBranchScheduler scheduler named 'schedule-ffmpeg-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.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/ffmpeg-solaris10-i386 slave
buildername ffmpeg-solaris10-i386 Builder
buildnumber 13130 Build
codebase Build
got_revision bf4d5037b4c30dee9cd8641218b66e7b85e79952 Git
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision bf4d5037b4c30dee9cd8641218b66e7b85e79952 Build
scheduler schedule-ffmpeg-solaris10-i386 Scheduler
slavename unstable10x BuildSlave
workdir /export/home/buildbot/slave/ffmpeg-solaris10-i386 slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Andreas Rheinhardt

Timing:

StartSun Jan 25 23:56:52 2026
EndSun Jan 25 23:57:06 2026
Elapsed14 secs

All Changes:

:

  1. Change #256356

    Category ffmpeg
    Changed by Andreas Rheinhardt <andreas.rheinhardtohnoyoudont@outlook.com>
    Changed at Sun 25 Jan 2026 22:53:21
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 982244818bd5e543f042cb49a0a74155d4bd1430

    Comments

    avcodec/x86/h264_deblock: Remove unused macros
    Forgotten in 4618f36a2424a3a4d5760afabc2e9dd18d73f0a4.
    Also remove a PASS8ROWS wrapper that seems to have been always
    unused.
    
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    Changed files

    • libavcodec/x86/h264_deblock.asm
  2. Change #256357

    Category ffmpeg
    Changed by Andreas Rheinhardt <andreas.rheinhardtohnoyoudont@outlook.com>
    Changed at Sun 25 Jan 2026 22:53:21
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision d53ff30215a69f3e3d33a70d82cd0bcf1b229c59

    Comments

    tests/checkasm/h264dsp: Don't test loop filter strength 0
    These functions are not used with these parameters;
    see the filter_mb_* functions in h264_loopfilter.c.
    
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    Changed files

    • tests/checkasm/h264dsp.c
  3. Change #256358

    Category ffmpeg
    Changed by Andreas Rheinhardt <andreas.rheinhardtohnoyoudont@outlook.com>
    Changed at Sun 25 Jan 2026 22:53:21
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision a22149ab3d2f7e9e66ae0b82f8fc0861eec7d98b

    Comments

    avcodec/x86/h264_deblock: Remove always-false branches
    These functions are always called with alpha and beta > 0.
    
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    Changed files

    • libavcodec/x86/h264_deblock.asm
  4. Change #256359

    Category ffmpeg
    Changed by Andreas Rheinhardt <andreas.rheinhardtohnoyoudont@outlook.com>
    Changed at Sun 25 Jan 2026 22:53:21
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 899475326b0983bc9970330acee7bb3e4f44a00c

    Comments

    avcodec/x86/h264_deblock: Simplify splatting
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    Changed files

    • libavcodec/x86/h264_deblock.asm
  5. Change #256360

    Category ffmpeg
    Changed by Andreas Rheinhardt <andreas.rheinhardtohnoyoudont@outlook.com>
    Changed at Sun 25 Jan 2026 22:53:21
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision b1140d3c982e0720d2dd638f2d7ae0ca6552ac13

    Comments

    avcodec/x86/h264_deblock: Remove obsolete macro parameters
    They are a remnant of the MMX functions (which processed
    only eight pixels at a time, so that it was called twice
    via a wrapper; the actual MMX function had "v8" in its name
    instead of simply v) which have been removed in commit
    4618f36a2424a3a4d5760afabc2e9dd18d73f0a4.
    
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    Changed files

    • libavcodec/x86/h264_deblock.asm
  6. Change #256361

    Category ffmpeg
    Changed by Andreas Rheinhardt <andreas.rheinhardtohnoyoudont@outlook.com>
    Changed at Sun 25 Jan 2026 22:53:21
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision dbdf514c17a081328fa9f035cf03cb9b74c85567

    Comments

    avcodec/x86/h264_deblock_10bit: Remove custom stack allocation code
    Allocate it via cglobal as usual. This makes the SSE2/AVX functions
    available when HAVE_ALIGNED_STACK is false; it also avoids
    modifying rsp unnecessarily in the deblock_h_luma_intra_10 functions
    on Win64.
    
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    Changed files

    • libavcodec/x86/h264_deblock_10bit.asm
    • libavcodec/x86/h264dsp_init.c
  7. Change #256362

    Category ffmpeg
    Changed by Andreas Rheinhardt <andreas.rheinhardtohnoyoudont@outlook.com>
    Changed at Sun 25 Jan 2026 22:53:21
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision aab0946eae1fbcfa3fff2f1f6660146ce14bab22

    Comments

    avcodec/x86/h264_deblock_10bit: Remove mmxext functions
    Now that the SSE2/AVX functions are no longer restricted
    to those systems having an aligned stack, the MMXEXT functions
    are always overridden (except for ancient systems without
    SSE2), so remove them.
    
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    Changed files

    • libavcodec/x86/h264_deblock_10bit.asm
    • libavcodec/x86/h264dsp_init.c
  8. Change #256363

    Category ffmpeg
    Changed by Andreas Rheinhardt <andreas.rheinhardtohnoyoudont@outlook.com>
    Changed at Sun 25 Jan 2026 22:53:21
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision eaaf45fd79fb5c8c3685a5e7977a34ad593c7af4

    Comments

    avcodec/x86/h264_deblock_10bit: Simplify r0+4*r1
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    Changed files

    • libavcodec/x86/h264_deblock_10bit.asm
  9. Change #256364

    Category ffmpeg
    Changed by Andreas Rheinhardt <andreas.rheinhardtohnoyoudont@outlook.com>
    Changed at Sun 25 Jan 2026 22:53:21
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 9882973935a28939ef5dc253ac93da58c65feb1b

    Comments

    avcodec/x86/h264_deblock: Avoid reloading constant
    No change in benchmarks.
    
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    Changed files

    • libavcodec/x86/h264_deblock.asm
  10. Change #256365

    Category ffmpeg
    Changed by Andreas Rheinhardt <andreas.rheinhardtohnoyoudont@outlook.com>
    Changed at Sun 25 Jan 2026 22:53:21
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 8428a412bcda3dea67ced77f8732e9b771811889

    Comments

    avcodec/x86/h264_deblock: Avoid MMX in deblock_h_luma_8
    Old benchmarks:
    h264_h_loop_filter_luma_8bpp_c:                         59.9 ( 1.00x)
    h264_h_loop_filter_luma_8bpp_sse2:                      67.9 ( 0.88x)
    h264_h_loop_filter_luma_8bpp_avx:                       67.4 ( 0.89x)
    
    New benchmarks:
    h264_h_loop_filter_luma_8bpp_c:                         60.0 ( 1.00x)
    h264_h_loop_filter_luma_8bpp_sse2:                      65.4 ( 0.92x)
    h264_h_loop_filter_luma_8bpp_avx:                       65.3 ( 0.92x)
    
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    Changed files

    • libavcodec/x86/h264_deblock.asm
  11. Change #256366

    Category ffmpeg
    Changed by Andreas Rheinhardt <andreas.rheinhardtohnoyoudont@outlook.com>
    Changed at Sun 25 Jan 2026 22:53:21
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision db66e057ebfe0c94a8340b6d3ac83ad173ef52e9

    Comments

    avcodec/x86/h264_deblock: Avoid reload
    Old benchmarks:
    h264_h_loop_filter_luma_8bpp_c:                         60.0 ( 1.00x)
    h264_h_loop_filter_luma_8bpp_sse2:                      65.4 ( 0.92x)
    h264_h_loop_filter_luma_8bpp_avx:                       65.3 ( 0.92x)
    
    New benchmarks:
    h264_h_loop_filter_luma_8bpp_c:                         60.4 ( 1.00x)
    h264_h_loop_filter_luma_8bpp_sse2:                      62.0 ( 0.97x)
    h264_h_loop_filter_luma_8bpp_avx:                       61.7 ( 0.98x)
    
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    Changed files

    • libavcodec/x86/h264_deblock.asm
  12. Change #256367

    Category ffmpeg
    Changed by Andreas Rheinhardt <andreas.rheinhardtohnoyoudont@outlook.com>
    Changed at Sun 25 Jan 2026 22:53:21
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 489aaf4e1cafef0d3c7902d45050eb02372dc07c

    Comments

    avcodec/x86/h264_deblock: Don't sign-extend stride
    Unnecessary (and wrong) since d5d699ab6e6f8a8290748d107416fd5c19757a1b.
    
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    Changed files

    • libavcodec/x86/h264_deblock.asm
  13. Change #256368

    Category ffmpeg
    Changed by Andreas Rheinhardt <andreas.rheinhardtohnoyoudont@outlook.com>
    Changed at Sun 25 Jan 2026 22:53:25
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision bf4d5037b4c30dee9cd8641218b66e7b85e79952

    Comments

    avcodec/h264dsp: Remove redundant h264 from H264DSPCtx member names
    These names are a remnant of dsputil when all the DSP functions
    from all codecs were part of DSPcontext.
    
    Reviewed-by: Rémi Denis-Courmont <remi@remlab.net>
    Reviewed-by: Sean McGovern <gseanmcg@gmail.com>
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    Changed files

    • libavcodec/aarch64/h264dsp_init_aarch64.c
    • libavcodec/arm/h264dsp_init_arm.c
    • libavcodec/h264_loopfilter.c
    • libavcodec/h264_mb.c
    • libavcodec/h264_mb_template.c
    • libavcodec/h264dsp.c
    • libavcodec/h264dsp.h
    • libavcodec/loongarch/h264dsp_init_loongarch.c
    • libavcodec/mips/h264dsp_init_mips.c
    • libavcodec/ppc/h264dsp.c
    • libavcodec/riscv/h264dsp_init.c
    • libavcodec/svq3.c
    • libavcodec/x86/h264dsp_init.c
    • tests/checkasm/h264dsp.c