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

Builder ffmpegsos-solaris10-sparc Build #12614

Results:

Failed shell_2 shell_3 shell_4 shell_5

SourceStamp:

Projectffmpeg
Repositoryhttps://git.ffmpeg.org/ffmpeg.git
Branchmaster
Revision13c91c97d12a28750f572c87cf13934456845df1
Got Revision13c91c97d12a28750f572c87cf13934456845df1
Changes1 change

BuildSlave:

unstable10s

Reason:

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

Steps and Logfiles:

  1. git update ( 10 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 ( 7 secs )
    1. stdio
    2. config.log
  6. shell_4 'gmake fate-rsync' failed ( 2 secs )
    1. stdio
  7. shell_5 '../../../ffmpeg/fate.sh ../../../ffmpeg/fate_config_sos.sh' failed ( 1 secs )
    1. stdio
    2. configure.log
    3. compile.log
    4. test.log

Build Properties:

NameValueSource
branch master Build
builddir /export/home/buildbot-unstable10s/slave/ffmpegsos-solaris10-sparc slave
buildername ffmpegsos-solaris10-sparc Builder
buildnumber 12614 Build
codebase Build
got_revision 13c91c97d12a28750f572c87cf13934456845df1 Git
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision 13c91c97d12a28750f572c87cf13934456845df1 Build
scheduler schedule-ffmpegsos-solaris10-sparc Scheduler
slavename unstable10s BuildSlave
workdir /export/home/buildbot-unstable10s/slave/ffmpegsos-solaris10-sparc slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Jack Lau

Timing:

StartWed Dec 24 03:51:28 2025
EndWed Dec 24 03:51:51 2025
Elapsed22 secs

All Changes:

:

  1. Change #253179

    Category ffmpeg
    Changed by Jack Lau <jacklau1222gmohnoyoudont@gmail.com>
    Changed at Wed 24 Dec 2025 03:43:50
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 13c91c97d12a28750f572c87cf13934456845df1

    Comments

    avcodec/libjxldec: goto SUCCESS when frame is completed
    Fix #21260
    
    The early code didn't reset the JxlDecoder. If the
    caller re-send the same packet to JxlDecoder after
    avcodec_flush_buffers() (free ctx->frame). It will
    directly hit SUCCESS event (skip all EVENTs).
    
    In this case, the ctx->frame already flushed by
    avcodec_flush_buffers, so the received frame
    will be invalid (has no private_ref) that causes
    assertion in decode_receive_frame_internal().
    
    MPV meet this issue because it seek the jxl image
    (second read the same pkt) when it does crop
    through config `C vf toggle crop=in_w:in_w/2.4`.
    
    This patch make sure hit the entire SUCCESS event
    (contains reset the JxlDecoder) when frame_complete
    is true.
    
    Signed-off-by: Jack Lau <jacklau1222gm@gmail.com>

    Changed files

    • libavcodec/libjxldec.c