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

Builder ffmpeg-solaris10-i386 Build #11620

Results:

Failed shell_2 shell_3 shell_4 shell_5

SourceStamp:

Projectffmpeg
Repositoryhttps://git.ffmpeg.org/ffmpeg.git
Branchmaster
Revision9ce63e65d65b303813d4ae677228226d7cd232b9
Got Revision9ce63e65d65b303813d4ae677228226d7cd232b9
Changes28 changes

BuildSlave:

unstable10x

Reason:

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

Steps and Logfiles:

  1. git update ( 6 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 ( 6 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/slave/ffmpeg-solaris10-i386 slave
buildername ffmpeg-solaris10-i386 Builder
buildnumber 11620 Build
codebase Build
got_revision 9ce63e65d65b303813d4ae677228226d7cd232b9 Git
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision 9ce63e65d65b303813d4ae677228226d7cd232b9 Build
scheduler schedule-ffmpeg-solaris10-i386 Scheduler
slavename unstable10x BuildSlave
workdir /export/home/buildbot/slave/ffmpeg-solaris10-i386 slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Anton Khirnov
  2. Martin Schitter

Timing:

StartTue Oct 15 10:59:56 2024
EndTue Oct 15 11:00:10 2024
Elapsed14 secs

All Changes:

:

  1. Change #211738

    Category ffmpeg
    Changed by Martin Schitter <ms+gitohnoyoudont@mur.at>
    Changed at Tue 15 Oct 2024 10:36:54
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision c50f79a0dc4c4e29f3a8b759b031178d5ed57516

    Comments

    doc/APIchanges: add missing entry for adding RGBF16
    The missing APIchanges entry requested by A.Khirnov.
    
    Signed-off-by: Anton Khirnov <anton@khirnov.net>

    Changed files

    • doc/APIchanges
  2. Change #211739

    Category ffmpeg
    Changed by Anton Khirnov <antonohnoyoudont@khirnov.net>
    Changed at Tue 15 Oct 2024 10:37:44
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 79c47dfd25f101b6842bbec8c6ffef8d5077c3ae

    Comments

    lavc/hevcdec: unbreak WPP/progress2 code
    The "progress2" API in pthread_slice.c currently associates a progress
    value with a thread rather than a job, relying on the broken assumption
    that a job's thread number is equal to its job number modulo thread
    count.
    
    This removes this API entirely, and changes hevcdec to use a
    ThreadProgress-based implementation that associates a
    mutex/cond/progress value with every job.
    
    Fixes races and deadlocks in hevdec with slice threading, e.g. some of
    those mentioned in #11221.

    Changed files

    • libavcodec/hevc/hevcdec.c
    • libavcodec/hevc/hevcdec.h
    • libavcodec/pthread_slice.c
    • libavcodec/thread.h
    • libavcodec/utils.c
  3. Change #211741

    Category ffmpeg
    Changed by Anton Khirnov <antonohnoyoudont@khirnov.net>
    Changed at Tue 15 Oct 2024 10:38:48
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 9e2a231236428c4682c77858c6aabfd74f459b17

    Comments

    fftools/ffmpeg_filter: treat apad filter as a source
    Ideally lavfi should have a dedicated API for detecting this.
    
    Fixes #11168 and #11061

    Changed files

    • fftools/ffmpeg_filter.c
  4. Change #211742

    Category ffmpeg
    Changed by Anton Khirnov <antonohnoyoudont@khirnov.net>
    Changed at Tue 15 Oct 2024 10:39:13
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision d26ef934f35065a3d041584176954335d8aa34ba

    Comments

    lavfi/vf_frei0r: switch to query_func2()

    Changed files

    • libavfilter/vf_frei0r.c
  5. Change #211743

    Category ffmpeg
    Changed by Anton Khirnov <antonohnoyoudont@khirnov.net>
    Changed at Tue 15 Oct 2024 10:39:13
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 6db8279325a473a8649a2c524cdd5177a5a76cee

    Comments

    lavfi/vf_hflip: switch to query_func2()

    Changed files

    • libavfilter/vf_hflip.c
  6. Change #211744

    Category ffmpeg
    Changed by Anton Khirnov <antonohnoyoudont@khirnov.net>
    Changed at Tue 15 Oct 2024 10:39:13
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 01458a0c8fa3e51d16d737a57dfef231521b60d2

    Comments

    lavfi/vf_hwdownload: switch to query_func2()

    Changed files

    • libavfilter/vf_hwdownload.c
  7. Change #211745

    Category ffmpeg
    Changed by Anton Khirnov <antonohnoyoudont@khirnov.net>
    Changed at Tue 15 Oct 2024 10:39:13
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 036336296c5eccdbab2539342f0056d24d322752

    Comments

    lavfi/vf_hwupload: validate the hw device in init
    Rather than query_formats(). Init is a more appropriate place, as
    query_formats() is supposed to be free of side-effects.

    Changed files

    • libavfilter/vf_hwupload.c
  8. Change #211746

    Category ffmpeg
    Changed by Anton Khirnov <antonohnoyoudont@khirnov.net>
    Changed at Tue 15 Oct 2024 10:39:13
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 848256677d5cc7bdf67f466e871df6c76ef46209

    Comments

    lavfi/vf_hwupload: switch to query_func2()

    Changed files

    • libavfilter/vf_hwupload.c
  9. Change #211747

    Category ffmpeg
    Changed by Anton Khirnov <antonohnoyoudont@khirnov.net>
    Changed at Tue 15 Oct 2024 10:39:13
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 6929fc88455390285645df70df058b0675b758db

    Comments

    lavfi/vf_hwupload_cuda: switch to query_func2()

    Changed files

    • libavfilter/vf_hwupload_cuda.c
  10. Change #211748

    Category ffmpeg
    Changed by Anton Khirnov <antonohnoyoudont@khirnov.net>
    Changed at Tue 15 Oct 2024 10:39:13
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision c4822228b0de47eddac93b4d4e2b2a9c457b2f80

    Comments

    lavfi/vf_il: switch to query_func2()

    Changed files

    • libavfilter/vf_il.c
  11. Change #211749

    Category ffmpeg
    Changed by Anton Khirnov <antonohnoyoudont@khirnov.net>
    Changed at Tue 15 Oct 2024 10:39:14
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 8160178dfc0e6bdaacf80dec58e595a9d595eedc

    Comments

    lavfi/vf_libplacebo: move vulkan initialization to init
    avfilter API requires all the filter parameters, including hw context
    (if present) to be available during init, so that is the proper place to
    perform such setup.

    Changed files

    • libavfilter/vf_libplacebo.c
  12. Change #211750

    Category ffmpeg
    Changed by Anton Khirnov <antonohnoyoudont@khirnov.net>
    Changed at Tue 15 Oct 2024 10:39:14
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 92981320b37417e24232f00ece742481b788a2d1

    Comments

    lavfi/vf_libplacebo: convert to query_func2()
    Drop a redundant error message for out_format, as it is already
    validated in init.

    Changed files

    • libavfilter/vf_libplacebo.c
  13. Change #211751

    Category ffmpeg
    Changed by Anton Khirnov <antonohnoyoudont@khirnov.net>
    Changed at Tue 15 Oct 2024 10:39:14
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 57e81f36a4ff6b1d4094114355e68fe9bf49a2ac

    Comments

    lavfi/vf_lut: switch to query_func2()

    Changed files

    • libavfilter/vf_lut.c
  14. Change #211752

    Category ffmpeg
    Changed by Anton Khirnov <antonohnoyoudont@khirnov.net>
    Changed at Tue 15 Oct 2024 10:39:14
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 4b2580c18457707e2c95dc36b60b56bc22def935

    Comments

    lavfi/vf_lut2: switch to query_func2()

    Changed files

    • libavfilter/vf_lut2.c
  15. Change #211753

    Category ffmpeg
    Changed by Anton Khirnov <antonohnoyoudont@khirnov.net>
    Changed at Tue 15 Oct 2024 10:39:14
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 271ec2ab2869a930566cd0cc87f1e01e7d574771

    Comments

    lavfi/vf_mix: switch to query_func2()

    Changed files

    • libavfilter/vf_mix.c
  16. Change #211754

    Category ffmpeg
    Changed by Anton Khirnov <antonohnoyoudont@khirnov.net>
    Changed at Tue 15 Oct 2024 10:39:14
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision d50a63b04ec64931d2f98a0a25e64074adc60445

    Comments

    lavfi/vf_noise: switch to query_func2()

    Changed files

    • libavfilter/vf_noise.c
  17. Change #211755

    Category ffmpeg
    Changed by Anton Khirnov <antonohnoyoudont@khirnov.net>
    Changed at Tue 15 Oct 2024 10:39:14
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 0c86bc32aa71a214e7de53690b2992d9758a4f4f

    Comments

    lavfi/vf_overlay: switch to query_func2()

    Changed files

    • libavfilter/vf_overlay.c
  18. Change #211756

    Category ffmpeg
    Changed by Anton Khirnov <antonohnoyoudont@khirnov.net>
    Changed at Tue 15 Oct 2024 10:39:14
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 64035fe2069a2cccaa47393c0b6d4b1f7cfc805d

    Comments

    lavfi/vf_overlay_qsv: switch to query_func2()

    Changed files

    • libavfilter/vf_overlay_qsv.c
  19. Change #211757

    Category ffmpeg
    Changed by Anton Khirnov <antonohnoyoudont@khirnov.net>
    Changed at Tue 15 Oct 2024 10:39:14
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision c8344737b61e8117556d519c829909d59dec0716

    Comments

    lavfi/vf_pad: switch to query_func2()

    Changed files

    • libavfilter/vf_pad.c
  20. Change #211758

    Category ffmpeg
    Changed by Anton Khirnov <antonohnoyoudont@khirnov.net>
    Changed at Tue 15 Oct 2024 10:39:14
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 18e43c2d3961e9bf2ab818a13a703aa1cc3902c8

    Comments

    lavfi/vf_palettegen: switch to query_func2()

    Changed files

    • libavfilter/vf_palettegen.c
  21. Change #211759

    Category ffmpeg
    Changed by Anton Khirnov <antonohnoyoudont@khirnov.net>
    Changed at Tue 15 Oct 2024 10:39:14
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 4faf6c6f0d653263189d844528974d82359675ce

    Comments

    lavfi/vf_paletteuse: switch to query_func2()

    Changed files

    • libavfilter/vf_paletteuse.c
  22. Change #211760

    Category ffmpeg
    Changed by Anton Khirnov <antonohnoyoudont@khirnov.net>
    Changed at Tue 15 Oct 2024 10:39:14
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision d83d8a1643e3160945dcb29b1ef0e9cfa7eabca3

    Comments

    lavfi/vf_premultiply: switch to query_func2()

    Changed files

    • libavfilter/vf_premultiply.c
  23. Change #211761

    Category ffmpeg
    Changed by Anton Khirnov <antonohnoyoudont@khirnov.net>
    Changed at Tue 15 Oct 2024 10:39:14
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision c19f3fe61bd42f227316d2c227e6e0c1f064258f

    Comments

    lavfi/vf_quirc: use FILTER_PIXFMTS_ARRAY() instead of query_formats()

    Changed files

    • libavfilter/vf_quirc.c
  24. Change #211762

    Category ffmpeg
    Changed by Anton Khirnov <antonohnoyoudont@khirnov.net>
    Changed at Tue 15 Oct 2024 10:39:14
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 989bc256a370471d53ea5c3c9f0596ddf36f1b84

    Comments

    lavfi/vf_mergeplanes: remove redundant assignment
    It is already done in init.

    Changed files

    • libavfilter/vf_mergeplanes.c
  25. Change #211763

    Category ffmpeg
    Changed by Anton Khirnov <antonohnoyoudont@khirnov.net>
    Changed at Tue 15 Oct 2024 10:39:14
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision dcd5a51e0ad5595f5109f2e1e2c19ef058cc9a1e

    Comments

    lavfi/vf_mergeplanes: switch to query_func2()

    Changed files

    • libavfilter/vf_mergeplanes.c
  26. Change #211764

    Category ffmpeg
    Changed by Anton Khirnov <antonohnoyoudont@khirnov.net>
    Changed at Tue 15 Oct 2024 10:39:14
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 4d69398ddac3ec6040fd7a6500c8907336758c2a

    Comments

    lavfi/vf_remap: switch to query_func2()

    Changed files

    • libavfilter/vf_remap.c
  27. Change #211765

    Category ffmpeg
    Changed by Anton Khirnov <antonohnoyoudont@khirnov.net>
    Changed at Tue 15 Oct 2024 10:39:14
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision c961a7292629fa30515eafcc435ef22365205dec

    Comments

    lavfi/vf_scale: switch to query_func2()

    Changed files

    • libavfilter/vf_scale.c
  28. Change #211766

    Category ffmpeg
    Changed by Anton Khirnov <antonohnoyoudont@khirnov.net>
    Changed at Tue 15 Oct 2024 10:40:15
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 9ce63e65d65b303813d4ae677228226d7cd232b9

    Comments

    lavc/avcodec: fix global/private option precendence
    Broken after 7753a9d62725d5bd8313e2d249acbe1c8af79ab1. Apply only the
    whitelist early, and the rest with a single call to av_opt_set_dict2()
    with AV_OPT_SEARCH_CHILDREN, which should be equivalent to the original
    behaviour.
    
    Reported-by: Cameron Gutman <aicommander@gmail.com>

    Changed files

    • libavcodec/avcodec.c