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

Builder ffmpeg64-solaris10-sparc Build #13980

Results:

Failed shell_2 shell_3 shell_4 shell_5

SourceStamp:

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

BuildSlave:

unstable10s

Reason:

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

Steps and Logfiles:

  1. git update ( 6 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_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-unstable10s/slave/ffmpeg64-solaris10-sparc slave
buildername ffmpeg64-solaris10-sparc Builder
buildnumber 13980 Build
codebase Build
got_revision 7587e1224ae9f93fbb3a6340afc8092bbc67a450 Git
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision 7587e1224ae9f93fbb3a6340afc8092bbc67a450 Build
scheduler schedule-ffmpeg64-solaris10-sparc Scheduler
slavename unstable10s BuildSlave
workdir /export/home/buildbot-unstable10s/slave/ffmpeg64-solaris10-sparc slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Jonathan Harris

Timing:

StartWed Jun 24 23:04:18 2026
EndWed Jun 24 23:04:33 2026
Elapsed14 secs

All Changes:

:

  1. Change #272600

    Category ffmpeg
    Changed by Jonathan Harris <ffmpegohnoyoudont@marginal.org.uk>
    Changed at Wed 24 Jun 2026 22:49:42
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 7587e1224ae9f93fbb3a6340afc8092bbc67a450

    Comments

    libavcodec/dxv.c: handle widths not a multiple of 16
    The Resolume DXV codec is based on 4x4 pixel DXT1/DXT5/BC4/BC5 blocks, so
    it's natural to assume that files would be padded to multiples of 4 in width
    and height. But in practice .mov files produced by the Resolume software are
    always padded to multiples of 16 in width and height, so FFmpeg currently
    decodes them incorrectly.
    
    When encoding FFmpeg already pads both width and height to 16 so no change
    is required - see libavcodec/dxvenc.c:37-40 (commit
    d4556c98f02e4f2d3deb86efeb060ebe4659be96):
    
    /*
     * Resolume will refuse to display frames that are not padded to 16x16 pixels.
     */
    #define DXV_ALIGN(x) FFALIGN(x, 16)
    
    Signed-off-by: Jonathan Harris <ffmpeg@marginal.org.uk>

    Changed files

    • libavcodec/dxv.c