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

Builder ffmpegsos-solaris10-sparc Build #13420

Results:

Failed shell_2 shell_3 shell_4 shell_5

SourceStamp:

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

BuildSlave:

unstable10s

Reason:

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

Steps and Logfiles:

  1. git update ( 9 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 ( 9 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 13420 Build
codebase Build
got_revision 7ac3d83e7a5113fb217735b76d0843e8942c2383 Git
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision 7ac3d83e7a5113fb217735b76d0843e8942c2383 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. Diego de Souza

Timing:

StartMon May 18 23:22:38 2026
EndMon May 18 23:22:58 2026
Elapsed20 secs

All Changes:

:

  1. Change #267606

    Category ffmpeg
    Changed by Diego de Souza <ddesouzaohnoyoudont@nvidia.com>
    Changed at Mon 18 May 2026 22:47:15
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision fa1ba61775fe0ce4d7c67ef3a3626e7688be5898

    Comments

    avcodec/cuviddec: fix dimension rounding for monochrome/444 formats
    Both paths unconditionally rounded display dimensions to even via
    (dim + 1) & ~1. This is required for 4:2:0 and 4:2:2 (chroma
    subsampling requires even-aligned surfaces) but incorrect for
    monochrome and 4:4:4. AV1 monochrome clips with odd dimensions
    (e.g. 1273x713) were output as 1274x714.
    
    cuinfo.ulTargetWidth/Height still receives the even-aligned value
    for internal NVDEC surface allocation. avctx->width/height are only
    updated to the rounded value for 420/422; for monochrome/444 the
    original display dimensions are preserved and the cuMemcpy2D copy
    crops naturally.
    
    Patch by: Aniket Dhok <adhok@nvidia.com>
    Signed-off-by: Diego de Souza <ddesouza@nvidia.com>

    Changed files

    • libavcodec/cuviddec.c
  2. Change #267607

    Category ffmpeg
    Changed by Diego de Souza <ddesouzaohnoyoudont@nvidia.com>
    Changed at Mon 18 May 2026 22:47:15
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 7ac3d83e7a5113fb217735b76d0843e8942c2383

    Comments

    avcodec/nvdec: fix dimension rounding for monochrome/444 formats
    frames_ctx->width/height were unconditionally rounded to even, causing
    odd-dimension monochrome/444 clips to be reported with incorrect
    surface pool dimensions. Round only for 4:2:0 and 4:2:2; for
    monochrome/444 use avctx->coded_width/coded_height unchanged,
    matching the dimensions set by the software codec layer.
    
    Patch by: Aniket Dhok <adhok@nvidia.com>
    Signed-off-by: Diego de Souza <ddesouza@nvidia.com>

    Changed files

    • libavcodec/nvdec.c