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

Builder ffmpegsos-solaris10-sparc Build #12670

Results:

Failed shell_2 shell_3 shell_4 shell_5

SourceStamp:

Projectffmpeg
Repositoryhttps://git.ffmpeg.org/ffmpeg.git
Branchmaster
Revisiond595a182874affeec8d0a736329d5268a020df3f
Got Revisiond595a182874affeec8d0a736329d5268a020df3f
Changes4 changes

BuildSlave:

unstable10s

Reason:

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

Steps and Logfiles:

  1. git update ( 12 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 ( 11 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 ( 1 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 12670 Build
codebase Build
got_revision d595a182874affeec8d0a736329d5268a020df3f Git
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision d595a182874affeec8d0a736329d5268a020df3f 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. Andreas Rheinhardt

Timing:

StartWed Jan 7 17:16:03 2026
EndWed Jan 7 17:16:29 2026
Elapsed25 secs

All Changes:

:

  1. Change #254448

    Category ffmpeg
    Changed by Andreas Rheinhardt <andreas.rheinhardtohnoyoudont@outlook.com>
    Changed at Wed 07 Jan 2026 16:36:07
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 60684932fbc76dc4651d788f27e5e7b6ccfc2621

    Comments

    fftools/textformat/avtextformat: Separate mutable and immutable data
    Only two fields of AVTextFormatSection are ever modified:
    entries_to_show and show_all_entries (they are only used
    by ffprobe; the graph printing code always prints everything).
    These fields do not belong into AVTextFormatSection, they are
    more ffprobe-internal (and if the graph printing code ever
    made use of them, these fields could very well be
    per GraphPrintContext).
    
    This commit therefore moves them out of AVTextFormatSection
    and adds a callback to AVTextFormatContext to decide which
    elements to discard. This also allows to make the AVTextFormatSections
    const.
    
    This also fixes a race when initializing the sections
    for graphprint.
    
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    Changed files

    • fftools/ffprobe.c
    • fftools/graph/graphprint.c
    • fftools/textformat/avtextformat.c
    • fftools/textformat/avtextformat.h
  2. Change #254449

    Category ffmpeg
    Changed by Andreas Rheinhardt <andreas.rheinhardtohnoyoudont@outlook.com>
    Changed at Wed 07 Jan 2026 16:36:07
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 9baf1b2f82bb986ee67b6c56d52aa647212a2775

    Comments

    fftools/textformat/avtextformat: Move avtext_print_integers to ffprobe.c
    This is its only user and because this function is so specialised
    it is very likely to stay that way. So move it back to ffprobe.c
    (where it already was before d7a3f68feae0b1c3718f9d2671c6d41c60a40680).
    
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    Changed files

    • fftools/ffprobe.c
    • fftools/textformat/avtextformat.c
    • fftools/textformat/avtextformat.h
  3. Change #254450

    Category ffmpeg
    Changed by Andreas Rheinhardt <andreas.rheinhardtohnoyoudont@outlook.com>
    Changed at Wed 07 Jan 2026 16:36:07
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 9f77cb3a9894c6227b7b1c662ecde5f0af301f84

    Comments

    fftools/graph/graphprint: Remove always-false checks
    init_graphprint() already returns an error upon allocation
    failure.
    
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    Changed files

    • fftools/graph/graphprint.c
  4. Change #254451

    Category ffmpeg
    Changed by Andreas Rheinhardt <andreas.rheinhardtohnoyoudont@outlook.com>
    Changed at Wed 07 Jan 2026 16:36:07
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision d595a182874affeec8d0a736329d5268a020df3f

    Comments

    fftools/graph/graphprint: Replace always-false check by assert
    This check makes no sense, as the pointer arithmetic involved
    in &fg->graph_print_buf would be UB if fg were NULL.
    
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    Changed files

    • fftools/graph/graphprint.c