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

Builder ffmpeg64-solaris10-i386 Build #13402

Results:

Failed shell_2 shell_3 shell_4 shell_5

SourceStamp:

Projectffmpeg
Repositoryhttps://git.ffmpeg.org/ffmpeg.git
Branchmaster
Revision86eb07154d0255a5e96c822d8dc7805ade600f0b
Got Revision86eb07154d0255a5e96c822d8dc7805ade600f0b
Changes6 changes

BuildSlave:

unstable10x

Reason:

The SingleBranchScheduler scheduler named 'schedule-ffmpeg64-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 ( 10 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 ( 1 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 13402 Build
codebase Build
got_revision 86eb07154d0255a5e96c822d8dc7805ade600f0b Git
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision 86eb07154d0255a5e96c822d8dc7805ade600f0b 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. Niklas Haas

Timing:

StartThu Mar 12 23:24:59 2026
EndThu Mar 12 23:25:18 2026
Elapsed18 secs

All Changes:

:

  1. Change #260925

    Category ffmpeg
    Changed by Niklas Haas <gitohnoyoudont@haasn.dev>
    Changed at Thu 12 Mar 2026 22:08:07
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 8115a05aa56a4ef8e59b37c1b9907f6fa98ac8e6

    Comments

    swscale: fix SWS_SPLINE documentation
    This was incorrectly inferred to be a Keys spline when the documentation
    was first added; but it's actually an "unwindowed" (in theory) natural
    cubic spline with C2 continuity everywhere, which is a completely different
    thing.
    
    (SWS_BICUBIC is closer to being a Keys spline)
    
    Sponsored-by: Sovereign Tech Fund
    Signed-off-by: Niklas Haas <git@haasn.dev>

    Changed files

    • libswscale/swscale.h
  2. Change #260926

    Category ffmpeg
    Changed by Niklas Haas <gitohnoyoudont@haasn.dev>
    Changed at Thu 12 Mar 2026 22:08:07
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 36c31fd5ba8df09e1dae3f64b07ceb86a4020cbf

    Comments

    swscale: don't hard code number of scaler params
    In case we ever need to increase this number in the future.
    I won't bother bumping the ABI version for this new #define, since it doesn't
    affect ABI, and I'm about to bump the ABI version in a following commit.
    
    Sponsored-by: Sovereign Tech Fund
    Signed-off-by: Niklas Haas <git@haasn.dev>

    Changed files

    • libswscale/graph.c
    • libswscale/swscale.h
    • libswscale/utils.c
  3. Change #260927

    Category ffmpeg
    Changed by Niklas Haas <gitohnoyoudont@haasn.dev>
    Changed at Thu 12 Mar 2026 22:08:07
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision a1b8cbb8bc3f089716ff93152e4806d4d1129e1d

    Comments

    swscale/utils: separate luma and chroma scaler selection
    Pre-requisite for adding support for configuring these independently.
    
    Sponsored-by: Sovereign Tech Fund
    Signed-off-by: Niklas Haas <git@haasn.dev>

    Changed files

    • libswscale/utils.c
  4. Change #260928

    Category ffmpeg
    Changed by Niklas Haas <gitohnoyoudont@haasn.dev>
    Changed at Thu 12 Mar 2026 22:09:04
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 3503b19711cc6c0494ee5272a3fe28cc5bbb2889

    Comments

    swscale: add enum SwsScaler, SwsContext.scaler to replace legacy flags
    Another step towards a cleaner API, with a cleaner separation of purposes.
    Also avoids wasting a whopping one third of the flag space on what really
    shouldn't have been a flag to begin with.
    
    I pre-emptively decided to separate the scaler selection between "scaler"
    and "scaler_sub", the latter defining what's used for things like 4:2:0
    subsampling.
    
    This allows us to get rid of the awkwardly defined SWS_BICUBLIN flag, in favor
    of that just being the natural consequence of using a different scaler_sub.
    
    Lastly, I also decided to pre-emptively axe the poorly defined and
    questionable SWS_X scaler, which I doubt ever saw much use. The old flag
    is still available as a deprecated flag, anyhow.
    
    Sponsored-by: Sovereign Tech Fund
    Signed-off-by: Niklas Haas <git@haasn.dev>

    Changed files

    • doc/APIchanges
    • libswscale/graph.c
    • libswscale/options.c
    • libswscale/swscale.h
    • libswscale/utils.c
    • libswscale/version.h
  5. Change #260929

    Category ffmpeg
    Changed by Niklas Haas <gitohnoyoudont@haasn.dev>
    Changed at Thu 12 Mar 2026 22:09:13
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 803ac771874db4e672af13a5e57e6f9541d63f27

    Comments

    swscale: mark scale-related SwsFlags as deprecated
    Sponsored-by: Sovereign Tech Fund
    Signed-off-by: Niklas Haas <git@haasn.dev>

    Changed files

    • libswscale/swscale.h
  6. Change #260930

    Category ffmpeg
    Changed by Niklas Haas <gitohnoyoudont@haasn.dev>
    Changed at Thu 12 Mar 2026 22:09:13
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 86eb07154d0255a5e96c822d8dc7805ade600f0b

    Comments

    doc/scaler: document new sws scaler flags
    And label the old ones as deprecated.
    
    Sponsored-by: Sovereign Tech Fund
    Signed-off-by: Niklas Haas <git@haasn.dev>

    Changed files

    • doc/scaler.texi