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

Builder ffmpegsos-solaris10-sparc Build #12540

Results:

Failed shell_2 shell_3 shell_4 shell_5

SourceStamp:

Projectffmpeg
Repositoryhttps://git.ffmpeg.org/ffmpeg.git
Branchmaster
Revision7b773aba82ea91af24e711262725a462fe71c12c
Got Revision7b773aba82ea91af24e711262725a462fe71c12c
Changes8 changes

BuildSlave:

unstable10s

Reason:

The SingleBranchScheduler scheduler named 'schedule-ffmpegsos-solaris10-sparc' triggered this build

Steps and Logfiles:

  1. git update ( 13 secs )
    1. stdio
  2. shell 'gsed -i ...' ( 0 secs )
    1. stdio
  3. shell_1 'gsed -i ...' ( 1 secs )
    1. stdio
  4. shell_2 'gsed -i ...' failed ( 0 secs )
    1. stdio
  5. shell_3 './configure --samples="../../../ffmpeg/fate-suite" ...' failed ( 7 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_sos.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-unstable10s/slave/ffmpegsos-solaris10-sparc slave
buildername ffmpegsos-solaris10-sparc Builder
buildnumber 12540 Build
codebase Build
got_revision 7b773aba82ea91af24e711262725a462fe71c12c Git
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision 7b773aba82ea91af24e711262725a462fe71c12c Build
scheduler schedule-ffmpegsos-solaris10-sparc Scheduler
slavename unstable10s BuildSlave
workdir /export/home/buildbot-unstable10s/slave/ffmpegsos-solaris10-sparc slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Niklas Haas

Timing:

StartTue Dec 9 10:58:46 2025
EndTue Dec 9 10:59:10 2025
Elapsed24 secs

All Changes:

:

  1. Change #251584

    Category ffmpeg
    Changed by Niklas Haas <gitohnoyoudont@haasn.dev>
    Changed at Tue 09 Dec 2025 10:47:48
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision ef2ce57c315955b584dc469ba9ff269f6778b986

    Comments

    swscale/format: exclude U32 from sws_pixel_type()
    This function is supposed to give us representable pixel types; but U32 is not
    representable (due only to the AVRational range limit).

    Changed files

    • libswscale/format.c
  2. Change #251586

    Category ffmpeg
    Changed by Niklas Haas <gitohnoyoudont@haasn.dev>
    Changed at Tue 09 Dec 2025 10:47:48
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 83d572e6f6715055db8d18241bd8559201a86891

    Comments

    swscale/format: check SwsPixelType in fmt_read_write()
    This is the only function that actually has the ability to return an
    error, so just move the pixel type assignment here and add a check to
    ensure a valid pixel type is found.

    Changed files

    • libswscale/format.c
  3. Change #251588

    Category ffmpeg
    Changed by Niklas Haas <gitohnoyoudont@haasn.dev>
    Changed at Tue 09 Dec 2025 10:47:48
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 2feb8482527612d618ae8d62e4201d5536ea63fb

    Comments

    swscale/format: derive fmt_swizzle() from AVPixFmtDescriptor when possible
    Unfortunately, this is exceptionally difficult to handle in the general case,
    when packed/bitstream formats come into play - the actual interpretation of
    the offset, shift etc. are so difficult to deal with in a general case that
    I think it's simpler to continue falling back to a static table of variants
    for these exceptions. They are fortunately small in number.

    Changed files

    • libswscale/format.c
  4. Change #251590

    Category ffmpeg
    Changed by Niklas Haas <gitohnoyoudont@haasn.dev>
    Changed at Tue 09 Dec 2025 10:47:48
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 748855b227441210a564f2d6861cdd2b81c44168

    Comments

    swscale/format: derive fmt_shift() from AVPixFmtDescriptor
    XV36 is the odd one out, being a byte-shifted packed format whose components
    don't actually cross any byte boundaries.

    Changed files

    • libswscale/format.c
  5. Change #251591

    Category ffmpeg
    Changed by Niklas Haas <gitohnoyoudont@haasn.dev>
    Changed at Tue 09 Dec 2025 10:47:48
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 004127f00b209b29730002f08a276a04ef9a4e47

    Comments

    swscale/format: explicitly test for unsupported subsampled formats
    This includes semiplanar formats. Note that the first check typically
    subsumes the second check, but I decided to keep both for clarity.

    Changed files

    • libswscale/format.c
  6. Change #251592

    Category ffmpeg
    Changed by Niklas Haas <gitohnoyoudont@haasn.dev>
    Changed at Tue 09 Dec 2025 10:47:48
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 3160ace20a6740537d39bf74774ef93f7dbc730e

    Comments

    swscale/format: derive fmt_read_write() for regular formats

    Changed files

    • libswscale/format.c
  7. Change #251593

    Category ffmpeg
    Changed by Niklas Haas <gitohnoyoudont@haasn.dev>
    Changed at Tue 09 Dec 2025 10:47:48
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision a8dc3a543cf3dc723df1b9ab448d00def6113d70

    Comments

    swscale/format: consolidate format information into a single struct
    I use a switch/case instead of an array because this is only needed for
    irregular formats, which are very sparse.

    Changed files

    • libswscale/format.c
  8. Change #251594

    Category ffmpeg
    Changed by Niklas Haas <gitohnoyoudont@haasn.dev>
    Changed at Tue 09 Dec 2025 10:47:48
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 7b773aba82ea91af24e711262725a462fe71c12c

    Comments

    swscale/format: merge fmt_* helpers into a single fmt_analyze()
    Handles the split between "regular" and "irregular" pixel formats in a single
    place, and opens up the door for more complicated formats.

    Changed files

    • libswscale/format.c