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

Builder ffmpeg-solaris10-sparc Build #11492

Results:

Failed shell_2 shell_3 shell_4 shell_5

SourceStamp:

Projectffmpeg
Repositoryhttps://git.ffmpeg.org/ffmpeg.git
Branchmaster
Revisiona144e7b92e235e2af00bf456d745d3de825f0978
Got Revisiona144e7b92e235e2af00bf456d745d3de825f0978
Changes4 changes

BuildSlave:

unstable10s

Reason:

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

Steps and Logfiles:

  1. git update ( 7 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 ( 2 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 11492 Build
codebase Build
got_revision a144e7b92e235e2af00bf456d745d3de825f0978 Git
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision a144e7b92e235e2af00bf456d745d3de825f0978 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. Nuo Mi

Timing:

StartWed Oct 16 14:48:48 2024
EndWed Oct 16 14:49:08 2024
Elapsed19 secs

All Changes:

:

  1. Change #211846

    Category ffmpeg
    Changed by Nuo Mi <nuomi2021ohnoyoudont@gmail.com>
    Changed at Wed 16 Oct 2024 14:28:09
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 634780f3cf7298401366c41e738ad728d26fee47

    Comments

    avcodec/vvcdec: refact out deblock boundary strength stage
    The deblock boundary strength stage utilizes ~5% of CPU resources for 8K clips.
    It's worth considering it as a standalone stage. This stage has been relocated
    to follow the parser process, allowing us to reuse CUs and TUs before releasing them.

    Changed files

    • libavcodec/vvc/filter.c
    • libavcodec/vvc/filter.h
    • libavcodec/vvc/thread.c
  2. Change #211847

    Category ffmpeg
    Changed by Nuo Mi <nuomi2021ohnoyoudont@gmail.com>
    Changed at Wed 16 Oct 2024 14:28:09
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision d78b43ecf83feaa1f1fe24c7a4fb4850f9ede7da

    Comments

    avcodec/vvcdec: misc, move pcmf from min_tu_tl_init to min_cb_nz_tl_init
    pcmf are cu level flags

    Changed files

    • libavcodec/vvc/ctu.c
    • libavcodec/vvc/dec.c
    • libavcodec/vvc/filter.c
  3. Change #211848

    Category ffmpeg
    Changed by Nuo Mi <nuomi2021ohnoyoudont@gmail.com>
    Changed at Wed 16 Oct 2024 14:28:09
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 2e936f2c117270986579dee4358d3c802b48daf3

    Comments

    avcodec/vvdec: refact, ff_vvc_deblock_bs use CodingUnit/TransformUnit instead of fc->tabs
    perf result for:
    "perf record -F 99 ./ffmpeg_g -i  Tango2_3840x2160_60_10_420_27_LD.266 -f null -"
    
    before: 5.24%
    1.87%  ffmpeg_g  [.] vvc_deblock_bs_chroma
    1.72%  ffmpeg_g  [.] ff_vvc_deblock_bs
    1.65%  ffmpeg_g  [.] vvc_deblock_bs_luma
    
    after: 3.48%
    1.84%  ffmpeg_g  [.] vvc_deblock_bs_chroma
    1.64%  ffmpeg_g  [.] ff_vvc_deblock_bs + vvc_deblock_bs_luma(inlined)

    Changed files

    • libavcodec/vvc/ctu.c
    • libavcodec/vvc/ctu.h
    • libavcodec/vvc/filter.c
  4. Change #211849

    Category ffmpeg
    Changed by Nuo Mi <nuomi2021ohnoyoudont@gmail.com>
    Changed at Wed 16 Oct 2024 14:28:09
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision a144e7b92e235e2af00bf456d745d3de825f0978

    Comments

    avcodec/vvcdec: remove unused tb_pos_x0 and tb_pos_y0
    This change will save approximately 531 MB for an 8K clip when processed with 16 threads.
    The calculation is as follows:
    7680 * 4320 * sizeof(int) * 2 * 2 * 16 / (4 * 4).

    Changed files

    • libavcodec/vvc/ctu.c
    • libavcodec/vvc/dec.c
    • libavcodec/vvc/dec.h