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

Builder ffmpeg64-solaris10-sparc Build #13793

Results:

Failed shell_2 shell_3 shell_4 shell_5

SourceStamp:

Projectffmpeg
Repositoryhttps://git.ffmpeg.org/ffmpeg.git
Branchmaster
Revision69c9f1158c153b2dc260aa724e5dc285286079b2
Got Revision69c9f1158c153b2dc260aa724e5dc285286079b2
Changes6 changes

BuildSlave:

unstable10s

Reason:

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

Steps and Logfiles:

  1. git update ( 7 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 ( 11 secs )
    1. stdio
    2. config.log
  6. shell_4 'gmake fate-rsync' failed ( 2 secs )
    1. stdio
  7. shell_5 '../../../ffmpeg/fate.sh ../../../ffmpeg/fate_config_64.sh' failed ( 3 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 13793 Build
codebase Build
got_revision 69c9f1158c153b2dc260aa724e5dc285286079b2 Git
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision 69c9f1158c153b2dc260aa724e5dc285286079b2 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. Jun Zhao
  2. Michael Niedermayer

Timing:

StartTue Jun 2 03:02:49 2026
EndTue Jun 2 03:03:15 2026
Elapsed25 secs

All Changes:

:

  1. Change #269121

    Category ffmpeg
    Changed by Jun Zhao <barryjzhaoohnoyoudont@tencent.com>
    Changed at Tue 02 Jun 2026 02:52:03
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 1f9888beb0606c6121dfe5c4777d7e9caf2fbe54

    Comments

    lavfi/vf_drawtext: fix HarfBuzz shaping of Bengali / Indic scripts
    shape_text_hb() set HB_SCRIPT_LATIN and called
    hb_buffer_guess_segment_properties() on an empty buffer, so the
    inference was a no-op. Bengali and other Indic / USE scripts reached
    the default OT shaper instead of their script-specific shaper,
    leaving the virama visible and consonants disjointed (e.g. স্টারমার
    rendered as স্ টারমার).
    
    Add the UTF-8 text first, keep the existing LTR direction used by the
    FriBidi visual-order pipeline, then guess segment properties so the
    script comes from the actual Unicode contents.
    
    Fixes: https://code.ffmpeg.org/FFmpeg/FFmpeg/issues/23014
    Signed-off-by: Jun Zhao <barryjzhao@tencent.com>

    Changed files

    • libavfilter/vf_drawtext.c
  2. Change #269122

    Category ffmpeg
    Changed by Jun Zhao <barryjzhaoohnoyoudont@tencent.com>
    Changed at Tue 02 Jun 2026 02:52:03
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision d0922699966c6055869532244b38cad391f8298f

    Comments

    lavfi/vf_drawtext: log inferred shaping properties at verbose
    Log the script and direction picked by HarfBuzz, plus codepoint and
    glyph counts, so the shaper choice can be verified. Differing
    codepoint and glyph counts indicate reordering / ligation /
    decomposition.
    
    Codepoints are sampled before hb_shape(), which flips the buffer
    content type to GLYPHS.
    
    Signed-off-by: Jun Zhao <barryjzhao@tencent.com>

    Changed files

    • libavfilter/vf_drawtext.c
  3. Change #269123

    Category ffmpeg
    Changed by Michael Niedermayer <michaelohnoyoudont@niedermayer.cc>
    Changed at Tue 02 Jun 2026 02:59:38
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 263374ac7d540fceccc97e00df57d028efed92dd

    Comments

    avcodec/aac/aacdec_usac: reject explicit usacSamplingFrequency of 0
    Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>

    Changed files

    • libavcodec/aac/aacdec_usac.c
  4. Change #269124

    Category ffmpeg
    Changed by Michael Niedermayer <michaelohnoyoudont@niedermayer.cc>
    Changed at Tue 02 Jun 2026 02:59:38
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 620e59bbec0698b06539032dde4bafeef0d3e4b0

    Comments

    avcodec/aac/aacdec: More detailed warning about sample rates
    Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>

    Changed files

    • libavcodec/aac/aacdec.c
  5. Change #269125

    Category ffmpeg
    Changed by Michael Niedermayer <michaelohnoyoudont@niedermayer.cc>
    Changed at Tue 02 Jun 2026 02:59:38
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision e711e608273e0d7d195d2cb1912fb06d0772d96c

    Comments

    avcodec/aac/aacdec: reject decoded frame without a valid sample rate
    Later code will turn this into AVERROR_BUG
    
    When returning sample_rate == 0 samples is considered a bug, we have no
    nice choice but to error out cleanly
    
    Fixes: assertion failure
    Fixes: ffmpeg_AV_CODEC_ID_AAC_DEC_fuzzer crash-0a86d46fef2442b222ee34403c21f7f582ffccb0
    Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>

    Changed files

    • libavcodec/aac/aacdec.c
  6. Change #269126

    Category ffmpeg
    Changed by Michael Niedermayer <michaelohnoyoudont@niedermayer.cc>
    Changed at Tue 02 Jun 2026 02:59:38
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 69c9f1158c153b2dc260aa724e5dc285286079b2

    Comments

    avcodec/aac/aacdec_usac: avoid signed overflow in decode_tsd
    decode_tsd() computes the binomial coefficient c = C(k, p) incrementally.
    this commit makes it less overflow prone
    
    Fixes: 515703905/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_AAC_DEC_fuzzer-4890954254581760
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>

    Changed files

    • libavcodec/aac/aacdec_usac.c