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

Builder ffmpeg64-solaris10-i386 Build #13409

Results:

Failed shell_2 shell_3 shell_4 shell_5

SourceStamp:

Projectffmpeg
Repositoryhttps://git.ffmpeg.org/ffmpeg.git
Branchmaster
Revisionfa281d139453ca43ef6054b1c5b829141405c80d
Got Revisionfa281d139453ca43ef6054b1c5b829141405c80d
Changes1 change

BuildSlave:

unstable10x

Reason:

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

Steps and Logfiles:

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

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Karl Mogensen

Timing:

StartFri Mar 13 21:34:43 2026
EndFri Mar 13 21:35:03 2026
Elapsed19 secs

All Changes:

:

  1. Change #260991

    Category ffmpeg
    Changed by Karl Mogensen <karlmogensen0ohnoyoudont@gmail.com>
    Changed at Fri 13 Mar 2026 21:31:54
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision fa281d139453ca43ef6054b1c5b829141405c80d

    Comments

    avfilter/af_lv2: call lilv_instance_activate before lilv_instance_run
    Why: the change is done to comply with lilv expectations of hosts.
    
    Added call lilv_instance_activate in the config_output function to abide by lilv documentation that states it must be called before lilv_instance_run:
    "This MUST be called before calling lilv_instance_run()" - documentation source (https://github.com/lv2/lilv/blob/main/include/lilv/lilv.h)
    
    Added call lilv_instance_deactivate in the uninit function to abide by lv2 documentation:
    "If a host calls activate(), it MUST call deactivate() at some point in the future" - documentation source (https://gitlab.com/lv2/lv2/-/blob/main/include/lv2/core/lv2.h)
    
    Added instance_activated integer to LV2Context struct to track if instance was activated and only do lilv_instance_deactivate if was activated to abide by lv2 documentation:
    "Hosts MUST NOT call deactivate() unless activate() was previously called." - documentation source (https://gitlab.com/lv2/lv2/-/blob/main/include/lv2/core/lv2.h)
    
    Regarding the patcheck warning (possibly constant :instance_activated):
    This is a false positive since the struct member is zero-initialized.
    
    Fixes: trac issue #11661 (https://trac.ffmpeg.org/ticket/11661)
    Reported-by: Dave Flater
    Signed-off-by: Karl Mogensen <karlmogensen0@gmail.com>
    Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>

    Changed files

    • libavfilter/af_lv2.c