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

Builder ffmpegsos-solaris10-i386 Build #12908

Results:

Failed shell_2 shell_3 shell_4 shell_5

SourceStamp:

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

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 ( 10 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 12908 Build
codebase Build
got_revision 0ae8df5f2ceea82337a2456ef16f930faf160189 Git
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision 0ae8df5f2ceea82337a2456ef16f930faf160189 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. Zhao Zhili

Timing:

StartWed Nov 19 18:49:11 2025
EndWed Nov 19 18:49:28 2025
Elapsed16 secs

All Changes:

:

  1. Change #249386

    Category ffmpeg
    Changed by Zhao Zhili <zhilizhaoohnoyoudont@tencent.com>
    Changed at Wed 19 Nov 2025 18:46:06
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 9bc3c572eaaab559a7258c392528e7a1cad2a9b7

    Comments

    avfilter/vf_drawtext: fix incorrect text length
    From the doc of HarfBuzz, what hb_buffer_add_utf8 needs is the
    number of bytes, not Unicode character:
    hb_buffer_add_utf8(buf, text, strlen(text), 0, strlen(text));
    
    Fix issue #20906.

    Changed files

    • libavfilter/vf_drawtext.c
  2. Change #249387

    Category ffmpeg
    Changed by Zhao Zhili <zhilizhaoohnoyoudont@tencent.com>
    Changed at Wed 19 Nov 2025 18:46:06
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision a5cc0e5c9e752f98e38c2a95a0893faeb1f78fa9

    Comments

    avfilter/vf_drawtext: fix call GET_UTF8 with invalid argument
    For GET_UTF8(val, GET_BYTE, ERROR), val has type of uint32_t,
    GET_BYTE must return an unsigned integer, otherwise signed
    extension happened due to val= (GET_BYTE), and GET_UTF8 went to
    the error path.
    
    This bug incidentally cancelled the bug where hb_buffer_add_utf8
    was being called with incorrect argument, allowing drawtext to
    function correctly on x86 and macOS ARM, which defined char as
    signed. However, on Linux and Android ARM environments, because
    char is unsigned by default, GET_UTF8 now returns the correct
    return, which unexpectedly revealed issue #20906.

    Changed files

    • libavfilter/vf_drawtext.c
  3. Change #249388

    Category ffmpeg
    Changed by Zhao Zhili <zhilizhaoohnoyoudont@tencent.com>
    Changed at Wed 19 Nov 2025 18:46:06
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 0ae8df5f2ceea82337a2456ef16f930faf160189

    Comments

    avutil/common: cast GET_BYTE/GET_16BIT returned value
    In case of GET_BYTE/GET_16BIT return signed value.

    Changed files

    • libavutil/common.h