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

Builder ffmpeg-solaris10-i386 Build #11561

Results:

Failed shell_2 shell_3 shell_4 shell_5

SourceStamp:

Projectffmpeg
Repositoryhttps://git.ffmpeg.org/ffmpeg.git
Branchmaster
Revision262e6f8430a821effb63af67e8f0bbbea9c3a754
Got Revision262e6f8430a821effb63af67e8f0bbbea9c3a754
Changes5 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 11561 Build
codebase Build
got_revision 262e6f8430a821effb63af67e8f0bbbea9c3a754 Git
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision 262e6f8430a821effb63af67e8f0bbbea9c3a754 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

Timing:

StartTue Oct 1 10:18:40 2024
EndTue Oct 1 10:18:54 2024
Elapsed13 secs

All Changes:

:

  1. Change #209758

    Category ffmpeg
    Changed by Anton Khirnov <antonohnoyoudont@khirnov.net>
    Changed at Tue 01 Oct 2024 09:57:41
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 041d992060ce6643900aee31829d5ccde64af050

    Comments

    lavu/class: improve AVClass doxy

    Changed files

    • libavutil/log.h
  2. Change #209759

    Category ffmpeg
    Changed by Anton Khirnov <antonohnoyoudont@khirnov.net>
    Changed at Tue 01 Oct 2024 09:57:41
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 0d09645cfe8876e16d70f5b87bb07c120e291717

    Comments

    lavu/opt: combine option type size+name into a single descriptor
    Makes it easier to handle options generically and will be useful in
    future commits.

    Changed files

    • libavutil/opt.c
  3. Change #209760

    Category ffmpeg
    Changed by Anton Khirnov <antonohnoyoudont@khirnov.net>
    Changed at Tue 01 Oct 2024 09:57:41
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 3785b27b7622a46d067e39a995d56d71d88581a4

    Comments

    lavu/opt: consolidate common prologue for av_opt_set*()
    The options-setting functions share several operations at their
    beginnings - locating the option and the object to operate on, handling
    the read-only and deprecated flags, and constructing the pointer to the
    target value. Some of the functions also do not perform some of the
    checks, although they should. E.g. a deprecation warning is currently
    only printed for av_opt_set().
    
    Introduce a prologue function that is called from every av_opt_set*()
    and performs all these common initialization operations.

    Changed files

    • libavutil/opt.c
  4. Change #209761

    Category ffmpeg
    Changed by Anton Khirnov <antonohnoyoudont@khirnov.net>
    Changed at Tue 01 Oct 2024 09:57:57
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 0548ab2e4257f9c6e7a7a57138504533a6ca5507

    Comments

    lavu/log,opt: detect setting non-runtime options post-init
    Add a mechanism to AVClass to allow objects to signal their state to
    generic code. When an object flags itself with the 'initialized' state,
    print an error (and fail, after the next major bump) if the caller
    attempts to set non-runtime options.

    Changed files

    • doc/APIchanges
    • libavutil/log.h
    • libavutil/opt.c
    • libavutil/version.h
  5. Change #209762

    Category ffmpeg
    Changed by Anton Khirnov <antonohnoyoudont@khirnov.net>
    Changed at Tue 01 Oct 2024 09:57:58
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 262e6f8430a821effb63af67e8f0bbbea9c3a754

    Comments

    lavfi/avfilter: export AVFilter initialization state
    This will allow the AVOption code to detect setting non-runtime options
    after the filter has been initialized.

    Changed files

    • libavfilter/avfilter.c
    • libavfilter/avfilter_internal.h
    • libavfilter/graphparser.c