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

Builder ffmpeg-solaris10-i386 Build #11591

Results:

Failed shell_2 shell_3 shell_4 shell_5

SourceStamp:

Projectffmpeg
Repositoryhttps://git.ffmpeg.org/ffmpeg.git
Branchmaster
Revisionec9985b54f68f58519848096ee7f6b1476052871
Got Revisionec9985b54f68f58519848096ee7f6b1476052871
Changes5 changes

BuildSlave:

unstable10x

Reason:

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

Steps and Logfiles:

  1. git update ( 7 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 ( 3 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 11591 Build
codebase Build
got_revision ec9985b54f68f58519848096ee7f6b1476052871 Git
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision ec9985b54f68f58519848096ee7f6b1476052871 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. Niklas Haas

Timing:

StartWed Oct 9 13:38:43 2024
EndWed Oct 9 13:39:01 2024
Elapsed18 secs

All Changes:

:

  1. Change #211048

    Category ffmpeg
    Changed by Niklas Haas <gitohnoyoudont@haasn.dev>
    Changed at Wed 09 Oct 2024 13:14:57
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision ea228fc41524caff68a20b6d18a9b1ddcc927928

    Comments

    swscale/rgb2xyz: minor style fixes
    Sponsored-by: Sovereign Tech Fund
    Signed-off-by: Niklas Haas <git@haasn.dev>

    Changed files

    • libswscale/swscale.c
  2. Change #211049

    Category ffmpeg
    Changed by Niklas Haas <gitohnoyoudont@haasn.dev>
    Changed at Wed 09 Oct 2024 13:14:57
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 9d8f5141cf7da4c72e8e1a08e9a967c0f163a78a

    Comments

    swscale/rgb2xyz: add explicit width parameter
    This fixes an 11-year-old bug in the rgb2xyz functions, when used with a
    negative stride. The current loop bounds turned it into a no-op.
    
    Additionally, this increases performance on highly cropped images, whose
    stride may be substantially higher than the effective width.
    
    Sponsored-by: Sovereign Tech Fund
    Signed-off-by: Niklas Haas <git@haasn.dev>

    Changed files

    • libswscale/swscale.c
    • tests/ref/fate/filter-pixfmts-vflip
  3. Change #211050

    Category ffmpeg
    Changed by Niklas Haas <gitohnoyoudont@haasn.dev>
    Changed at Wed 09 Oct 2024 13:14:57
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 775de8c19d22a175e1240a180f339e0642c5d536

    Comments

    swscale/rgb2xyz: follow convention on image pointers and strides
    Instead of taking an int16_t pointer and a stride in halfwords, follow the
    usual convention of treating all planes and strides as byte-addressed.
    
    This does not have any immediate effect but makes these functions more
    reusable without unintended "gotchas".
    
    Sponsored-by: Sovereign Tech Fund
    Signed-off-by: Niklas Haas <git@haasn.dev>

    Changed files

    • libswscale/swscale.c
  4. Change #211051

    Category ffmpeg
    Changed by Niklas Haas <gitohnoyoudont@haasn.dev>
    Changed at Wed 09 Oct 2024 13:17:17
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 403a20b2e61e3b164f6729f16e14fdfcee535ee8

    Comments

    swscale/rgb2xyz: expose these functions internally
    Sponsored-by: Sovereign Tech Fund
    Signed-off-by: Niklas Haas <git@haasn.dev>

    Changed files

    • libswscale/swscale.c
    • libswscale/swscale_internal.h
  5. Change #211052

    Category ffmpeg
    Changed by Niklas Haas <gitohnoyoudont@haasn.dev>
    Changed at Wed 09 Oct 2024 13:18:08
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision ec9985b54f68f58519848096ee7f6b1476052871

    Comments

    swscale/internal: constify and expose ff_swscale()
    Used as an intermediate entry point for the new swscale context. The extra
    constification is a consistency measure, as I want to move the memcpy of
    stride and plane pointers to the functions that actually need to mutate them.
    
    Sponsored-by: Sovereign Tech Fund
    Signed-off-by: Niklas Haas <git@haasn.dev>

    Changed files

    • libswscale/slice.c
    • libswscale/swscale.c
    • libswscale/swscale_internal.h