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

Builder ffmpegsos-solaris10-i386 Build #14185

Results:

Failed

SourceStamp:

Projectffmpeg
Repositoryhttps://git.ffmpeg.org/ffmpeg.git
Branchmaster
Revision6baf5613036fd7d838c41e85f94d7c7ad7aaf1da
Changes9 changes

BuildSlave:

unstable10x

Reason:

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

Steps and Logfiles:

  1. git updating ( 2 secs )
    1. stdio
  2. shell  
    1. - no logs -
  3. shell_1  
    1. - no logs -
  4. shell_2  
    1. - no logs -
  5. shell_3  
    1. - no logs -
  6. shell_4  
    1. - no logs -
  7. shell_5  
    1. - no logs -

Build Properties:

NameValueSource
branch master Build
builddir /export/home/buildbot/slave/ffmpegsos-solaris10-i386 slave
buildername ffmpegsos-solaris10-i386 Builder
buildnumber 14185 Build
codebase Build
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision 6baf5613036fd7d838c41e85f94d7c7ad7aaf1da Build
scheduler schedule-ffmpegsos-solaris10-i386 Scheduler
slavename unstable10x BuildSlave
workdir /export/home/buildbot/slave/ffmpegsos-solaris10-i386 slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Niklas Haas

Timing:

StartSat Jun 27 00:04:30 2026
EndSat Jun 27 00:04:33 2026
Elapsed2 secs

All Changes:

:

  1. Change #273014

    Category ffmpeg
    Changed by Niklas Haas <gitohnoyoudont@haasn.dev>
    Changed at Fri 26 Jun 2026 23:54:47
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision ffe0104574c4ebe88a0d6fdb4fb58489ce6565c5

    Comments

    avutil/hwcontext_cuda: fix off-by-one in cuda_transfer_data()
    Height of the chroma plane was computed using a naive right shift instead of
    AV_CEIL_RSHIFT, leading to the last line of chroma being uncopied.
    
    Signed-off-by: Niklas Haas <git@haasn.dev>

    Changed files

    • libavutil/hwcontext_cuda.c
  2. Change #273015

    Category ffmpeg
    Changed by Niklas Haas <gitohnoyoudont@haasn.dev>
    Changed at Fri 26 Jun 2026 23:54:47
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 0c3f04a97c2b6b8473631c61682bbf738b9a9978

    Comments

    avfilter/vf_scale_cuda: eliminate redundant context push/pop
    This is already done by cudascale_filter_frame().
    
    Signed-off-by: Niklas Haas <git@haasn.dev>

    Changed files

    • libavfilter/vf_scale_cuda.c
  3. Change #273016

    Category ffmpeg
    Changed by Niklas Haas <gitohnoyoudont@haasn.dev>
    Changed at Fri 26 Jun 2026 23:54:47
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 61750318db8298af801098ecee5cc89884b20bb9

    Comments

    avfilter/vf_scale_cuda: add fail: label (cosmetic)
    Make the next commit a bit easier to review.
    
    Signed-off-by: Niklas Haas <git@haasn.dev>

    Changed files

    • libavfilter/vf_scale_cuda.c
  4. Change #273017

    Category ffmpeg
    Changed by Niklas Haas <gitohnoyoudont@haasn.dev>
    Changed at Fri 26 Jun 2026 23:54:47
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision fef976b1971be0b410baa031bd9abc9c6c17bb2a

    Comments

    avfilter/vf_scale_cuda: introduce CUDATex and mapping helper
    I want to disentangle the internal logic from AVFrame, because some
    intermediate states (e.g. for partially subsampled chroma with simultaneous
    scaling) may not directly map to a valid AVPixelFormat.
    
    Signed-off-by: Niklas Haas <git@haasn.dev>

    Changed files

    • libavfilter/vf_scale_cuda.c
  5. Change #273018

    Category ffmpeg
    Changed by Niklas Haas <gitohnoyoudont@haasn.dev>
    Changed at Fri 26 Jun 2026 23:54:47
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 4289a29bb049d817724723c76fb1a8c929da40db

    Comments

    avfilter/vf_scale_cuda: defer buffer allocation to setup_filters()
    At this point, s->hwctx and CudaFunctions * are available.
    
    Signed-off-by: Niklas Haas <git@haasn.dev>

    Changed files

    • libavfilter/vf_scale_cuda.c
  6. Change #273019

    Category ffmpeg
    Changed by Niklas Haas <gitohnoyoudont@haasn.dev>
    Changed at Fri 26 Jun 2026 23:54:47
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision e79e9f06ba41980558d220f185dafb335ad3702d

    Comments

    avfilter/vf_scale_cuda: use persistent intermediate CUDATex
    Instead of re-creating this object every frame.
    
    Signed-off-by: Niklas Haas <git@haasn.dev>

    Changed files

    • libavfilter/vf_scale_cuda.c
  7. Change #273020

    Category ffmpeg
    Changed by Niklas Haas <gitohnoyoudont@haasn.dev>
    Changed at Fri 26 Jun 2026 23:54:47
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 420a9e90b8d7721f00864602b7205fcd78e1cd14

    Comments

    avfilter/vf_scale_cuda: allocate intermediate buffer directly
    Instead of going via an AVFrame at all. This will allow us to fix the
    intermediate chroma plane size for split downscaling.
    
    Signed-off-by: Niklas Haas <git@haasn.dev>

    Changed files

    • libavfilter/vf_scale_cuda.c
  8. Change #273021

    Category ffmpeg
    Changed by Niklas Haas <gitohnoyoudont@haasn.dev>
    Changed at Fri 26 Jun 2026 23:54:47
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 01972b4f852b2886b3b821aac96d9c2c1d01a6ae

    Comments

    avfilter/vf_scale_cuda: allocate inter buffer with correct subsampling
    Since the input and output format can differ (e.g. 444 -> 420), we need to
    reference the correct subsampling for the partially applied filter.
    
    Keep track of this in the CUDATex itself.
    
    Signed-off-by: Niklas Haas <git@haasn.dev>

    Changed files

    • libavfilter/vf_scale_cuda.c
  9. Change #273022

    Category ffmpeg
    Changed by Niklas Haas <gitohnoyoudont@haasn.dev>
    Changed at Fri 26 Jun 2026 23:54:47
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 6baf5613036fd7d838c41e85f94d7c7ad7aaf1da

    Comments

    avfilter/vf_scale_cuda: fix inverted downscaling check
    Signed-off-by: Niklas Haas <git@haasn.dev>

    Changed files

    • libavfilter/vf_scale_cuda.c