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

Builder ffmpegsos-solaris10-sparc Build #13253

Results:

Failed shell_2 shell_3 shell_4 shell_5

SourceStamp:

Projectffmpeg
Repositoryhttps://git.ffmpeg.org/ffmpeg.git
Branchmaster
Revisiond5fc7323591fc121ccd948f2155150d334e048a9
Got Revisiond5fc7323591fc121ccd948f2155150d334e048a9
Changes1 change

BuildSlave:

unstable10s

Reason:

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

Steps and Logfiles:

  1. git update ( 6 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 ( 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 ( 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 13253 Build
codebase Build
got_revision d5fc7323591fc121ccd948f2155150d334e048a9 Git
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision d5fc7323591fc121ccd948f2155150d334e048a9 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:

StartTue Apr 14 16:45:11 2026
EndTue Apr 14 16:45:29 2026
Elapsed17 secs

All Changes:

:

  1. Change #264481

    Category ffmpeg
    Changed by Andreas Rheinhardt <andreas.rheinhardtohnoyoudont@outlook.com>
    Changed at Tue 14 Apr 2026 16:04:47
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision d5fc7323591fc121ccd948f2155150d334e048a9

    Comments

    avcodec/codec_internal: Include avcodec.h for enum AVCodecConfig
    Forward-declaring an enum is not legal C (the underlying type of
    the enum may depend upon the enum constants, so this may cause
    ABI issues with -fshort-enums); compilers warn about this
    with -pedantic.
    
    This essentially reverts 7e84865cff2d174beede69a2018c0d81c8cc3b02.
    Notice that almost* all files that include codec_internal.h also
    need to include avcodec.h, so this does not lead to unnecessary
    rebuilds.
    
    This addresses part of #22684.
    
    *: The only file I am aware of that defines an FFCodec and does not
    need AVCodecContext as complete type is null.c (but even it already
    includes it implicitly); the avcodec.c test tool seems to be the only
    file where this commit actually leads to an unnecessary avcodec.h
    inclusion.
    
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    Changed files

    • libavcodec/codec_internal.h