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

Builder ffmpegsos-solaris10-sparc Build #12689

Results:

Failed shell_2 shell_3 shell_4 shell_5

SourceStamp:

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

BuildSlave:

unstable10s

Reason:

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

Steps and Logfiles:

  1. git update ( 15 secs )
    1. stdio
  2. shell 'gsed -i ...' ( 0 secs )
    1. stdio
  3. shell_1 'gsed -i ...' ( 2 secs )
    1. stdio
  4. shell_2 'gsed -i ...' failed ( 0 secs )
    1. stdio
  5. shell_3 './configure --samples="../../../ffmpeg/fate-suite" ...' failed ( 8 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-unstable10s/slave/ffmpegsos-solaris10-sparc slave
buildername ffmpegsos-solaris10-sparc Builder
buildnumber 12689 Build
codebase Build
got_revision 96e8f3b8cc12029b8b6340bd6ad42187ad5b9a97 Git
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision 96e8f3b8cc12029b8b6340bd6ad42187ad5b9a97 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. Marton Balint

Timing:

StartMon Jan 12 00:58:05 2026
EndMon Jan 12 00:58:33 2026
Elapsed27 secs

All Changes:

:

  1. Change #254883

    Category ffmpeg
    Changed by Marton Balint <cusohnoyoudont@passwd.hu>
    Changed at Mon 12 Jan 2026 00:47:20
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision c80d3b35aeb70a0beeec2af3b769775ea98cac30

    Comments

    avformat/aviobuf: return error for ffio_close_null_buf() if written bytes exceed INT_MAX
    Also check return value where it is used.
    
    Signed-off-by: Marton Balint <cus@passwd.hu>

    Changed files

    • libavformat/avio_internal.h
    • libavformat/aviobuf.c
    • libavformat/movenc.c
  2. Change #254884

    Category ffmpeg
    Changed by Marton Balint <cusohnoyoudont@passwd.hu>
    Changed at Mon 12 Jan 2026 00:47:20
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision b2e077ad699dbd6a8f424c99a7fd6049f45eb907

    Comments

    avformat/vorbiscomment: use null buf to calculate vorbis comment length
    Also check possible failures when calculating length, and change return type to
    int as bigger return values are no longer possible.

    Changed files

    • libavformat/flacenc.c
    • libavformat/matroskaenc.c
    • libavformat/oggenc.c
    • libavformat/vorbiscomment.c
    • libavformat/vorbiscomment.h
  3. Change #254885

    Category ffmpeg
    Changed by Marton Balint <cusohnoyoudont@passwd.hu>
    Changed at Mon 12 Jan 2026 00:47:20
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 96e8f3b8cc12029b8b6340bd6ad42187ad5b9a97

    Comments

    avformat/vorbiscomment: fix writing huge chapter numbers and time offets to vorbiscomment
    Previous code truncated chapter numbers more than 999 and and time offsets more
    than 99 hours.
    
    The Vorbis comment format only allows 1000 chapters, so cap the number of
    written chapters there.
    
    This also fixes the GCC warnings for truncated strings.
    
    Signed-off-by: Marton Balint <cus@passwd.hu>

    Changed files

    • libavformat/vorbiscomment.c