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

Builder ffmpeg-solaris10-sparc Build #12230

Results:

Failed shell_2 shell_3 shell_4 shell_5

SourceStamp:

Projectffmpeg
Repositoryhttps://git.ffmpeg.org/ffmpeg.git
Branchmaster
Revision2db60f90dfcdfef308b80846dcd7779aaf3b2983
Got Revision2db60f90dfcdfef308b80846dcd7779aaf3b2983
Changes6 changes

BuildSlave:

unstable10s

Reason:

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

Steps and Logfiles:

  1. git update ( 1 mins, 1 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 ( 1 secs )
    1. stdio
  5. shell_3 './configure --samples="../../../ffmpeg/fate-suite" ...' failed ( 37 secs )
    1. stdio
    2. config.log
  6. shell_4 'gmake fate-rsync' failed ( 1 secs )
    1. stdio
  7. shell_5 '../../../ffmpeg/fate.sh ../../../ffmpeg/fate_config.sh' failed ( 3 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 12230 Build
codebase Build
got_revision 2db60f90dfcdfef308b80846dcd7779aaf3b2983 Git
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision 2db60f90dfcdfef308b80846dcd7779aaf3b2983 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:

StartThu Jul 3 18:55:46 2025
EndThu Jul 3 18:57:33 2025
Elapsed1 mins, 47 secs

All Changes:

:

  1. Change #238199

    Category ffmpeg
    Changed by Andreas Rheinhardt <andreas.rheinhardtohnoyoudont@outlook.com>
    Changed at Thu 03 Jul 2025 18:17:56
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 7574c5576138894f892360ee49e8014752977fcd

    Comments

    avcodec/indeo3: Fix UB pointer arithmetic
    Fixes the following error when running with Clang-UBSan:
    src/libavcodec/indeo3.c:556:26: runtime error: applying non-zero offset 2560 to null pointer
    This fixes the indeo3-2 FATE test.
    
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    Changed files

    • libavcodec/indeo3.c
  2. Change #238200

    Category ffmpeg
    Changed by Andreas Rheinhardt <andreas.rheinhardtohnoyoudont@outlook.com>
    Changed at Thu 03 Jul 2025 18:17:56
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 41d86b5be5f3d120ca8e350295c7f19e02b1e0ce

    Comments

    avcodec/indeo3: Consistently use ptrdiff_t for strides
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    Changed files

    • libavcodec/indeo3.c
  3. Change #238201

    Category ffmpeg
    Changed by Andreas Rheinhardt <andreas.rheinhardtohnoyoudont@outlook.com>
    Changed at Thu 03 Jul 2025 18:17:56
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 134c1d81a43f585733506060eac83b0c2817861f

    Comments

    avcodec/indeo3: Constify ref_block in decode_cell_data()
    Also use smaller scope while just at it.
    
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    Changed files

    • libavcodec/indeo3.c
  4. Change #238202

    Category ffmpeg
    Changed by Andreas Rheinhardt <andreas.rheinhardtohnoyoudont@outlook.com>
    Changed at Thu 03 Jul 2025 18:17:56
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision bdb4cd44e24c69ca8a0ad1cd8b3772c43a225e7f

    Comments

    avcodec/ffv1enc: Use dummies to avoid UB pointer arithmetic
    Fixes the following FATE-tests when run under Clang-UBSan:
    ffmpeg-loopback-decoding, lavf-mxf_ffv1,
    vsynth{1,2,3,_lena}-ffv1-v{0,2}, vsynth1-ffv{1,2,3,_lena},
    vsynth{1,2,3,_lena}-ffv1-v3-yuv{420p,422p10,444p16}
    
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    Changed files

    • libavcodec/ffv1enc.c
    • libavcodec/ffv1enc_template.c
  5. Change #238203

    Category ffmpeg
    Changed by Andreas Rheinhardt <andreas.rheinhardtohnoyoudont@outlook.com>
    Changed at Thu 03 Jul 2025 18:17:56
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 589f1e5cc7286e76f196d27fb55dec94e83ff3ab

    Comments

    swresample/rematrix: Use correct function pointer types for calls
    Calling a function via a different function pointer type is
    undefined behavior (C11, 6.3.2.3 8); two pointer parameters
    of different type are not equivalent in this regard, although
    it happens to work in practice; the current code relies on this.
    
    This patch brings the code in line with the spec. This fixes the
    following FATE-tests when run with Clang-UBSan:
    ac3-fixed-encode-2 audiomatch-afconvert-{16000,44100}-mono-he-{adts,m4a}
    audiomatch-dolby-44100-mono-he-mp4 filter-metadata-avf-aphase-meter-mono
    filter-pan-{downmix1,downmix2,mono2,stereo2,stereo3,stereo4,upmix1,upmix2}
    lavf-dv_{pal,ntsc} matroska-encoding-delay
    The error was something like
    src/libswresample/rematrix.c:621:17: runtime error: call to function sum2_float through pointer to incorrect function type 'void (*)(void *, const void *, const void *, void *, int, int, int)
    
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    Changed files

    • libswresample/rematrix.c
    • libswresample/rematrix_template.c
  6. Change #238204

    Category ffmpeg
    Changed by Andreas Rheinhardt <andreas.rheinhardtohnoyoudont@outlook.com>
    Changed at Thu 03 Jul 2025 18:17:56
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 2db60f90dfcdfef308b80846dcd7779aaf3b2983

    Comments

    swresample/rematrix: Constify
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    Changed files

    • libswresample/rematrix.c
    • libswresample/rematrix_template.c
    • libswresample/swresample_internal.h