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

Builder ffmpegsos-solaris10-i386 Build #12553

Results:

Failed shell_2 shell_3 shell_4 shell_5

SourceStamp:

Projectffmpeg
Repositoryhttps://git.ffmpeg.org/ffmpeg.git
Branchmaster
Revision0cc46f1f5900a058a94211accad9c103b0d6a52b
Got Revision0cc46f1f5900a058a94211accad9c103b0d6a52b
Changes4 changes

BuildSlave:

unstable10x

Reason:

The SingleBranchScheduler scheduler named 'schedule-ffmpegsos-solaris10-i386' triggered this build

Steps and Logfiles:

  1. git update ( 11 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 ( 8 secs )
    1. stdio
  7. shell_5 '../../../ffmpeg/fate.sh ../../../ffmpeg/fate_config_sos.sh' failed ( 12 secs )
    1. stdio
    2. configure.log
    3. compile.log
    4. test.log

Build Properties:

NameValueSource
branch master Build
builddir /export/home/buildbot/slave/ffmpegsos-solaris10-i386 slave
buildername ffmpegsos-solaris10-i386 Builder
buildnumber 12553 Build
codebase Build
got_revision 0cc46f1f5900a058a94211accad9c103b0d6a52b Git
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision 0cc46f1f5900a058a94211accad9c103b0d6a52b Build
scheduler schedule-ffmpegsos-solaris10-i386 Scheduler
slavename unstable10x BuildSlave
workdir /export/home/buildbot/slave/ffmpegsos-solaris10-i386 slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Marton Balint

Timing:

StartTue Jul 29 23:35:21 2025
EndTue Jul 29 23:36:04 2025
Elapsed43 secs

All Changes:

:

  1. Change #241196

    Category ffmpeg
    Changed by Marton Balint <cusohnoyoudont@passwd.hu>
    Changed at Tue 29 Jul 2025 22:10:05
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 944329f8fd8e923d43e8527d71301a242cb5e7e4

    Comments

    avfilter/trim: consume all available frames and avoid activate reschedule
    There is no benefit in delaying processing all available frames.
    
    Signed-off-by: Marton Balint <cus@passwd.hu>

    Changed files

    • libavfilter/trim.c
  2. Change #241198

    Category ffmpeg
    Changed by Marton Balint <cusohnoyoudont@passwd.hu>
    Changed at Tue 29 Jul 2025 22:10:05
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 4be21b9399d0b2168926e66d704c34bb17e3a616

    Comments

    avfilter/af_afade: factorize functions generating frames
    No change in functionality.
    
    Signed-off-by: Marton Balint <cus@passwd.hu>

    Changed files

    • libavfilter/af_afade.c
  3. Change #241199

    Category ffmpeg
    Changed by Marton Balint <cusohnoyoudont@passwd.hu>
    Changed at Tue 29 Jul 2025 22:10:05
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 84d831ec581470ce3d0202617f860f0b43db49c2

    Comments

    avfilter/af_afade: fix check_input for empty streams
    Use ff_outlink_get_status directly to get pending EOF state.
    
    Fixes assertion failure with:
    ffmpeg -lavfi "sine=f=1000:d=2[a];sine=f=440:d=2,atrim=end=0[b];[a][b]acrossfade=d=1" -f framecrc -
    ffmpeg -lavfi "sine=f=1000:d=2,atrim=end=0[a];sine=f=440:d=2[b];[a][b]acrossfade=d=1" -f framecrc -
    
    Signed-off-by: Marton Balint <cus@passwd.hu>

    Changed files

    • libavfilter/af_afade.c
  4. Change #241200

    Category ffmpeg
    Changed by Marton Balint <cusohnoyoudont@passwd.hu>
    Changed at Tue 29 Jul 2025 22:10:05
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 0cc46f1f5900a058a94211accad9c103b0d6a52b

    Comments

    avfilter/af_afade: rework crossfade activate logic
    The new logic should be easier to follow.
    
    It also uses ff_inlink_consume_frame() for all simple passthrough operations
    making custom get_audio_buffer callback unnecessary.
    
    Fate changes are because the new logic does not repacketize input audio up
    until the crossfade. Content is the same.
    
    Signed-off-by: Marton Balint <cus@passwd.hu>

    Changed files

    • libavfilter/af_afade.c
    • tests/ref/fate/filter-acrossfade