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

Builder ffmpeg-solaris10-sparc Build #12544

Results:

Failed shell_2 shell_3 shell_4 shell_5

SourceStamp:

Projectffmpeg
Repositoryhttps://git.ffmpeg.org/ffmpeg.git
Branchmaster
Revision8ff34b29c71c1f108c879496ce25be04c716159b
Got Revision8ff34b29c71c1f108c879496ce25be04c716159b
Changes5 changes

BuildSlave:

unstable10s

Reason:

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

Steps and Logfiles:

  1. git update ( 16 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 ( 16 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 12544 Build
codebase Build
got_revision 8ff34b29c71c1f108c879496ce25be04c716159b Git
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision 8ff34b29c71c1f108c879496ce25be04c716159b 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. Niklas Haas

Timing:

StartFri Sep 5 01:26:41 2025
EndFri Sep 5 01:27:17 2025
Elapsed35 secs

All Changes:

:

  1. Change #244471

    Category ffmpeg
    Changed by Niklas Haas <gitohnoyoudont@haasn.dev>
    Changed at Fri 05 Sep 2025 01:12:34
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 386264ae164b675a57dfb43c7354261d06be20e8

    Comments

    avfilter/af_afade: generalize pass_crossfade() signature
    Prerequisite to an upcoming refactor.

    Changed files

    • libavfilter/af_afade.c
  2. Change #244472

    Category ffmpeg
    Changed by Niklas Haas <gitohnoyoudont@haasn.dev>
    Changed at Fri 05 Sep 2025 01:12:34
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 2e0885a091a3e1649a00d98706325859b06b754e

    Comments

    avfilter/af_afade: don't leak memory on error
    This first frame was never cleaned up if the second input fails.

    Changed files

    • libavfilter/af_afade.c
  3. Change #244473

    Category ffmpeg
    Changed by Niklas Haas <gitohnoyoudont@haasn.dev>
    Changed at Fri 05 Sep 2025 01:12:34
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 81c1004891fb7316e784ff07f2ea072ccdb68b36

    Comments

    avfilter/af_afade: shorten crossfade on too short inputs
    This behavior is currently completely broken, leading to an abrupt end of the
    first audio stream. I want to generalize this filter to multiple inputs, but
    having too short input files will always represent a significant problem.
    
    I considered a few approaches for how to handle this more gracefully, but
    most of them come with their own problems; in particular when a short input
    is sandwiched between two longer ones; or when there is a sequence of short
    inputs. In the end, it's simplest to just shorten the crossfade window.
    
    I also considered (and tested) padding the input with silence, but this also
    has its own aesthetic implications and strange edge cases.
    
    See-Also: https://code.ffmpeg.org/FFmpeg/FFmpeg/pulls/20388

    Changed files

    • libavfilter/af_afade.c
  4. Change #244474

    Category ffmpeg
    Changed by Niklas Haas <gitohnoyoudont@haasn.dev>
    Changed at Fri 05 Sep 2025 01:12:34
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision dfc3256da12e52947cb9e145140ddc00bc0758fe

    Comments

    avfilter/af_afade: support multiple inputs
    Instead of just 2 files, generalize this filter to support crossfading
    arbitrarily many files. This makes the filter essentially operate similar
    to the `concat` filter, chaining multiple files one after another.
    
    Aside from just adding more input pads, this requires rewriting the
    activate function. Instead of a finite state machine, we keep track of the
    currently active input index; and advance it only once the current input is
    fully exhausted.
    
    This results in arguably simpler logic overall.

    Changed files

    • doc/filters.texi
    • libavfilter/af_afade.c
  5. Change #244475

    Category ffmpeg
    Changed by Niklas Haas <gitohnoyoudont@haasn.dev>
    Changed at Fri 05 Sep 2025 01:12:34
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 8ff34b29c71c1f108c879496ce25be04c716159b

    Comments

    fate/filter-audio: update acrossfade to test multiple inputs

    Changed files

    • tests/fate/filter-audio.mak
    • tests/ref/fate/filter-acrossfade