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

Builder ffmpeg64-solaris10-sparc Build #13971

Results:

Failed shell_2 shell_3 shell_4 shell_5

SourceStamp:

Projectffmpeg
Repositoryhttps://git.ffmpeg.org/ffmpeg.git
Branchmaster
Revision2985d4297883bf7599c0f96f103e7f5a924ce467
Got Revision2985d4297883bf7599c0f96f103e7f5a924ce467
Changes5 changes

BuildSlave:

unstable10s

Reason:

The SingleBranchScheduler scheduler named 'schedule-ffmpeg64-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 ( 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_64.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/ffmpeg64-solaris10-sparc slave
buildername ffmpeg64-solaris10-sparc Builder
buildnumber 13971 Build
codebase Build
got_revision 2985d4297883bf7599c0f96f103e7f5a924ce467 Git
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision 2985d4297883bf7599c0f96f103e7f5a924ce467 Build
scheduler schedule-ffmpeg64-solaris10-sparc Scheduler
slavename unstable10s BuildSlave
workdir /export/home/buildbot-unstable10s/slave/ffmpeg64-solaris10-sparc slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. James Almer
  2. marcos ashton

Timing:

StartWed Jun 24 01:44:31 2026
EndWed Jun 24 01:44:51 2026
Elapsed20 secs

All Changes:

:

  1. Change #272413

    Category ffmpeg
    Changed by James Almer <jamrialohnoyoudont@gmail.com>
    Changed at Wed 24 Jun 2026 01:07:25
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 0559f92adc8238df9f1d7dc2a4d48df3b01b09ef

    Comments

    avformat/movenc: don't derive tmcd track durations if they were copied
    This behavior only applies to tracks created by the muxer.
    
    Signed-off-by: James Almer <jamrial@gmail.com>

    Changed files

    • libavformat/movenc.c
    • tests/ref/fate/copy-trac236
  2. Change #272414

    Category ffmpeg
    Changed by James Almer <jamrialohnoyoudont@gmail.com>
    Changed at Wed 24 Jun 2026 01:07:25
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 661dd0ffd5c90ff5c72edd83f65cee02e62a19a2

    Comments

    avformat/movenc: use track timescale when making up a tmcd track pts
    Signed-off-by: James Almer <jamrial@gmail.com>

    Changed files

    • libavformat/movenc.c
  3. Change #272415

    Category ffmpeg
    Changed by James Almer <jamrialohnoyoudont@gmail.com>
    Changed at Wed 24 Jun 2026 01:07:25
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 579edeabecc4d645d52f7a92d99fb5c66ecf696d

    Comments

    avformat/movenc: look for remainder samples in packet side data
    Sometimes the duration itself reflects the remainder samples by being set to a
    value lower than the frame size, but in other cases it's done only through
    a discard padding value in side data.
    Take the latter into account when calculating durations.
    
    Fixes issue #23532.
    
    Signed-off-by: James Almer <jamrial@gmail.com>

    Changed files

    • libavformat/movenc.c
    • tests/ref/fate/filter-meta-4560-rotate0
    • tests/ref/fate/hevc-bsf-dts2pts-cra
    • tests/ref/fate/hevc-bsf-dts2pts-idr
    • tests/ref/fate/hevc-bsf-dts2pts-idr-cra
    • tests/ref/fate/mov-cover-image
  4. Change #272416

    Category ffmpeg
    Changed by James Almer <jamrialohnoyoudont@gmail.com>
    Changed at Wed 24 Jun 2026 01:07:25
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision b0919b271be75bc44b4bcfc22c4824edd1d43958

    Comments

    tests/fate/mov: add a test for remainder sample calculation
    Signed-off-by: James Almer <jamrial@gmail.com>

    Changed files

    • tests/fate/mov.mak
    • tests/ref/fate/mov-mp4-edst-remainder
  5. Change #272417

    Category ffmpeg
    Changed by marcos ashton <marcosashiglesiasohnoyoudont@gmail.com>
    Changed at Wed 24 Jun 2026 01:42:38
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 2985d4297883bf7599c0f96f103e7f5a924ce467

    Comments

    libavutil/pixdesc: fix prefix matching in *_from_name() functions
    The seven *_from_name() functions in pixdesc.c (color_range,
    color_primaries, color_transfer, color_space, chroma_location,
    alpha_mode) used av_strstart() for prefix matching, which returns
    incorrect results when one name is a prefix of another.
    
    av_color_space_from_name("ycgco-re") matched "ycgco" at index
    AVCOL_SPC_YCGCO and returned 8 instead of AVCOL_SPC_YCGCO_RE.
    av_color_space_from_name("ycgco-ro") had the same issue. The
    *_ext name lookups inside av_color_primaries_from_name and
    av_color_transfer_from_name had the same flaw.
    
    Switch all eight call sites from av_strstart() to strcmp() for
    exact matching. No in-tree callers rely on prefix matching.
    
    Signed-off-by: marcos ashton <marcosashiglesias@gmail.com>

    Changed files

    • libavutil/pixdesc.c