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

Builder ffmpeg-solaris10-i386 Build #13616

Results:

Failed shell_2 shell_3 shell_4 shell_5

SourceStamp:

Projectffmpeg
Repositoryhttps://git.ffmpeg.org/ffmpeg.git
Branchmaster
Revision10928524068fa00b63bc60d8b297c06dbb4a72c8
Got Revision10928524068fa00b63bc60d8b297c06dbb4a72c8
Changes2 changes

BuildSlave:

unstable10x

Reason:

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

Steps and Logfiles:

  1. git update ( 5 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 ( 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/slave/ffmpeg-solaris10-i386 slave
buildername ffmpeg-solaris10-i386 Builder
buildnumber 13616 Build
codebase Build
got_revision 10928524068fa00b63bc60d8b297c06dbb4a72c8 Git
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision 10928524068fa00b63bc60d8b297c06dbb4a72c8 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. Kacper Michajłow

Timing:

StartTue Apr 14 01:35:09 2026
EndTue Apr 14 01:35:25 2026
Elapsed16 secs

All Changes:

:

  1. Change #264360

    Category ffmpeg
    Changed by Kacper Michajłow <kasper93ohnoyoudont@gmail.com>
    Changed at Tue 14 Apr 2026 01:28:30
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 9a2a0557adb51842216d96d987cfeca0652643c1

    Comments

    swscale/ops: remove optimize attribute from op functions
    It was added to force auto vectorization on GCC builds. Since then auto
    vectorization has been enabled for whole code base, 1464930696f593320352a6f928fad6f50ade8f8b.
    
    According to GCC documentaiton, the optimize attribute should be used
    for debugging purposes only. It is not suitable in production code.
    
    In particular it's unclear whether the attribute is applied, as it's is
    actually lost when function is inlined, so usage of it is quite fragile.
    
    Signed-off-by: Kacper Michajłow <kasper93@gmail.com>

    Changed files

    • libswscale/ops_backend.h
    • libswscale/ops_tmpl_int.c
  2. Change #264361

    Category ffmpeg
    Changed by Kacper Michajłow <kasper93ohnoyoudont@gmail.com>
    Changed at Tue 14 Apr 2026 01:28:30
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 10928524068fa00b63bc60d8b297c06dbb4a72c8

    Comments

    swscale/ops: remove type from continuation functions
    The glue code doesn't care about types, so long the functions are
    chained correctly. Let's not pretend there is any type safety there, as
    the function pointers were casted anyway from unrelated types.
    Particularly some f32 and u32 are shared.
    
    This fixes errors like so:
    src/libswscale/ops_tmpl_int.c:471:1: runtime error: call to function linear_diagoff3_f32 through pointer to incorrect function type 'void (*)(struct SwsOpIter *, const struct SwsOpImpl *, unsigned int *, unsigned int *, unsigned int *, unsigned int *)'
    libswscale/ops_tmpl_float.c:208: note: linear_diagoff3_f32 defined here
    
    Fixes: #22332

    Changed files

    • libswscale/ops_backend.h
    • libswscale/ops_tmpl_common.c
    • libswscale/ops_tmpl_float.c
    • libswscale/ops_tmpl_int.c