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

Builder ffmpeg-solaris10-sparc Build #10944

Results:

Failed shell_2 shell_3 shell_4 shell_5

SourceStamp:

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

BuildSlave:

unstable10s

Reason:

The SingleBranchScheduler scheduler named 'schedule-ffmpeg-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 ( 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 10944 Build
codebase Build
got_revision d1b96c380826c505a8c7e655b5ad4fdb0c2de167 Git
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision d1b96c380826c505a8c7e655b5ad4fdb0c2de167 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. llyyr

Timing:

StartWed May 22 04:02:52 2024
EndWed May 22 04:03:09 2024
Elapsed17 secs

All Changes:

:

  1. Change #197969

    Category ffmpeg
    Changed by llyyr <llyyr.publicohnoyoudont@gmail.com>
    Changed at Wed 22 May 2024 03:57:44
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision d1b96c380826c505a8c7e655b5ad4fdb0c2de167

    Comments

    avformat/mov: avoid seeking back to 0 on HEVC open GOP files
    ab77b878f1 attempted to fix the issue of broken packets being sent to
    the decoder by implementing logic that kept attempting to PTS-step
    backwards until it reached a valid point, however applying this
    heuristic meant that in files that had no valid points (such as HEVC
    videos shot on iPhones), we'd seek back to sample 0 on every seek
    attempt. This meant that files that were previously seekable, albeit
    with some skipped frames, were not seekable at all now.
    
    Relax this heuristic a bit by giving up on seeking to a valid point if
    we've tried a different sample and we still don't have a valid point to
    seek to. This may some frames to be skipped on seeking but it's better
    than not being able to seek at all in such files.
    
    Fixes: ab77b878f1 ("avformat/mov: fix seeking with HEVC open GOP files")
    Fixes: #10585
    Signed-off-by: Philip Langdale <philipl@overt.org>

    Changed files

    • libavformat/mov.c