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

Builder ffmpegsos-solaris10-i386 Build #11300

Results:

Failed shell_2 shell_3 shell_4 shell_5

SourceStamp:

Projectffmpeg
Repositoryhttps://git.ffmpeg.org/ffmpeg.git
Branchmaster
Revision20206e14d7480d514b5e9cdda179dedd2742d4dd
Got Revision20206e14d7480d514b5e9cdda179dedd2742d4dd
Changes4 changes

BuildSlave:

unstable10x

Reason:

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

Steps and Logfiles:

  1. git update ( 2 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 ( 2 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/slave/ffmpegsos-solaris10-i386 slave
buildername ffmpegsos-solaris10-i386 Builder
buildnumber 11300 Build
codebase Build
got_revision 20206e14d7480d514b5e9cdda179dedd2742d4dd Git
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision 20206e14d7480d514b5e9cdda179dedd2742d4dd 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. Andreas Rheinhardt

Timing:

StartSun Apr 21 17:22:57 2024
EndSun Apr 21 17:23:04 2024
Elapsed6 secs

All Changes:

:

  1. Change #195712

    Category ffmpeg
    Changed by Andreas Rheinhardt <andreas.rheinhardtohnoyoudont@outlook.com>
    Changed at Sun 21 Apr 2024 16:31:42
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 1d17d84b7d564228629d78c1c510de467662c5bc

    Comments

    avcodec/progressframe: Explain how unnamed union can simplify accesses
    This relies on the common initial seqence guarantee
    (and on C11 support for unnamed members).
    
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    Changed files

    • libavcodec/progressframe.h
  2. Change #195713

    Category ffmpeg
    Changed by Andreas Rheinhardt <andreas.rheinhardtohnoyoudont@outlook.com>
    Changed at Sun 21 Apr 2024 16:31:42
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 0ec886ddc79c491fe27ad64b31d50d436a72de70

    Comments

    avcodec/hevcdec: Use union for AVFrame* and ProgressFrame
    It avoids having to sync ProgressFrame.f and the pointer
    typically used to access the AVFrame.
    
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    Changed files

    • libavcodec/hevc_refs.c
    • libavcodec/hevcdec.c
    • libavcodec/hevcdec.h
  3. Change #195714

    Category ffmpeg
    Changed by Andreas Rheinhardt <andreas.rheinhardtohnoyoudont@outlook.com>
    Changed at Sun 21 Apr 2024 16:31:42
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 0f8763fbea4e8816cd54c2a481d4c048fec58394

    Comments

    avcodec/av1dec: Use ProgressFrames
    AV1 can put a frame into multiple reference slots;
    up until now, this involved creating a new reference
    to the underlying AVFrame; therefore av1_frame_ref()
    could fail.
    This commit changes this by using the ProgressFrame API
    to share the underlying AVFrames.
    
    (Hint: vaapi_av1_surface_id() checked whether the AV1Frames
    contained in the AV1DecContext were NULL or not (of course
    they were not); this has been changed to actually check for
    whether said AV1Frame is blank or not.)
    
    Reviewed-by: James Almer <jamrial@gmail.com>
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    Changed files

    • libavcodec/av1dec.c
    • libavcodec/av1dec.h
    • libavcodec/dxva2_av1.c
    • libavcodec/nvdec_av1.c
    • libavcodec/vaapi_av1.c
    • libavcodec/vdpau_av1.c
    • libavcodec/vulkan_av1.c
  4. Change #195715

    Category ffmpeg
    Changed by Andreas Rheinhardt <andreas.rheinhardtohnoyoudont@outlook.com>
    Changed at Sun 21 Apr 2024 16:31:42
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 20206e14d7480d514b5e9cdda179dedd2742d4dd

    Comments

    avcodec/av1dec: Make av1_frame_replace() out of av1_frame_ref()
    Reviewed-by: James Almer <jamrial@gmail.com>
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    Changed files

    • libavcodec/av1dec.c