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

Builder ffmpeg-solaris10-sparc Build #12234

Results:

Failed shell_2 shell_3 shell_4 shell_5

SourceStamp:

Projectffmpeg
Repositoryhttps://git.ffmpeg.org/ffmpeg.git
Branchmaster
Revision42bcbdd456d1ca2aa2d0665840830f0a5bf8be39
Got Revision42bcbdd456d1ca2aa2d0665840830f0a5bf8be39
Changes11 changes

BuildSlave:

unstable10s

Reason:

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

Steps and Logfiles:

  1. git update ( 8 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 ( 9 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 ( 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/ffmpeg-solaris10-sparc slave
buildername ffmpeg-solaris10-sparc Builder
buildnumber 12234 Build
codebase Build
got_revision 42bcbdd456d1ca2aa2d0665840830f0a5bf8be39 Git
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision 42bcbdd456d1ca2aa2d0665840830f0a5bf8be39 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. Marton Balint

Timing:

StartThu Jul 3 22:22:24 2025
EndThu Jul 3 22:22:43 2025
Elapsed19 secs

All Changes:

:

  1. Change #238273

    Category ffmpeg
    Changed by Marton Balint <cusohnoyoudont@passwd.hu>
    Changed at Thu 03 Jul 2025 21:41:53
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision f3b7aa6c224dc6bbb96a57dceb39b8c4b77c1297

    Comments

    avfilter: factorize requesting an input frame from multi output filters
    Signed-off-by: Marton Balint <cus@passwd.hu>

    Changed files

    • doc/filter_design.txt
    • libavfilter/af_acrossover.c
    • libavfilter/af_channelsplit.c
    • libavfilter/filters.h
    • libavfilter/split.c
    • libavfilter/vf_extractplanes.c
  2. Change #238274

    Category ffmpeg
    Changed by Marton Balint <cusohnoyoudont@passwd.hu>
    Changed at Thu 03 Jul 2025 21:41:53
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 29e696c9c010778b4750efb42c3e89544d56ec4e

    Comments

    avfilter/filters: simplify FF_FILTER_FORWARD_WANTED_ANY
    The status check is unneeded because an outlink with a nonzero status should
    always return 0 for ff_outlink_frame_wanted(). Also use unsigned for index
    because nb_outputs is unsigned as well.
    
    Signed-off-by: Marton Balint <cus@passwd.hu>

    Changed files

    • libavfilter/filters.h
  3. Change #238275

    Category ffmpeg
    Changed by Marton Balint <cusohnoyoudont@passwd.hu>
    Changed at Thu 03 Jul 2025 21:41:53
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision a736ac72bb2e457484724f0589fd11a2b2b5f852

    Comments

    avfilter/avfilter: fix forwarding EOF for simple API filters in filter_activate_default
    EOF only need to be forwarded back if all outputs have reached EOF.
    
    Fixes infinte loop with ffprobe -f lavfi -i "smptebars=d=1,select=n=2:e=1[out0][out1]"
    Regression since d9e41ead82263e96ebd14d4d88d6e7f858dd944c.
    
    Fixes ticket #10959.
    Fixes ticket #11366.
    
    Signed-off-by: Marton Balint <cus@passwd.hu>

    Changed files

    • libavfilter/avfilter.c
  4. Change #238276

    Category ffmpeg
    Changed by Marton Balint <cusohnoyoudont@passwd.hu>
    Changed at Thu 03 Jul 2025 21:41:54
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision a85835bfb83fc31684b22c64a3f4976e53a467cc

    Comments

    fate/filter-video: add ffprobe test for dual output select filter
    Signed-off-by: Marton Balint <cus@passwd.hu>

    Changed files

    • tests/fate-run.sh
    • tests/fate/filter-video.mak
    • tests/ref/fate/filter-select-ffprobe
  5. Change #238277

    Category ffmpeg
    Changed by Marton Balint <cusohnoyoudont@passwd.hu>
    Changed at Thu 03 Jul 2025 21:41:54
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 4440e499bae0235a8f4f4308c45be8f70f29ff2d

    Comments

    avfilter/avfilter: always forward request frame in filter_activate_default
    Even if all inputs are blocked an activate callback should request a frame on
    some if its inputs if a frame is requested on any of its outputs.
    
    Signed-off-by: Marton Balint <cus@passwd.hu>

    Changed files

    • libavfilter/avfilter.c
  6. Change #238278

    Category ffmpeg
    Changed by Marton Balint <cusohnoyoudont@passwd.hu>
    Changed at Thu 03 Jul 2025 21:41:54
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 44546751db824002f07cc0b8b2fc62587a5a34b5

    Comments

    avfilter/avfilter: make filter_activate_default request frames on behalf of sinks
    Sinks without an activate callback have no means to request frames in their
    input, therefore the default activate callback should do it for them.
    
    Fixes ticket #11624.
    Fixes ticket #10988.
    Fixes ticket #10990.
    
    Signed-off-by: Marton Balint <cus@passwd.hu>

    Changed files

    • libavfilter/avfilter.c
  7. Change #238279

    Category ffmpeg
    Changed by Marton Balint <cusohnoyoudont@passwd.hu>
    Changed at Thu 03 Jul 2025 21:41:54
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision eea6f0e32e195f9ee851266e569b8a2fa9914ef1

    Comments

    tests/fate/filter-audio: add anullsink test
    Tests ticket #11624 with a slight modification.
    
    Signed-off-by: Marton Balint <cus@passwd.hu>

    Changed files

    • tests/fate/filter-audio.mak
    • tests/ref/fate/filter-anullsink
  8. Change #238280

    Category ffmpeg
    Changed by Marton Balint <cusohnoyoudont@passwd.hu>
    Changed at Thu 03 Jul 2025 21:41:54
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision d41bac1333b0a9ab621922a3e306ca455ff3b9a3

    Comments

    avfilter: signal an empty buffersrc with an explicit activate error code
    No change in functionality.
    
    Signed-off-by: Marton Balint <cus@passwd.hu>

    Changed files

    • libavfilter/avfiltergraph.c
    • libavfilter/buffersink.c
    • libavfilter/buffersrc.c
    • libavfilter/filters.h
  9. Change #238281

    Category ffmpeg
    Changed by Marton Balint <cusohnoyoudont@passwd.hu>
    Changed at Thu 03 Jul 2025 21:41:54
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 223c2b03da1b13ac6b510135e4dc7cbe6fc8bea2

    Comments

    avfilter/buffersink: keep requesting frames if one activation of the graph does not provide one
    A frame graph activation might not produce a frame in the requested sink, so
    keep on requesting a frame there unless we encounter a filter activation with
    buffersrc empty error.
    
    This makes av_buffersink_get_frame(_flags) work according to its documentation
    which claims that EAGAIN is only returned if additional frames must be inserted
    into the graph.
    
    Fate changes are because audio frames will have different sizes at segment
    boundaries, but content is the same.
    
    Signed-off-by: Marton Balint <cus@passwd.hu>

    Changed files

    • libavfilter/buffersink.c
    • tests/ref/fate/filter-asegment-samples-absolute
    • tests/ref/fate/filter-asegment-samples-relative
    • tests/ref/fate/filter-asegment-timestamps-absolute
    • tests/ref/fate/filter-asegment-timestamps-relative
  10. Change #238282

    Category ffmpeg
    Changed by Marton Balint <cusohnoyoudont@passwd.hu>
    Changed at Thu 03 Jul 2025 21:41:54
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision af189e424b9272c804a79fbb2a2e4cfc7f199c0a

    Comments

    avfilter/f_select: port to activate
    Multi-input or multi-output filters should use activate now.
    
    Signed-off-by: Marton Balint <cus@passwd.hu>

    Changed files

    • libavfilter/f_select.c
  11. Change #238283

    Category ffmpeg
    Changed by Marton Balint <cusohnoyoudont@passwd.hu>
    Changed at Thu 03 Jul 2025 21:41:54
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 42bcbdd456d1ca2aa2d0665840830f0a5bf8be39

    Comments

    fftools/ffmpeg_filter: always reap all available frames before requesting new ones
    alfilter_graph_request_oldest() might return EAGAIN and produce a frame on not
    the oldest sink.
    
    Fixes ticket #11597.
    Fixes excessive frame buffering in #10959.
    Fixes excessive frame buffering in #11366.
    
    Signed-off-by: Marton Balint <cus@passwd.hu>

    Changed files

    • fftools/ffmpeg_filter.c