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

Builder ffmpeg64-solaris10-sparc Build #13526

Results:

Failed shell_2 shell_3 shell_4 shell_5

SourceStamp:

Projectffmpeg
Repositoryhttps://git.ffmpeg.org/ffmpeg.git
Branchmaster
Revisionb62ae766c166ac7e83c7f0bd7e022902bac320b1
Got Revisionb62ae766c166ac7e83c7f0bd7e022902bac320b1
Changes2 changes

BuildSlave:

unstable10s

Reason:

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

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Zhao Zhili
  2. Zhao Zhili

Timing:

StartMon Apr 13 14:05:29 2026
EndMon Apr 13 14:05:47 2026
Elapsed18 secs

All Changes:

:

  1. Change #264292

    Category ffmpeg
    Changed by Zhao Zhili <quinkblackohnoyoudont@foxmail.com>
    Changed at Mon 13 Apr 2026 13:46:54
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision b796d72eb2151e9cd4dfa98490f21f369ea20520

    Comments

    fftools/ffmpeg_filter: skip autoscale for hardware format
    This fix failure:
    ffmpeg -hwaccel cuda -hwaccel_output_format cuda \
      -i The_Beauty_of_Earth-1.mp4 \
      -vf scale_cuda=2880:1440 \
      -c:v hevc_nvenc \
      -pix_fmt cuda \
      -b:v 8M -c:a copy \
      -y test_scale.mp4
    
    > Reconfiguring filter graph because hwaccel changed
    > Impossible to convert between the formats supported by the filter
    > 'Parsed_scale_cuda_0' and the filter 'auto_scale_0'.
    > Error reinitializing filters!
    
    Signed-off-by: Zhao Zhili <quinkblack@foxmail.com>

    Changed files

    • fftools/ffmpeg_filter.c
  2. Change #264293

    Category ffmpeg
    Changed by Zhao Zhili <zhilizhaoohnoyoudont@tencent.com>
    Changed at Mon 13 Apr 2026 13:49:32
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision b62ae766c166ac7e83c7f0bd7e022902bac320b1

    Comments

    avfilter/vf_ssim360: fix integer overflow in tape_length allocation
    tape_length * 8 overflows 32-bit int for large input widths. Then
    av_malloc_array() allocates a tiny buffer while the subsequent
    loop writes tape_length*8 BilinearMap entries, causing
    heap-buffer-overflow.
    
    Validate the value in float before converting to int and left
    shifting, to avoid both float-to-int and signed left shift
    overflow UB. Also split av_malloc_array() arguments to avoid
    the multiplication overflow.
    
    Fixes: #21511
    
    Signed-off-by: Zhao Zhili <zhilizhao@tencent.com>

    Changed files

    • libavfilter/vf_ssim360.c