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

Builder ffmpeg64-solaris10-i386 Build #13960

Results:

Failed shell_2 shell_3 shell_4 shell_5

SourceStamp:

Projectffmpeg
Repositoryhttps://git.ffmpeg.org/ffmpeg.git
Branchmaster
Revision417158195367ce9335521a23905234381c5d73d0
Got Revision417158195367ce9335521a23905234381c5d73d0
Changes3 changes

BuildSlave:

unstable10x

Reason:

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

Steps and Logfiles:

  1. git update ( 4 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 ( 1 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/slave/ffmpeg64-solaris10-i386 slave
buildername ffmpeg64-solaris10-i386 Builder
buildnumber 13960 Build
codebase Build
got_revision 417158195367ce9335521a23905234381c5d73d0 Git
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision 417158195367ce9335521a23905234381c5d73d0 Build
scheduler schedule-ffmpeg64-solaris10-i386 Scheduler
slavename unstable10x BuildSlave
workdir /export/home/buildbot/slave/ffmpeg64-solaris10-i386 slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Ivan Grigorev
  2. Michael Niedermayer
  3. jiale yao

Timing:

StartSun Jun 14 17:39:15 2026
EndSun Jun 14 17:39:30 2026
Elapsed14 secs

All Changes:

:

  1. Change #270940

    Category ffmpeg
    Changed by jiale yao <19888972804ohnoyoudont@163.com>
    Changed at Sun 14 Jun 2026 17:32:48
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 71478d11658d8a6f38138b6621061b8c6f2e5074

    Comments

    avformat/rtpenc_amr: Check input size
    Fixes: heap buffer overflow
    
    Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>

    Changed files

    • libavformat/rtpenc_amr.c
  2. Change #270941

    Category ffmpeg
    Changed by Ivan Grigorev <ivangrigorievohnoyoudont@meta.com>
    Changed at Sun 14 Jun 2026 17:34:43
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision bdbb580d9c7b4979fa6c0b3819296dc70635713a

    Comments

    swresample/tests: add resample realloc regression test
    Add a regression test exercising the swr_convert(N) -> swr_convert(2N)
    edge case: the second call reuses the internal preout buffer at full
    capacity, with no trailing slack from swri_realloc_audio()'s amortized
    doubling. internal_sample_fmt is forced to S16P to reach the int16 SIMD
    resample path, where ff_resample_common_int16_sse2 overruns its
    destination by 2 bytes on the last iteration.
    
    Without a resampler fix this test fails under valgrind/ASAN with a
    heap-buffer-overflow (Invalid write of size 4, 2 bytes past the end).
    
    Signed-off-by: Ivan Grigorev <ivangrigoriev@meta.com>

    Changed files

    • libswresample/Makefile
    • libswresample/tests/swresample_resample_realloc.c
    • tests/fate/libswresample.mak
    • tests/ref/fate/swr-resample-realloc
  3. Change #270942

    Category ffmpeg
    Changed by Michael Niedermayer <michaelohnoyoudont@niedermayer.cc>
    Changed at Sun 14 Jun 2026 17:34:43
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 417158195367ce9335521a23905234381c5d73d0

    Comments

    swresample/x86/resample: write only int16 in the int16 resampler
    The resample asm code as it is currently handles 1 sample at a time
    
    The asm code should be redesigned and handle more than 1 sample at a
    time. That is the whole purpose of SIMD. There is also multiple samples
    available that need identical handling like from several channels or
    similar handling from other points in time.
    
    Such redesign would make the resampler faster and would change the
    requirements of padding and maybe memory layout. So it seems simpler
    to just avoid overwriting in the asm as it is today than to have
    the allocation handle specific overallocation for asm code that
    ideally should be redesigned
    
    Fixes writing 16bits over the end of the array
    
    This is an alternative fix for https://code.ffmpeg.org/FFmpeg/FFmpeg/pulls/23053
    
    Found-by: Ivan Grigorev <ivangrigoriev@meta.com>
    Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>

    Changed files

    • libswresample/x86/resample.asm