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

Builder ffmpeg64-solaris10-sparc Build #13649

Results:

Failed shell_2 shell_3 shell_4 shell_5

SourceStamp:

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

BuildSlave:

unstable10s

Reason:

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

Steps and Logfiles:

  1. git update ( 24 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_64.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/ffmpeg64-solaris10-sparc slave
buildername ffmpeg64-solaris10-sparc Builder
buildnumber 13649 Build
codebase Build
got_revision ff0ad0278d6ff0e6f646be5ab910391316e891d5 Git
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision ff0ad0278d6ff0e6f646be5ab910391316e891d5 Build
scheduler schedule-ffmpeg64-solaris10-sparc Scheduler
slavename unstable10s BuildSlave
workdir /export/home/buildbot-unstable10s/slave/ffmpeg64-solaris10-sparc slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Andreas Rheinhardt

Timing:

StartFri May 8 10:12:53 2026
EndFri May 8 10:13:27 2026
Elapsed34 secs

All Changes:

:

  1. Change #266579

    Category ffmpeg
    Changed by Andreas Rheinhardt <andreas.rheinhardtohnoyoudont@outlook.com>
    Changed at Fri 08 May 2026 09:34:52
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 6a59c847b50c6bc30630df7fca56ccd6cd8a5a8c

    Comments

    configure: Redo enabling cbs in lavf
    Right now, the cbs_type_table (the table of all CodedBitstreamTypes
    supported by CBS) is empty unless cbs_apv and cbs_av1 is enabled.
    The latter are only enabled in configure if they are needed in lavc.
    This means that the mov muxers (the only users of cbs-in-lavf)
    don't work as they should depending upon the availability of
    e.g. the av1_metadata BSF. The table being empty is also illegal C
    and according to PR #23038 MSVC warns about this (as does GCC
    with -pedantic) and it may even lead to an internal compiler error.
    
    This could be fixed by simply adding a mov_muxer->cbs_av1,cbs_apv
    dependency in configure, yet this would have the downside that
    it would force cbs_av1 and cbs_apv to be built for lavc, too,
    even though it may not be needed there. So add new configure
    variables cbs_{apv,av1}_lavf and cbs_lavf to track this correctly.
    
    Reported-by: xiaozhuai <798047000@qq.com>
    Reviewed-by: James Almer <jamrial@gmail.com>
    Reviewed-by: xiaozhuai <798047000@qq.com>
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    Changed files

    • configure
    • libavformat/Makefile
    • libavformat/cbs.h
  2. Change #266580

    Category ffmpeg
    Changed by Andreas Rheinhardt <andreas.rheinhardtohnoyoudont@outlook.com>
    Changed at Fri 08 May 2026 09:35:35
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision b6d2a0fc66187211a061552c11c8c3477045f2e3

    Comments

    configure: Add missing apv_metadata->cbs_apv dependency
    Reviewed-by: James Almer <jamrial@gmail.com>
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    Changed files

    • configure
  3. Change #266581

    Category ffmpeg
    Changed by Andreas Rheinhardt <andreas.rheinhardtohnoyoudont@outlook.com>
    Changed at Fri 08 May 2026 09:35:38
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision ff0ad0278d6ff0e6f646be5ab910391316e891d5

    Comments

    avcodec/cbs: Move ff_cbs_all_codec_ids to cbs_bsf
    Only used as AVBitStreamFilter.codec_ids. This avoids duplicating
    it into lavf.
    
    Reviewed-by: James Almer <jamrial@gmail.com>
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    Changed files

    • libavcodec/bsf/filter_units.c
    • libavcodec/bsf/trace_headers.c
    • libavcodec/cbs.c
    • libavcodec/cbs.h
    • libavcodec/cbs_bsf.c
    • libavcodec/cbs_bsf.h