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

Builder ffmpegsos-solaris10-sparc Build #13752

Results:

Failed shell_2 shell_3 shell_4 shell_5

SourceStamp:

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

BuildSlave:

unstable10s

Reason:

The SingleBranchScheduler scheduler named 'schedule-ffmpegsos-solaris10-sparc' 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 ( 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 13752 Build
codebase Build
got_revision c2802e520a08dbf0c939ec8b5653b29dfd886427 Git
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision c2802e520a08dbf0c939ec8b5653b29dfd886427 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
  2. ninbura

Timing:

StartSun Aug 2 17:34:00 2026
EndSun Aug 2 17:34:19 2026
Elapsed18 secs

All Changes:

:

  1. Change #276772

    Category ffmpeg
    Changed by Andreas Rheinhardt <andreas.rheinhardtohnoyoudont@outlook.com>
    Changed at Sun 02 Aug 2026 18:36:51
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision b4d11f4046335a1e992d75e4ef9890844f7cf742

    Comments

    avcodec/x86/lossless_videodsp: Optimize add_gradient_pred
    Combinations of shift and add like
    pslldq  m3, m2, 1
    paddb   m2, m3
    are linear in the input register m2. This implies
    that instead of applying the same sequence of shifts and adds
    to two different registers and adding said registers
    one can just add the register first and then apply
    said sequence of shifts and adds once.
    
    Old benchmarks:
      add_gradient_pred_c:           2296.2
      add_gradient_pred_ssse3:        570.4 ( 3.95x)
      add_gradient_pred_avx2:         308.8 ( 7.29x)
    
    New benchmarks:
      add_gradient_pred_c:           2315.6
      add_gradient_pred_ssse3:        344.0 ( 6.72x)
      add_gradient_pred_avx2:         205.2 (11.28x)
    
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    Changed files

    • libavcodec/x86/lossless_videodsp.asm
  2. Change #276773

    Category ffmpeg
    Changed by Andreas Rheinhardt <andreas.rheinhardtohnoyoudont@outlook.com>
    Changed at Sun 02 Aug 2026 18:36:52
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 6c123e217ba990732be960c99e0571528e6201c6

    Comments

    avcodec/x86/lossless_videodsp: Hoist calculation out of loop
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    Changed files

    • libavcodec/x86/lossless_videodsp.asm
  3. Change #276774

    Category ffmpeg
    Changed by Andreas Rheinhardt <andreas.rheinhardtohnoyoudont@outlook.com>
    Changed at Sun 02 Aug 2026 18:36:52
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision f0fc529cbe5c918553dd210999b140efd6632a46

    Comments

    avcodec/x86/lossless_videodsp: Use memory operand where possible
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    Changed files

    • libavcodec/x86/lossless_videodsp.asm
  4. Change #276775

    Category ffmpeg
    Changed by ninbura <gabrielohnoyoudont@ninbura.com>
    Changed at Sun 02 Aug 2026 19:10:11
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision c2802e520a08dbf0c939ec8b5653b29dfd886427

    Comments

    avdevice/avfoundation: add device selection by USB serial and unique ID
    A capture device could previously be selected only by index or by name.
    Both are unreliable when multiple audio/video devices share a name or
    across reboots. AVFoundation reorders the device indices, and the USB
    video uniqueID embeds the macOS locationID, which can be reassigned on
    reboot or replug and can then resolve to a different physical device.
    
    Add -video_device_id and -audio_device_id, which take a prefixed
    identifier: uid:<unique ID> or serial:<USB serial number>.
    
    The USB serial number is the only identifier that stays pegged to a
    given physical unit. For video it is resolved to the device's current
    locationID via IOKit. For audio it is matched against the uniqueID,
    which already embeds it. The unique ID covers devices that have no
    serial, such as virtual camera/audio devices.
    
    -list_devices additionally prints each device's uniqueID and USB serial
    so the values can be discovered. IOKit is detected in configure and used
    only when available.
    
    Signed-off-by: Gabriel Balaich <ffmpeg@ninbura.com>

    Changed files

    • Changelog
    • configure
    • doc/indevs.texi
    • libavdevice/avfoundation.m