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

Builder ffmpeg-solaris10-i386 Build #13701

Results:

Failed shell_2 shell_3 shell_4 shell_5

SourceStamp:

Projectffmpeg
Repositoryhttps://git.ffmpeg.org/ffmpeg.git
Branchmaster
Revision739fc9249cf1587a3f5f50c16216272d9991a099
Got Revision739fc9249cf1587a3f5f50c16216272d9991a099
Changes12 changes

BuildSlave:

unstable10x

Reason:

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

Steps and Logfiles:

  1. git update ( 8 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 ( 8 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 ( 0 secs )
    1. stdio
    2. configure.log
    3. compile.log
    4. test.log

Build Properties:

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

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Leo Izen

Timing:

StartFri May 1 14:23:01 2026
EndFri May 1 14:23:20 2026
Elapsed18 secs

All Changes:

:

  1. Change #266071

    Category ffmpeg
    Changed by Leo Izen <leo.izenohnoyoudont@gmail.com>
    Changed at Fri 01 May 2026 13:40:18
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 600a8a5a9c910dd3e88694fd8de60e61643348fb

    Comments

    avutil/frame.h: fix AV_EXIF_SIDE_DATA declaration
    This commit re-aligns the declaration by removing extra whitespace
    and fixes the comment above to have the correct acronym. It also
    documents what the four magic bytes indicate.
    
    Signed-off-by: Leo Izen <leo.izen@gmail.com>

    Changed files

    • libavutil/frame.h
  2. Change #266072

    Category ffmpeg
    Changed by Leo Izen <leo.izenohnoyoudont@gmail.com>
    Changed at Fri 01 May 2026 13:40:24
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 28e64cad6fd3050a97eecca90915b7aaf31e443c

    Comments

    avutil/frame.h: re-align dynamic HDR frame data declaration
    This is aligned forward by an extra space, because it inheried the
    incorrect alignment from the EXIF declaration above it (fixed in the
    previous commit).
    
    Signed-off-by: Leo Izen <leo.izen@gmail.com>

    Changed files

    • libavutil/frame.h
  3. Change #266073

    Category ffmpeg
    Changed by Leo Izen <leo.izenohnoyoudont@gmail.com>
    Changed at Fri 01 May 2026 13:40:24
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 0c39b1bccd1298df0f8ff87e2017af7d206dbecd

    Comments

    avcodec/exif.h: fix documentation on av_exif_get_entry and similar
    Add additional documentation to av_exif_get_entry and also to
    av_exif_set_entry that was already part of the existing ABI but was
    insufficiently documented before this commit. Also clarifies that
    av_fast_realloc is used, instead of av_realloc on av_exif_set_entry.
    
    Signed-off-by: Leo Izen <leo.izen@gmail.com>

    Changed files

    • libavcodec/exif.h
  4. Change #266074

    Category ffmpeg
    Changed by Leo Izen <leo.izenohnoyoudont@gmail.com>
    Changed at Fri 01 May 2026 13:40:24
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 2cddfe7d0c101ed30edafb5d4ef8c0efde61559b

    Comments

    avcodec/exif.c: pop entry off IFD if allocation fails
    In av_exif_set_entry, if cloning the entry fails because of an alloc
    failed, then we remove the entry from the IFD. If that entry exists
    in the middle of ifd->entries we need to shift everything to the left
    which this commit implements.
    
    Signed-off-by: Leo Izen <leo.izen@gmail.com>

    Changed files

    • libavcodec/exif.c
  5. Change #266075

    Category ffmpeg
    Changed by Leo Izen <leo.izenohnoyoudont@gmail.com>
    Changed at Fri 01 May 2026 13:40:24
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 4f5dfce5a866caa95ab2dec03d236ee3dfe7a1ed

    Comments

    avcodec/exif.c: use less than or equal for max width and height
    The max width and height for PIXEL_X_TAG and PIXEL_Y_TAG is 0xFFFFu
    because these are unsigned shorts, but we used < instead of <=
    erroneously. Fix that.
    
    Signed-off-by: Leo Izen <leo.izen@gmail.com>

    Changed files

    • libavcodec/exif.c
  6. Change #266076

    Category ffmpeg
    Changed by Leo Izen <leo.izenohnoyoudont@gmail.com>
    Changed at Fri 01 May 2026 13:40:24
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 317d660281c14707269a7985b45bdd4e45164a7f

    Comments

    avcodec/exif.c: account for header_mode difference on rewrite
    When determining if we need to rewrite the exif buffer or can pass
    through as-is, account for a difference in header_mode requested from
    the one that is used internally.
    
    Signed-off-by: Leo Izen <leo.izen@gmail.com>

    Changed files

    • libavcodec/exif.c
  7. Change #266077

    Category ffmpeg
    Changed by Leo Izen <leo.izenohnoyoudont@gmail.com>
    Changed at Fri 01 May 2026 13:40:24
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 326808ad2f5b1ef784ee8d16042dd3b1d97d79aa

    Comments

    avcodec/exif.c: add check for singular displaymatrix data
    If av_exif_matrix_to_orientation returns 0, then the display matrix
    is singular. In this case we should treat it as 1 and print a warning.
    
    Signed-off-by: Leo Izen <leo.izen@gmail.com>

    Changed files

    • libavcodec/exif.c
  8. Change #266078

    Category ffmpeg
    Changed by Leo Izen <leo.izenohnoyoudont@gmail.com>
    Changed at Fri 01 May 2026 13:40:24
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 1d36c4d8ae11242b4b090f6381841545000ff8de

    Comments

    avcodec/exif.c: reset ifd->size when freeing ifd->entries
    If we free ifd->entries then we need to set ifd->size to 0 so another
    call to av_fast_realloc doesn't get confused.
    
    Signed-off-by: Leo Izen <leo.izen@gmail.com>

    Changed files

    • libavcodec/exif.c
  9. Change #266079

    Category ffmpeg
    Changed by Leo Izen <leo.izenohnoyoudont@gmail.com>
    Changed at Fri 01 May 2026 13:40:25
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 087ec684517b5d75425c6283c66a5dc8df9501d1

    Comments

    avcodec/exif.c: synthesize EXIF data from frame metadata and matrix
    If the displaymatrix is present, we should synthesize EXIF data from
    the values there even if there is no EXIF attached to the frame.
    
    Signed-off-by: Leo Izen <leo.izen@gmail.com>

    Changed files

    • libavcodec/exif.c
  10. Change #266080

    Category ffmpeg
    Changed by Leo Izen <leo.izenohnoyoudont@gmail.com>
    Changed at Fri 01 May 2026 13:40:25
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision f1cab2d0184fb8b53811525299cb1ff9848ff4e6

    Comments

    avcodec/exif_internal.h: improve return docs for ff_exif_get_buffer
    This commit improves the documentation for the return value of the
    function ff_exif_get_buffer.
    
    Signed-off-by: Leo Izen <leo.izen@gmail.com>

    Changed files

    • libavcodec/exif_internal.h
  11. Change #266081

    Category ffmpeg
    Changed by Leo Izen <leo.izenohnoyoudont@gmail.com>
    Changed at Fri 01 May 2026 13:40:25
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 05b5add00624bba6bbd07aff8ae9a8dfcd8cd2f9

    Comments

    avcodec/libjxlenc: check orientation tag metadata before reading
    We need to check that entry->count is nonzero and that entry->type is
    AV_TIFF_SHORT before reading from the buffer, in case a maliciously
    constructed IFD uses a zero-count or an unusual type (e.g. IFD) for it.
    
    Signed-off-by: Leo Izen <leo.izen@gmail.com>

    Changed files

    • libavcodec/libjxlenc.c
  12. Change #266082

    Category ffmpeg
    Changed by Leo Izen <leo.izenohnoyoudont@gmail.com>
    Changed at Fri 01 May 2026 13:40:25
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 739fc9249cf1587a3f5f50c16216272d9991a099

    Comments

    avcodec/libjxlenc: fix frame->linesize raw pointer read
    These should say frame->linesize[0] as it does everywhere else this
    variable is referenced. Fixes a typo bug.
    
    Signed-off-by: Leo Izen <leo.izen@gmail.com>

    Changed files

    • libavcodec/libjxlenc.c