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

Builder ffmpeg64-solaris10-i386 Build #14081

Results:

Failed

SourceStamp:

Projectffmpeg
Repositoryhttps://git.ffmpeg.org/ffmpeg.git
Branchmaster
Revisionef533ef3a3ea063eb72edbf510d006684f260f7f
Changes2 changes

BuildSlave:

unstable10x

Reason:

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

Steps and Logfiles:

  1. git updating ( 14 secs )
    1. stdio
  2. shell  
    1. - no logs -
  3. shell_1  
    1. - no logs -
  4. shell_2  
    1. - no logs -
  5. shell_3  
    1. - no logs -
  6. shell_4  
    1. - no logs -
  7. shell_5  
    1. - no logs -

Build Properties:

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

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Wu Jianhua

Timing:

StartSun Sep 6 21:18:44 2026
EndSun Sep 6 21:18:58 2026
Elapsed14 secs

All Changes:

:

  1. Change #280929

    Category ffmpeg
    Changed by Wu Jianhua <toqsxwohnoyoudont@outlook.com>
    Changed at Sun 06 Sep 2026 22:55:01
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision c877e20d7eff95da614ee4149c0209847c44befc

    Comments

    avcodec/cbs_h266_syntax_template: fix ph_recovery_poc_cnt range
    Signed-off-by: Wu Jianhua <toqsxw@outlook.com>

    Changed files

    • libavcodec/cbs_h266_syntax_template.c
  2. Change #280930

    Category ffmpeg
    Changed by Wu Jianhua <toqsxwohnoyoudont@outlook.com>
    Changed at Sun 06 Sep 2026 22:55:01
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision ef533ef3a3ea063eb72edbf510d006684f260f7f

    Comments

    avcodec/vvc/ps: allow out-of-range ph_recovery_poc_cnt in non-strict mode
    The GDR stream in ticket #24265 carries ph_recovery_poc_cnt equal to
    128 even though MaxPicOrderCntLsb is 16. H.266 7.4.3.8 requires the
    value to be in the range [0, MaxPicOrderCntLsb - 1].
    
    CBS currently rejects it before the decoder can proceed. The former
    CBS upper bound also admitted MaxPicOrderCntLsb itself. The syntax
    element does not affect entropy decoding, however, so treating it as a
    fatal error in normal operation prevents decoding a stream beyond this
    non-conforming value.
    
    Store the raw ue(v) value as uint32_t and defer the conformance check
    until the recovery POC is derived. In non-strict mode, accept values
    whose derived POC is representable as an int and emit a warning. In
    strict mode, reject values above MaxPicOrderCntLsb - 1.
    
    Fixes #24265.
    
    Signed-off-by: Wu Jianhua <toqsxw@outlook.com>

    Changed files

    • libavcodec/cbs_h266.h
    • libavcodec/cbs_h266_syntax_template.c
    • libavcodec/vvc/ps.c