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

Builder ffmpeg-solaris10-i386 Build #13722

Results:

Failed shell_2 shell_3 shell_4 shell_5

SourceStamp:

Projectffmpeg
Repositoryhttps://git.ffmpeg.org/ffmpeg.git
Branchmaster
Revisionb40d91cad92f2f694045a6a7b69f117b3dcfa19c
Got Revisionb40d91cad92f2f694045a6a7b69f117b3dcfa19c
Changes7 changes

BuildSlave:

unstable10x

Reason:

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

Steps and Logfiles:

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

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Alexander Slobodeniuk
  2. Jesper Ek
  3. João Neves
  4. huanghuihui0904

Timing:

StartSun May 3 23:32:37 2026
EndSun May 3 23:32:50 2026
Elapsed12 secs

All Changes:

:

  1. Change #266229

    Category ffmpeg
    Changed by Jesper Ek <deadbeef84ohnoyoudont@gmail.com>
    Changed at Sun 03 May 2026 22:03:00
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision d5a913f99f91bcda8f61ab5708a6ff1f8a4747fe

    Comments

    avformat/gxf: return proper errors when reading header/packet
    Returning -1 resulted in an "operation not permitted" error which
    was incorrect. This changes the error to a correct "invalid data".

    Changed files

    • libavformat/gxf.c
  2. Change #266230

    Category ffmpeg
    Changed by Alexander Slobodeniuk <aslobodeniukohnoyoudont@fluendo.com>
    Changed at Sun 03 May 2026 22:10:26
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision cda069b0925e6182d81ae7ea461689835bbcd392

    Comments

    avformat/mpegts: don't check impossible branches
    Quit dvb extension handling when the descriptor
    have been processed

    Changed files

    • libavformat/mpegts.c
  3. Change #266231

    Category ffmpeg
    Changed by Alexander Slobodeniuk <aslobodeniukohnoyoudont@fluendo.com>
    Changed at Sun 03 May 2026 22:10:26
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision dd020e10254c85893e16f3f3637467ded4d415cc

    Comments

    avformat/mpegts: simplify ac3/eac3 descriptor handling
    those lines are literally the same, so removing the
    code duplication

    Changed files

    • libavformat/mpegts.c
  4. Change #266232

    Category ffmpeg
    Changed by Alexander Slobodeniuk <aslobodeniukohnoyoudont@fluendo.com>
    Changed at Sun 03 May 2026 22:10:26
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 1e9dd2b7e964f785e4f815bd45ff33ab70288c54

    Comments

    avformat/mpegts: handle AC-4 descriptor in DVB extension
    as defined in ETSI EN 300 468 (Table 109).
    
    This allows ffprobe to recognize that .ts
    file has an ac4 stream.
    
    Checked on the files downloaded from
    https://ott.dolby.com/OnDelKits/AC-4/Download_v15.html

    Changed files

    • libavformat/mpegts.c
    • libavformat/mpegts.h
  5. Change #266233

    Category ffmpeg
    Changed by João Neves <joaocns0ohnoyoudont@protonmail.com>
    Changed at Sun 03 May 2026 22:15:54
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision daedf4012d073c5b8a9ae45dfbb53bff7d087ce5

    Comments

    avcodec/exr: check rle() return value in rle_uncompress()
    rle_uncompress() silently discards the return value of rle(). When the
    compressed data is malformed and rle() returns AVERROR_INVALIDDATA,
    processing continues on a partially filled buffer. Propagate the error
    to the caller, which already handles it at line 1420.
    
    Signed-off-by: João Neves <joaocns0@protonmail.com>

    Changed files

    • libavcodec/exr.c
  6. Change #266234

    Category ffmpeg
    Changed by João Neves <joaocns0ohnoyoudont@protonmail.com>
    Changed at Sun 03 May 2026 22:19:51
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 2c71a28bf0731f5fdcf9f2366ab98c31270294e4

    Comments

    avcodec/hdrdec: fix pixel count decrement in RLE decompress loop
    The w variable counts pixels, not bytes. The non-RLE path correctly
    uses w-- (one pixel = 4 bytes), but the RLE path uses w -= 4, causing
    the loop to terminate after roughly 1/4 of the expected pixels.
    
    The w -= 4 was introduced in 14e99cb472 which moved the decrement
    inside the loop to fix an OOB write (clusterfuzz-5423041009549312).
    The move was correct, but the decrement value should have been 1 to
    match the non-RLE path.
    
    Signed-off-by: João Neves <joaocns0@protonmail.com>

    Changed files

    • libavcodec/hdrdec.c
  7. Change #266235

    Category ffmpeg
    Changed by huanghuihui0904 <625173ohnoyoudont@qq.com>
    Changed at Sun 03 May 2026 22:32:16
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision b40d91cad92f2f694045a6a7b69f117b3dcfa19c

    Comments

    avformat: avoid potential tmp_opts leak in ffurl_connect()
    When options is NULL, ffurl_connect() creates a temporary dictionary
    (tmp_opts). If the protocol_blacklist av_dict_set() fails after the
    whitelist entry was inserted, the function returns without freeing
    this dictionary.
    
    Ensure tmp_opts is freed on this error path.
    
    Signed-off-by: Huihui_Huang <hhhuang@smu.edu.sg>
    
    Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

    Changed files

    • libavformat/avio.c