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

Builder ffmpegsos-solaris10-sparc Build #13564

Results:

Failed shell_2 shell_3 shell_4 shell_5

SourceStamp:

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

BuildSlave:

unstable10s

Reason:

The SingleBranchScheduler scheduler named 'schedule-ffmpegsos-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 ( 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 ( 4 secs )
    1. stdio
    2. configure.log
    3. compile.log
    4. test.log

Build Properties:

NameValueSource
branch master Build
builddir /export/home/buildbot-unstable10s/slave/ffmpegsos-solaris10-sparc slave
buildername ffmpegsos-solaris10-sparc Builder
buildnumber 13564 Build
codebase Build
got_revision 6028720d70d0f50512c66df43f7c9e05d6797463 Git
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision 6028720d70d0f50512c66df43f7c9e05d6797463 Build
scheduler schedule-ffmpegsos-solaris10-sparc Scheduler
slavename unstable10s BuildSlave
workdir /export/home/buildbot-unstable10s/slave/ffmpegsos-solaris10-sparc slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Jun Zhao
  2. haoyuLiu

Timing:

StartMon Jun 8 04:29:11 2026
EndMon Jun 8 04:29:35 2026
Elapsed24 secs

All Changes:

:

  1. Change #269836

    Category ffmpeg
    Changed by Jun Zhao <barryjzhaoohnoyoudont@tencent.com>
    Changed at Mon 08 Jun 2026 04:18:32
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision c75701a62f6ee6267b4a1d5c3ec72f13aa799704

    Comments

    lavf/mov: read multi-valued metadata tags
    When a metadata tag (e.g. ©ART) contains multiple values, either as
    multiple 'data' child atoms within one tag or as multiple sibling tag
    atoms with the same key, only the first value was read.
    
    Fix by joining multiple values with semicolons using AV_DICT_APPEND,
    consistent with Ogg Vorbis Comment handling in oggparsevorbis.c, and
    reusing the existing 'goto retry' loop that covr already uses.
    Also add the missing atom.size -= str_size to correctly track remaining
    bytes in the tag atom, matching the covr path.
    
    Limitation: on remux the joined string is written back as a single
    value, same lossy behavior as Ogg Vorbis. Lossless round-trip would
    require AV_DICT_MULTIKEY support throughout the metadata pipeline.
    
    Fix #22367
    Signed-off-by: Jun Zhao <barryjzhao@tencent.com>

    Changed files

    • libavformat/mov.c
  2. Change #269837

    Category ffmpeg
    Changed by haoyuLiu <haoyuliuohnoyoudont@clouditera.com>
    Changed at Mon 08 Jun 2026 04:20:53
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 6028720d70d0f50512c66df43f7c9e05d6797463

    Comments

    avfilter/zmq: initialize send_buf before shared cleanup on parse failure
    Found-by: VulnForge Security Research Team
    Reported-by: Cloud-LHY <haoyuliu@clouditera.com>

    Changed files

    • libavfilter/f_zmq.c