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

Builder ffmpeg64-solaris10-i386 Build #14094

Results:

Failed

SourceStamp:

Projectffmpeg
Repositoryhttps://git.ffmpeg.org/ffmpeg.git
Branchmaster
Revision08cd8df29d17b4302a105aab80a41b885dd42663
Changes3 changes

BuildSlave:

unstable10x

Reason:

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

Steps and Logfiles:

  1. git updating ( 5 secs )
    1. stdio
  2. shell  
    1. - no logs -
  3. shell_1  
    1. - no logs -
  4. shell_2  
    1. - no logs -
  5. shell_3  
    1. - no logs -
  6. shell_4  
    1. - no logs -
  7. shell_5  
    1. - no logs -

Build Properties:

NameValueSource
branch master Build
builddir /export/home/buildbot/slave/ffmpeg64-solaris10-i386 slave
buildername ffmpeg64-solaris10-i386 Builder
buildnumber 14094 Build
codebase Build
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision 08cd8df29d17b4302a105aab80a41b885dd42663 Build
scheduler schedule-ffmpeg64-solaris10-i386 Scheduler
slavename unstable10x BuildSlave
workdir /export/home/buildbot/slave/ffmpeg64-solaris10-i386 slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Kacper Michajłow

Timing:

StartTue Sep 8 20:24:42 2026
EndTue Sep 8 20:24:47 2026
Elapsed5 secs

All Changes:

:

  1. Change #281174

    Category ffmpeg
    Changed by Kacper Michajłow <kasper93ohnoyoudont@gmail.com>
    Changed at Tue 08 Sep 2026 22:00:11
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 217e431d2dd24ba71e20f93408bb0ae8cedc073b

    Comments

    fftools/textformat: terminate parent's line before an array of row elements
    Sections like programs print their member streams as separate rows, but
    the parent's own line was only terminated by its footer, which runs after
    the children. This fused the parent's fields with the first member row:
    
    Before:
    
      program|tag:variant_bitrate=1945335|stream|index=0
      stream|index=2
    
    After
    
      program|tag:variant_bitrate=1945335
      stream|index=0
      stream|index=2
    
    Write the newline when such an array starts. Arrays with typed elements
    (e.g. side data) keep continuing the line, as their elements print inline.
    
    Signed-off-by: Kacper Michajłow <kasper93@gmail.com>

    Changed files

    • fftools/textformat/tf_compact.c
  2. Change #281175

    Category ffmpeg
    Changed by Kacper Michajłow <kasper93ohnoyoudont@gmail.com>
    Changed at Tue 08 Sep 2026 22:00:11
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 055cc2024d0b0d762e1953ba923e2f95b7e8e7ed

    Comments

    avformat/hls: fix variant_bitrate on streams shared by multiple variants
    The -1 sentinel marking inconsistent bandwidths was overwritten by the
    next variant containing the same playlist. Depending on the number of
    variants the tag ended up unset or set to the last variant's bandwidth.
    Use a distinct sentinel for the mismatch so shared streams are never
    tagged.
    
    The stream-level variant_bitrate is kept for backward compatibility and
    should not be relied upon. It can be missing, and its value describes
    the whole variant rather than the stream itself. The per-variant value
    is always available in the program metadata.
    
    Signed-off-by: Kacper Michajłow <kasper93@gmail.com>

    Changed files

    • doc/demuxers.texi
    • libavformat/avformat.h
    • libavformat/hls.c
  3. Change #281176

    Category ffmpeg
    Changed by Kacper Michajłow <kasper93ohnoyoudont@gmail.com>
    Changed at Tue 08 Sep 2026 22:00:11
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 08cd8df29d17b4302a105aab80a41b885dd42663

    Comments

    fftools/textformat: do not terminate the parent's line twice
    The parent's footer emitted a newline after its member rows, leaving a
    blank line in compact output and an empty record in csv.
    
    Signed-off-by: Kacper Michajłow <kasper93@gmail.com>

    Changed files

    • fftools/textformat/tf_compact.c