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

Builder ffmpeg-solaris10-sparc Build #13119

Results:

Failed

SourceStamp:

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

BuildSlave:

unstable10s

Reason:

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

Steps and Logfiles:

  1. git updating ( 15 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-unstable10s/slave/ffmpeg-solaris10-sparc slave
buildername ffmpeg-solaris10-sparc Builder
buildnumber 13119 Build
codebase Build
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision f6d89a7bed55278f3729ce6120b45ad9797d57d1 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. Andreas Rheinhardt

Timing:

StartTue Feb 10 20:54:44 2026
EndTue Feb 10 20:55:00 2026
Elapsed15 secs

All Changes:

:

  1. Change #257378

    Category ffmpeg
    Changed by Andreas Rheinhardt <andreas.rheinhardtohnoyoudont@outlook.com>
    Changed at Tue 10 Feb 2026 16:36:58
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision bf44a683ebda86f1ca904b5b8877e95f8ef2a376

    Comments

    fftools/ffmpeg_mux_init: Improve type-safety
    This makes fftools -fshort-enums compatible.
    
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    Changed files

    • fftools/ffmpeg_mux_init.c
  2. Change #257379

    Category ffmpeg
    Changed by Andreas Rheinhardt <andreas.rheinhardtohnoyoudont@outlook.com>
    Changed at Tue 10 Feb 2026 19:44:43
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 0c7424e8179cb27fc13321f62ad18d17e3d5ce5a

    Comments

    avfilter/filters: Restrict ff_fmt_is_in() to enum AVPixelFormat
    Also rename it to ff_pixfmt_is_in(). This is more type-safe;
    in particular, it is required to support -fshort-enum.
    
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    Changed files

    • libavfilter/filters.h
    • libavfilter/formats.c
    • libavfilter/vf_blackdetect.c
    • libavfilter/vf_fade.c
    • libavfilter/vf_lut.c
    • libavfilter/vf_overlay.c
    • libavfilter/vf_tinterlace.c
  3. Change #257380

    Category ffmpeg
    Changed by Andreas Rheinhardt <andreas.rheinhardtohnoyoudont@outlook.com>
    Changed at Tue 10 Feb 2026 19:44:46
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 31173f148ced362edb01c7c885e73def279d0497

    Comments

    avfilter/vf_removelogo: Properly handle allocation error
    Don't rely on av_image_copy_plane() handling a NULL dst
    gracefully.
    
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    Changed files

    • libavfilter/vf_removelogo.c
  4. Change #257381

    Category ffmpeg
    Changed by Andreas Rheinhardt <andreas.rheinhardtohnoyoudont@outlook.com>
    Changed at Tue 10 Feb 2026 19:44:46
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 2273902be8c91fbc8697cf24b6364f9b97d114ce

    Comments

    avfilter/lavfutils: Avoid copying frame in ff_load_image()
    Return the data in an AVFrame instead. This is what several users
    ({find,cover}_rect*) want anyway. This also avoids accessing
    AVFrame.format (an int) via an enum AVPixelFormat*.
    
    *: This commit actually avoids two frame copies For find_rect:
    av_frame_clone() contained an implicit alloc+copy.
    
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    Changed files

    • libavfilter/avf_showcqt.c
    • libavfilter/lavfutils.c
    • libavfilter/lavfutils.h
    • libavfilter/vf_cover_rect.c
    • libavfilter/vf_find_rect.c
    • libavfilter/vf_removelogo.c
  5. Change #257382

    Category ffmpeg
    Changed by Andreas Rheinhardt <andreas.rheinhardtohnoyoudont@outlook.com>
    Changed at Tue 10 Feb 2026 19:44:46
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision fb8a12db17e2c7bb3b6f3618c333fc8364190c3c

    Comments

    avutil/opt: Improve type-safety
    In particular, make this code -fshort-enums compatible.
    The branch can be optimized away by compilers when
    sizeof(enum AVPixelFormat) == sizeof(enum AVSampleFormat).
    
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    Changed files

    • libavutil/opt.c
  6. Change #257383

    Category ffmpeg
    Changed by Andreas Rheinhardt <andreas.rheinhardtohnoyoudont@outlook.com>
    Changed at Tue 10 Feb 2026 19:44:46
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 373c86bac8a37252fc35462b78188219011e1159

    Comments

    swscale/utils: Improve type-safety
    SwsContext.{src,dst}_format is int (but uses enum AVPixelFormat)
    values, so the accesses need to be performed using an int
    for -fshort-enums support.
    
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    Changed files

    • libswscale/utils.c
  7. Change #257384

    Category ffmpeg
    Changed by Andreas Rheinhardt <andreas.rheinhardtohnoyoudont@outlook.com>
    Changed at Tue 10 Feb 2026 19:44:46
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision b08e849af8bc0b5716cb4767eac37ff8c40f3087

    Comments

    avfilter/lavfutils: Avoid AVDictionary
    Set thread_type directly instead.
    
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    Changed files

    • libavfilter/lavfutils.c
  8. Change #257385

    Category ffmpeg
    Changed by Andreas Rheinhardt <andreas.rheinhardtohnoyoudont@outlook.com>
    Changed at Tue 10 Feb 2026 19:44:46
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision f0392c908c8dc9ecf43dc11e0bf22fd9ce917e65

    Comments

    avcodec/flacenc: Use int for AV_OPT_TYPE_INT
    Necessary for -fshort-enums.
    
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    Changed files

    • libavcodec/flacenc.c
  9. Change #257386

    Category ffmpeg
    Changed by Andreas Rheinhardt <andreas.rheinhardtohnoyoudont@outlook.com>
    Changed at Tue 10 Feb 2026 19:44:46
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision f6d89a7bed55278f3729ce6120b45ad9797d57d1

    Comments

    avformat/spdif: Make enum IEC61937DataType at least 16bits
    Fixes the spdif-dca-master FATE-test when compiling with
    -fshort-enums.
    
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    Changed files

    • libavformat/spdif.h