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

Builder ffmpeg-solaris10-i386 Build #13645

Results:

Failed shell_2 shell_3 shell_4 shell_5

SourceStamp:

Projectffmpeg
Repositoryhttps://git.ffmpeg.org/ffmpeg.git
Branchmaster
Revision5e69e6d49c95ebe8e31849b28cea16894fd23e2e
Got Revision5e69e6d49c95ebe8e31849b28cea16894fd23e2e
Changes5 changes

BuildSlave:

unstable10x

Reason:

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

Steps and Logfiles:

  1. git update ( 5 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 ( 9 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 13645 Build
codebase Build
got_revision 5e69e6d49c95ebe8e31849b28cea16894fd23e2e Git
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision 5e69e6d49c95ebe8e31849b28cea16894fd23e2e 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. Andreas Rheinhardt

Timing:

StartMon Apr 20 13:29:51 2026
EndMon Apr 20 13:30:08 2026
Elapsed16 secs

All Changes:

:

  1. Change #265031

    Category ffmpeg
    Changed by Andreas Rheinhardt <andreas.rheinhardtohnoyoudont@outlook.com>
    Changed at Mon 20 Apr 2026 12:54:31
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision c94cb9c04f0a79526ec609213908be7df00d842a

    Comments

    avcodec/pdvenc: Remove always-false pixel format check
    Already checked via CODEC_PIXFMTS.
    
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    Changed files

    • libavcodec/pdvenc.c
  2. Change #265032

    Category ffmpeg
    Changed by Andreas Rheinhardt <andreas.rheinhardtohnoyoudont@outlook.com>
    Changed at Mon 20 Apr 2026 12:54:31
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 87a6be19f8ea8e9e311865048f918a9e3313a4a0

    Comments

    avcodec/pdvenc: Remove always false check
    av_image_check_size() already checks that width*height
    fits into an int.
    
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    Changed files

    • libavcodec/pdvenc.c
  3. Change #265033

    Category ffmpeg
    Changed by Andreas Rheinhardt <andreas.rheinhardtohnoyoudont@outlook.com>
    Changed at Mon 20 Apr 2026 12:54:31
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 6135ccbf80386083b89c3f1c194ee7482020f6ee

    Comments

    avcodec/pdvenc: Return directly upon error
    This encoder has the FF_CODEC_CAP_INIT_CLEANUP cap set.
    
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    Changed files

    • libavcodec/pdvenc.c
  4. Change #265034

    Category ffmpeg
    Changed by Andreas Rheinhardt <andreas.rheinhardtohnoyoudont@outlook.com>
    Changed at Mon 20 Apr 2026 12:54:31
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 2b8438a495fed569b366b6ba40b611bc6b5d0739

    Comments

    avformat/pdvenc: Remove always-false checks
    The number of streams is always one (namely one video stream
    with codec id AV_CODEC_ID_PDV) due to the MAX_ONE_OF_EACH,
    ONLY_DEFAULT_CODECS flags. Also, the generic code (init_muxer()
    in mux.c) checks that video streams have proper dimensions set.
    
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    Changed files

    • libavformat/pdvenc.c
  5. Change #265035

    Category ffmpeg
    Changed by Andreas Rheinhardt <andreas.rheinhardtohnoyoudont@outlook.com>
    Changed at Mon 20 Apr 2026 12:54:31
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 5e69e6d49c95ebe8e31849b28cea16894fd23e2e

    Comments

    avformat/pdvenc: Don't silently truncate value
    This muxer seems to intend to support output that does
    not begin at zero (instead of e.g. just hardcoding
    nb_frames_pos to 16). But then it is possible
    that avio_seek() returns values > INT_MAX even
    though the part of the file written by us can not
    exceed this value. So the return value of avio_seek()
    needs to be checked as 64bit integer and not silently
    truncated to int.
    
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    Changed files

    • libavformat/pdvenc.c