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

Builder ffmpegsos-solaris10-sparc Build #13841

Results:

Failed shell_2 shell_3 shell_4 shell_5

SourceStamp:

Projectffmpeg
Repositoryhttps://git.ffmpeg.org/ffmpeg.git
Branchmaster
Revision0056dd32fd94e739e14bb3c463c68ebe806dfd1d
Got Revision0056dd32fd94e739e14bb3c463c68ebe806dfd1d
Changes4 changes

BuildSlave:

unstable10s

Reason:

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

Steps and Logfiles:

  1. git update ( 9 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 ( 8 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-unstable10s/slave/ffmpegsos-solaris10-sparc slave
buildername ffmpegsos-solaris10-sparc Builder
buildnumber 13841 Build
codebase Build
got_revision 0056dd32fd94e739e14bb3c463c68ebe806dfd1d Git
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision 0056dd32fd94e739e14bb3c463c68ebe806dfd1d Build
scheduler schedule-ffmpegsos-solaris10-sparc Scheduler
slavename unstable10s BuildSlave
workdir /export/home/buildbot-unstable10s/slave/ffmpegsos-solaris10-sparc slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Andreas Rheinhardt

Timing:

StartSat Aug 15 23:45:30 2026
EndSat Aug 15 23:45:50 2026
Elapsed19 secs

All Changes:

:

  1. Change #278329

    Category ffmpeg
    Changed by Andreas Rheinhardt <andreas.rheinhardtohnoyoudont@outlook.com>
    Changed at Sat 15 Aug 2026 22:40:43
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision a2b7272b4a76089ceb69b5792e2766283e473d36

    Comments

    avcodec/mips/hevc_mc_biw_msa: Fix offsets parameter
    Broken in baad19d0b5840f637e95ba4b87d73e58637ec702.
    
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    Changed files

    • libavcodec/mips/hevc_mc_biw_msa.c
  2. Change #278330

    Category ffmpeg
    Changed by Andreas Rheinhardt <andreas.rheinhardtohnoyoudont@outlook.com>
    Changed at Sat 15 Aug 2026 22:40:43
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 124e8393e5b80ab294170d02e8e559c20a4a8832

    Comments

    avcodec/mips/mpegvideo_{mmi,msa}: Use correct scantable
    This only worked because raster_end derived from
    the WMV1/2 intra scantable (i.e. derived from
    ff_wmv1_scantable[1]) is <= raster_end derived
    from the WMV1/2 inter scantable (i.e. derived
    from ff_wmv1_scantable[0]). But it broke the
    checkasm test.
    
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    Changed files

    • libavcodec/mips/mpegvideo_mmi.c
    • libavcodec/mips/mpegvideo_msa.c
  3. Change #278331

    Category ffmpeg
    Changed by Andreas Rheinhardt <andreas.rheinhardtohnoyoudont@outlook.com>
    Changed at Sat 15 Aug 2026 22:40:43
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision d5b8439bdd968f3bea5f973ecb4d51b4325ee364

    Comments

    avcodec/mips/hevcpred_msa: Fix compilation
    Broken in ba56a300a94bdf5520ac1324a8e7fbaeea430904,
    ba56a300a94bdf5520ac1324a8e7fbaeea430904 and again
    in 38b8ae4112684c3415ab2f7d717605759d764d27.
    
    This means that no has compiled git master on mips
    since 2024-06-04. And no one complained.
    
    Hint: One still needs to pass -flax-vector-conversions
    here in order to compile this file.
    
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    Changed files

    • libavcodec/mips/hevcpred_msa.c
  4. Change #278332

    Category ffmpeg
    Changed by Andreas Rheinhardt <andreas.rheinhardtohnoyoudont@outlook.com>
    Changed at Sat 15 Aug 2026 22:40:43
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 0056dd32fd94e739e14bb3c463c68ebe806dfd1d

    Comments

    avcodec/mips/vc1dsp_msa: Fix mspel functions
    The VC-1 mc prediction for combined horizontal and vertical offset
    involves first a vertical 4-tap filter, followed by shifting,
    followed by a horizontal 4-tap filter, followed by shifting by 7.
    Both passes involve negative coefficients and therefore the
    intermediate values for the >> 7 can exceed the range of
    0..255*128 a bit in both directions. Therefore one can not simply
    use either a logical or an arithmetic right shift. But one can use
    them after having added a certain bias to ensure that one is in
    the proper range. This is what this commit does.
    
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    Changed files

    • libavcodec/mips/vc1dsp_msa.c