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

Builder ffmpeg-solaris10-sparc Build #13100

Results:

Failed shell_2 shell_3 shell_4 shell_5

SourceStamp:

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

BuildSlave:

unstable10s

Reason:

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

Steps and Logfiles:

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

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Andreas Rheinhardt

Timing:

StartFri Feb 6 14:47:44 2026
EndFri Feb 6 14:49:00 2026
Elapsed1 mins, 16 secs

All Changes:

:

  1. Change #257102

    Category ffmpeg
    Changed by Andreas Rheinhardt <andreas.rheinhardtohnoyoudont@outlook.com>
    Changed at Fri 06 Feb 2026 14:04:50
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 853843d86f550ca73807263a71b613530fb60f45

    Comments

    avcodec/opus/parse: Move frame_duration tab into a file of its own
    This is in preparation for duplicating it into libavformat.
    
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    Changed files

    • libavcodec/opus/Makefile
    • libavcodec/opus/frame_duration_tab.c
    • libavcodec/opus/parse.c
    • libavcodec/opus/tab.h
  2. Change #257103

    Category ffmpeg
    Changed by Andreas Rheinhardt <andreas.rheinhardtohnoyoudont@outlook.com>
    Changed at Fri 06 Feb 2026 14:05:14
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 12747e62968d65202e0a3c2b867922488f333b09

    Comments

    avformat/matroskaenc: Parse Opus packet durations ourselves
    This avoids avpriv functions from lavc/opus/parse.c
    (which parse way more than we need, necessitating
    parsing the extradata).
    It furthermore makes the output of the muxer consistent,
    i.e. no longer depending upon whether the Opus parser
    or decoder are enabled (the avpriv functions would just
    return AVERROR(ENOSYS)).
    
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    Changed files

    • libavcodec/opus/Makefile
    • libavcodec/opus/tab.h
    • libavformat/Makefile
    • libavformat/matroskaenc.c
    • libavformat/opus_frame_duration_tab.c
  3. Change #257104

    Category ffmpeg
    Changed by Andreas Rheinhardt <andreas.rheinhardtohnoyoudont@outlook.com>
    Changed at Fri 06 Feb 2026 14:09:15
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 0fefecd53f316372f5860e9f629cee35c061332d

    Comments

    Revert "avcodec/opus/parse: export the packet and extradata parsing functions"
    This reverts commit aa20d7b3e887667aaa79e27171695fabef9486a2.
    
    Adding these avpriv functions is absolutely overblown: Muxers
    can get the desired duration in a few lines themselves.
    In particular, using the parse functions from this file
    necessitated parsing the extradata (and entailed exporting
    the parsing function), although it was only used to know
    whether the frames are self-delimiting, but everything of
    interest to a muxer does not depend on this at all.
    
    The commit to be reverted also made several structures
    part of the ABI, which should be avoided in general.
    
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    Changed files

    • configure
    • libavcodec/opus/Makefile
    • libavcodec/opus/dec.c
    • libavcodec/opus/parse.c
    • libavcodec/opus/parse.h
    • libavcodec/opus/parser.c