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

Builder ffmpeg-solaris10-sparc Build #12951

Results:

Failed shell_2 shell_3 shell_4 shell_5

SourceStamp:

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

BuildSlave:

unstable10s

Reason:

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

Steps and Logfiles:

  1. git update ( 19 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 ( 29 secs )
    1. stdio
    2. config.log
  6. shell_4 'gmake fate-rsync' failed ( 2 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 12951 Build
codebase Build
got_revision af6a1dd0b2e9cd9b5fe41f1842995496fe083895 Git
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision af6a1dd0b2e9cd9b5fe41f1842995496fe083895 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. James Almer
  2. Nicolas Gaullier

Timing:

StartThu Jan 8 00:38:29 2026
EndThu Jan 8 00:39:23 2026
Elapsed54 secs

All Changes:

:

  1. Change #254499

    Category ffmpeg
    Changed by James Almer <jamrialohnoyoudont@gmail.com>
    Changed at Thu 08 Jan 2026 00:25:17
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 70d84bdd8472124e65fb7f80cb6116ea2b252cef

    Comments

    avformat/demux: use a stream specific temporary packet for the parser
    This will be useful for the next commit.
    
    Signed-off-by: James Almer <jamrial@gmail.com>

    Changed files

    • libavformat/avformat.c
    • libavformat/demux.c
    • libavformat/internal.h
    • libavformat/options.c
  2. Change #254500

    Category ffmpeg
    Changed by James Almer <jamrialohnoyoudont@gmail.com>
    Changed at Thu 08 Jan 2026 00:25:18
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 0cca125a94220ae5bdd427d305c4057d068a1a3c

    Comments

    avformat/demux: prevent the loss of packet side data when using an parser
    Many parsers will request data until they find what will be the start of the
    next assembled packet in order to decide where to cut the current one. If this
    happens, the loop in demux.c will, in case the demuxer exports already fully
    assembled packets as is sometimes the case for MPEG-TS, discard the already
    handled first input packet before it tries to move its side data to the output.
    
    The affected FATE tests reflect this change by no longer dropping the side data
    from the first input packet, nor exporting every other side data in the wrong
    output packet.
    
    Signed-off-by: James Almer <jamrial@gmail.com>

    Changed files

    • libavformat/demux.c
    • tests/ref/fate/concat-demuxer-simple2-lavf-ts
    • tests/ref/fate/segment-mp4-to-ts
    • tests/ref/fate/ts-demux
    • tests/ref/fate/ts-small-demux
  3. Change #254501

    Category ffmpeg
    Changed by Nicolas Gaullier <nicolas.gaullierohnoyoudont@cji.paris>
    Changed at Thu 08 Jan 2026 00:25:18
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision af6a1dd0b2e9cd9b5fe41f1842995496fe083895

    Comments

    avformat/demux: duplicate side_data in parse_packet()
    If an input packet results in several output packets, the side data will be
    exported only by the first output packet, and be missing from the rest.
    
    Signed-off-by: Nicolas Gaullier <nicolas.gaullier@cji.paris>
    Signed-off-by: James Almer <jamrial@gmail.com>

    Changed files

    • libavformat/demux.c
    • tests/ref/fate/concat-demuxer-simple2-lavf-ts
    • tests/ref/fate/ffmpeg-spec-disposition
    • tests/ref/fate/ts-demux