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

Builder ffmpeg-solaris10-sparc Build #12397

Results:

Failed shell_2 shell_3 shell_4 shell_5

SourceStamp:

Projectffmpeg
Repositoryhttps://git.ffmpeg.org/ffmpeg.git
Branchmaster
Revision814dd634e0ae417425a221f612198f91c7fc8c52
Got Revision814dd634e0ae417425a221f612198f91c7fc8c52
Changes3 changes

BuildSlave:

unstable10s

Reason:

The SingleBranchScheduler scheduler named 'schedule-ffmpeg-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 ( 10 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 ( 5 secs )
    1. stdio
    2. configure.log
    3. compile.log
    4. test.log

Build Properties:

NameValueSource
branch master Build
builddir /export/home/buildbot-unstable10s/slave/ffmpeg-solaris10-sparc slave
buildername ffmpeg-solaris10-sparc Builder
buildnumber 12397 Build
codebase Build
got_revision 814dd634e0ae417425a221f612198f91c7fc8c52 Git
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision 814dd634e0ae417425a221f612198f91c7fc8c52 Build
scheduler schedule-ffmpeg-solaris10-sparc Scheduler
slavename unstable10s BuildSlave
workdir /export/home/buildbot-unstable10s/slave/ffmpeg-solaris10-sparc slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. David Rosca
  2. nyanmisaka

Timing:

StartFri Aug 8 15:42:47 2025
EndFri Aug 8 15:43:14 2025
Elapsed26 secs

All Changes:

:

  1. Change #242461

    Category ffmpeg
    Changed by nyanmisaka <nst799610810ohnoyoudont@gmail.com>
    Changed at Fri 08 Aug 2025 14:53:39
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision eb9070aba4fa20fc9b4929a40182675d1d458844

    Comments

    lavu/hwcontext_vaapi: fix a race mapping to allow CSC to YUV420P
    There's a race condition for YUV420P when mapping from pix_fmt
    to VA fourcc, both I420 and YV12 could be found by pix_fmt.
    
    Currently, vaapi_get_image_format() iterates over the query results
    of pix_fmt and returns the first matching result in the order
    declared in the driver. This may result in an incorrect image_format.
    
    Now use fourcc to find the image_format.
    
    Fixes:
    ffmpeg -hwaccel vaapi -hwaccel_output_format vaapi -i INPUT \
    -vf scale_vaapi=format=yuv420p,hwmap,format=yuv420p \
    -vframes 1 -f rawvideo -y yuv420p.yuv
    
    Signed-off-by: nyanmisaka <nst799610810@gmail.com>

    Changed files

    • libavutil/hwcontext_vaapi.c
  2. Change #242462

    Category ffmpeg
    Changed by nyanmisaka <nst799610810ohnoyoudont@gmail.com>
    Changed at Fri 08 Aug 2025 14:53:39
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 523134587ad86959ad03bbbabcca841d64d9ed8c

    Comments

    lavu/hwcontext_vaapi: drop a redundant check
    vaapi_get_image_format() will be called in vaapi_map_frame().
    
    So it's a double check, drop it to avoid redundancy.
    
    Signed-off-by: nyanmisaka <nst799610810@gmail.com>

    Changed files

    • libavutil/hwcontext_vaapi.c
  3. Change #242463

    Category ffmpeg
    Changed by David Rosca <nowrepohnoyoudont@gmail.com>
    Changed at Fri 08 Aug 2025 15:14:07
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 814dd634e0ae417425a221f612198f91c7fc8c52

    Comments

    lavc/vaapi_encode_av1: Fix ref_order_hint value for second slot
    We always use two slots, even when only one L0 reference is supported
    by the driver. However we still need to set the correct value for the
    ref_order_hint of the second slot.
    
    Fixes regression from bf9f921ef7 ("avcodec/hw_base_encode: restrict size of next_prev")

    Changed files

    • libavcodec/vaapi_encode_av1.c