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

Builder ffmpeg64-solaris10-sparc Build #12570

Results:

Failed shell_2 shell_3 shell_4 shell_5

SourceStamp:

Projectffmpeg
Repositoryhttps://git.ffmpeg.org/ffmpeg.git
Branchmaster
Revisione442128944cf1034b33346180021c1f747d5bd99
Got Revisione442128944cf1034b33346180021c1f747d5bd99
Changes2 changes

BuildSlave:

unstable10s

Reason:

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

Steps and Logfiles:

  1. git update ( 47 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_64.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/ffmpeg64-solaris10-sparc slave
buildername ffmpeg64-solaris10-sparc Builder
buildnumber 12570 Build
codebase Build
got_revision e442128944cf1034b33346180021c1f747d5bd99 Git
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision e442128944cf1034b33346180021c1f747d5bd99 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. Martin Storsjö

Timing:

StartTue Oct 21 10:57:40 2025
EndTue Oct 21 10:58:38 2025
Elapsed57 secs

All Changes:

:

  1. Change #246313

    Category ffmpeg
    Changed by Martin Storsjö <martinohnoyoudont@martin.st>
    Changed at Tue 21 Oct 2025 10:38:32
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 27f556188557786f0ead2147b1eea3c36795cfdd

    Comments

    movenc: Fix sample clustering for hybrid_fragmented+delay_moov
    If samples were available when the moov was written, chunking
    for those samples has been done already, which has to be reset
    here.
    
    This is the case when not using empty_moov, when the moov box
    describes the first fragment - this case was accounted for already.
    But if using the delay_moov flag, then those samples also were
    available when writing the moov, so chunking for them has already
    been done in this case as well.
    
    Therefore, always reset chunking here (it should be harmless to
    always do it), and update the comment to clarify the cases
    involved here.

    Changed files

    • libavformat/movenc.c
  2. Change #246314

    Category ffmpeg
    Changed by Martin Storsjö <martinohnoyoudont@martin.st>
    Changed at Tue 21 Oct 2025 10:38:32
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision e442128944cf1034b33346180021c1f747d5bd99

    Comments

    movenc: Make sure to flush the delayed moov atom for hybrid fragmented
    If using the delay_moov flag in combination with hybrid_fragment
    (which is a potentially problematic combination otherwise - the
    ftyp box does end up hidden in the end), then we need to flush
    twice to get both the moov box and the first fragment, if the
    file is finished before the first fragment is completed.

    Changed files

    • libavformat/movenc.c