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

Builder ffmpeg64-solaris10-i386 Build #13982

Results:

Failed shell_2 shell_3 shell_4 shell_5

SourceStamp:

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

BuildSlave:

unstable10x

Reason:

The SingleBranchScheduler scheduler named 'schedule-ffmpeg64-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 ( 7 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_64.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/ffmpeg64-solaris10-i386 slave
buildername ffmpeg64-solaris10-i386 Builder
buildnumber 13982 Build
codebase Build
got_revision d69e8d0a955c0248052619b9c05fa3dc7ce49986 Git
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision d69e8d0a955c0248052619b9c05fa3dc7ce49986 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. Bogdan Lisman

Timing:

StartTue Jun 16 18:09:18 2026
EndTue Jun 16 18:09:33 2026
Elapsed14 secs

All Changes:

:

  1. Change #271343

    Category ffmpeg
    Changed by Bogdan Lisman <bogdanohnoyoudont@pydevsolutions.com>
    Changed at Tue 16 Jun 2026 17:59:52
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision d69e8d0a955c0248052619b9c05fa3dc7ce49986

    Comments

    avcodec/decode: reset PTS correction counters in ff_decode_flush_buffers
    pts_correction_num_faulty_pts and pts_correction_num_faulty_dts were not
    cleared by ff_decode_flush_buffers(), so they survived avcodec_flush_buffers().
    After a seek, guess_correct_pts() therefore kept biasing its reordered-pts vs
    dts choice on pre-seek history instead of starting fresh as it does after
    ff_decode_preinit(), which already zeroes both counters. This could yield an
    incorrect AVFrame.best_effort_timestamp on the frames following a seek.
    
    Reset both counters on flush, next to the existing last_pts/last_dts reset, so
    the decoder's timestamp-correction state is fully reinitialized.
    
    Fixes: ticket #11645
    Reported-by: keks51
    Signed-off-by: Bogdan Lisman <bogdan@pydevsolutions.com>

    Changed files

    • libavcodec/decode.c