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

Builder ffmpeg-solaris10-sparc Build #12204

Results:

Failed shell_2 shell_3 shell_4 shell_5

SourceStamp:

Projectffmpeg
Repositoryhttps://git.ffmpeg.org/ffmpeg.git
Branchmaster
Revision5b1301004bdade13e3fee22081459e339ddd2637
Got Revision5b1301004bdade13e3fee22081459e339ddd2637
Changes10 changes

BuildSlave:

unstable10s

Reason:

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

Steps and Logfiles:

  1. git update ( 23 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 ( 6 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-unstable10s/slave/ffmpeg-solaris10-sparc slave
buildername ffmpeg-solaris10-sparc Builder
buildnumber 12204 Build
codebase Build
got_revision 5b1301004bdade13e3fee22081459e339ddd2637 Git
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision 5b1301004bdade13e3fee22081459e339ddd2637 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. Michael Niedermayer
  2. Pavel Roslyy
  3. Timothee

Timing:

StartMon Jun 23 17:12:07 2025
EndMon Jun 23 17:12:38 2025
Elapsed31 secs

All Changes:

:

  1. Change #237573

    Category ffmpeg
    Changed by Timothee <timothee.informatiqueohnoyoudont@regaud-chapuy.fr>
    Changed at Mon 23 Jun 2025 13:40:52
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision c94a419e32ea385b7557d516d32824b8f78ff302

    Comments

    avfilter/codecview: Enable QP visualization for H.264
    The codecviewfilter, when used with qp=1, did not display quantization parameter values for H.264 streams because the QP table extraction was restricted to MPEG-2 video.
    
    This patch enables H.264 support by updating ff_qp_table_extractto accept AV_VIDEO_ENC_PARAMS_H264. This allows for correct QP overlay on H.264 video
    
    Signed-off-by: Timothee <timothee.informatique@regaud-chapuy.fr>
    Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>

    Changed files

    • libavfilter/qp_table.c
  2. Change #237574

    Category ffmpeg
    Changed by Pavel Roslyy <roslypavohnoyoudont@gmail.com>
    Changed at Mon 23 Jun 2025 14:28:54
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 983a3b17e45a93c1c3c8edab58b85ddc52e70caa

    Comments

    libavcodec/hcadec: fix header parsing after 'comp' section
    Need to skip 2 more bytes because comp sections are 12 bytes long.
    Fixes decryption since ciph_type is now being set.
    
    Signed-off-by: Pavel Roslyy <roslypav@gmail.com>

    Changed files

    • libavcodec/hcadec.c
  3. Change #237575

    Category ffmpeg
    Changed by Michael Niedermayer <michaelohnoyoudont@niedermayer.cc>
    Changed at Mon 23 Jun 2025 14:28:55
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision c909ef31be96b6983698c3b01c675de8e5f2637a

    Comments

    avcodec/osq: Fix signed integer overflow in update_stats()
    Fixes: negation of -2147483648 cannot be represented in type 'int'; cast to an unsigned type to negate this value to itself
    Fixes: 410109093/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_OSQ_fuzzer-6550900028276736
    
    Note, none of the available osq files uses update_stats(), this change may fix or break
    files using coding_mode == 2. The code prior looks wrong though
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>

    Changed files

    • libavcodec/osq.c
  4. Change #237576

    Category ffmpeg
    Changed by Michael Niedermayer <michaelohnoyoudont@niedermayer.cc>
    Changed at Mon 23 Jun 2025 14:28:55
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision b587afcb65192c4c4bf88422f6565e5355eaf31e

    Comments

    avcodec/osq: Add note about update_stats() count
    It seems this is basically unused and unfinished code
    
    Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>

    Changed files

    • libavcodec/osq.c
  5. Change #237577

    Category ffmpeg
    Changed by Michael Niedermayer <michaelohnoyoudont@niedermayer.cc>
    Changed at Mon 23 Jun 2025 14:28:55
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision a5f861d335491ce2350102b74c7a17f875cad0ed

    Comments

    avcodec/osq: Switch back to av_ceil_log2()
    This returns to code closer to prior 56c334d732dbbce43b0c8fc0809ec545b7946832
    The prior fixes should limit the sum and avoid the need for double argument log2()
    
    Fixes: Assertion n>=0 && n<=32 failed at libavcodec/get_bits.h:406
    Fixes: 410109093/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_OSQ_fuzzer-6550900028276736
    
    No testcases except fuzzers
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>

    Changed files

    • libavcodec/osq.c
  6. Change #237578

    Category ffmpeg
    Changed by Michael Niedermayer <michaelohnoyoudont@niedermayer.cc>
    Changed at Mon 23 Jun 2025 14:28:56
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision f8e30d9eebd25d6ed2db744940f1a6d33534ef7b

    Comments

    avcodec/osq: Request a coding mode 2 sample
    Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>

    Changed files

    • libavcodec/osq.c
  7. Change #237579

    Category ffmpeg
    Changed by Michael Niedermayer <michaelohnoyoudont@niedermayer.cc>
    Changed at Mon 23 Jun 2025 14:36:07
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 6e5f47f6d371c9a6f48768eafffd6c79d2a07e1d

    Comments

    tools/target_dec_fuzzer: Adjust RV60 threshold
    Fixes: Timeout
    Fixes: 410324670/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_RV60_fuzzer-5697706586865664
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>

    Changed files

    • tools/target_dec_fuzzer.c
  8. Change #237580

    Category ffmpeg
    Changed by Michael Niedermayer <michaelohnoyoudont@niedermayer.cc>
    Changed at Mon 23 Jun 2025 14:48:40
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision a8c21a7158fa6d41c332da7ccd203ea4057d4acf

    Comments

    Add FUNDING.json
    We have been contacted by Monet du Plessis of the etherium foundation and
    Natascha Buck (Grants at the Better Internet Foundation)
    
    "The Ethereum Foundation is thrilled to inform you that your contribution to
     open-source software development through your work on ffmpeg
     https://github.com/FFmpeg/FFmpeg  has been recognized and rewarded by the
     Devcon team! Your project played a fundamental role in the success of Devcon
     <http://devcon.org/>, helping to create a more meaningful experience for
     the Ethereum community. In collaboration with Drips Network
     <https://www.drips.network/>, we are pleased to award you $2,240.00 in
     appreciation of your efforts and to support your continued efforts in
     open-source development."
    
    To be able to claim donations through the drips network we need to
    specify a wallet to do so in FUNDING.json
    
    This will also allow FFmpeg to receive future funding and donations
    through the drips network.
    
    The specified wallet is a safe wallet backed by a ledger hw wallet.
    We can later change who controls the safe wallet. (For example it
    could be passed on to the SPI treasurer)
    
    Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>

    Changed files

    • FUNDING.json
  9. Change #237581

    Category ffmpeg
    Changed by Michael Niedermayer <michaelohnoyoudont@niedermayer.cc>
    Changed at Mon 23 Jun 2025 16:29:34
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision f06474faf87bd7f4b2e46527d17439f3467cf423

    Comments

    tools/target_dec_fuzzer: adjust threshold for VP8
    Fixes: Timeout
    Fixes: 416589179/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_VP8_fuzzer-5432788428062720
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>

    Changed files

    • tools/target_dec_fuzzer.c
  10. Change #237582

    Category ffmpeg
    Changed by Michael Niedermayer <michaelohnoyoudont@niedermayer.cc>
    Changed at Mon 23 Jun 2025 16:31:58
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 5b1301004bdade13e3fee22081459e339ddd2637

    Comments

    avformat/iff: Check nb_channels == 0 in CHNL
    Fixes: division by 0
    Fixes: 418396712/clusterfuzz-testcase-minimized-ffmpeg_dem_IFF_fuzzer-6104388018176000
    Fixes: 418478219/clusterfuzz-testcase-minimized-ffmpeg_dem_IFF_fuzzer-4569544410857472
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Reviewed-by: Peter Ross <pross@xvid.org>
    Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>

    Changed files

    • libavformat/iff.c