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

Builder ffmpegsos-solaris10-i386 Build #13550

Results:

Failed shell_2 shell_3 shell_4 shell_5

SourceStamp:

Projectffmpeg
Repositoryhttps://git.ffmpeg.org/ffmpeg.git
Branchmaster
Revision795bccdaf57772b1803914dee2f32d52776518e2
Got Revision795bccdaf57772b1803914dee2f32d52776518e2
Changes1 change

BuildSlave:

unstable10x

Reason:

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

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Jun Zhao

Timing:

StartSat Mar 14 16:54:52 2026
EndSat Mar 14 16:55:06 2026
Elapsed14 secs

All Changes:

:

  1. Change #261044

    Category ffmpeg
    Changed by Jun Zhao <barryjzhaoohnoyoudont@tencent.com>
    Changed at Sat 14 Mar 2026 16:26:51
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 795bccdaf57772b1803914dee2f32d52776518e2

    Comments

    lavfi/bwdif: fix heap-buffer-overflow with small height videos
    Reproduce:
      ffmpeg -i /tmp/bwdif_test_input_160x4_gray16.jpg -vf "bwdif" -f null -
    
    filter_intra accesses rows 3 lines away via cur[mrefs3] and cur[prefs3].
    For small height videos (h <= 4), this causes heap-buffer-overflow.
    
    Add boundary check for filter_intra when YADIF_FIELD_END is set.
    The boundary condition (y < 3) or (y + 3 >= td->h) precisely matches
    filter_intra's 3-line context requirement.
    
    Test file: 160x4 gray16 JPEG
    https://code.ffmpeg.org/attachments/db2ace24-bc00-4af6-a53a-5df6b0d51b15
    
    fix #21570
    
    Reviewed-by: Thomas Mundt <tmundt75@gmail.com>
    Signed-off-by: Jun Zhao <barryjzhao@tencent.com>

    Changed files

    • libavfilter/vf_bwdif.c
    • tests/ref/fate/filter-bwdif-mode0
    • tests/ref/fate/filter-bwdif-mode1
    • tests/ref/fate/filter-bwdif10