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

Builder ffmpegsos-solaris10-i386 Build #13698

Results:

Failed shell_2 shell_3 shell_4 shell_5

SourceStamp:

Projectffmpeg
Repositoryhttps://git.ffmpeg.org/ffmpeg.git
Branchmaster
Revision056562a5ff64e79ad40b141ded3f644811e812f6
Got Revision056562a5ff64e79ad40b141ded3f644811e812f6
Changes3 changes

BuildSlave:

unstable10x

Reason:

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

Steps and Logfiles:

  1. git update ( 8 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 ( 8 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_sos.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/ffmpegsos-solaris10-i386 slave
buildername ffmpegsos-solaris10-i386 Builder
buildnumber 13698 Build
codebase Build
got_revision 056562a5ff64e79ad40b141ded3f644811e812f6 Git
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision 056562a5ff64e79ad40b141ded3f644811e812f6 Build
scheduler schedule-ffmpegsos-solaris10-i386 Scheduler
slavename unstable10x BuildSlave
workdir /export/home/buildbot/slave/ffmpegsos-solaris10-i386 slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Priyanshu Thapliyal

Timing:

StartThu Apr 9 05:07:35 2026
EndThu Apr 9 05:07:53 2026
Elapsed18 secs

All Changes:

:

  1. Change #264045

    Category ffmpeg
    Changed by Priyanshu Thapliyal <priyanshuthapliyal2005ohnoyoudont@gmail.com>
    Changed at Thu 09 Apr 2026 05:01:43
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 43e5b26c0071fa5242801c98a45a46b04d3e1e0a

    Comments

    avcodec/pdvenc: add Playdate video encoder
    Add a native encoder for the Playdate PDV format.
    
    Supports monob (1-bit) video, producing zlib-compressed intra frames
    and XOR-based delta frames.
    
    Includes bounds checking, overflow guards, correct linesize handling
    using ptrdiff_t, and proper buffer allocation ordering.
    
    Mark the encoder as experimental by setting AV_CODEC_CAP_EXPERIMENTAL,
    since it has not been validated against Panic's official Playdate
    player or SDK.

    Changed files

    • configure
    • libavcodec/Makefile
    • libavcodec/allcodecs.c
    • libavcodec/pdvenc.c
  2. Change #264046

    Category ffmpeg
    Changed by Priyanshu Thapliyal <priyanshuthapliyal2005ohnoyoudont@gmail.com>
    Changed at Thu 09 Apr 2026 05:01:43
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 4c0d563f858f3996d9d1aaab20823f65c14e027d

    Comments

    avformat/pdvenc: add Playdate video muxer
    Add a muxer for the Playdate PDV container format.
    
    The muxer writes the frame table and packet layout required by the
    Playdate runtime. It requires seekable output and a predeclared
    maximum number of frames (-max_frames).
    
    Includes validation for single video stream input, dimension and
    framerate checks, and bounded payload/table offset checks. The frame
    entry table is allocated once in write_header() using max_frames + 1.
    
    Document the muxer in doc/muxers.texi and add a Changelog entry.

    Changed files

    • Changelog
    • doc/muxers.texi
    • libavformat/Makefile
    • libavformat/allformats.c
    • libavformat/pdvenc.c
  3. Change #264047

    Category ffmpeg
    Changed by Priyanshu Thapliyal <priyanshuthapliyal2005ohnoyoudont@gmail.com>
    Changed at Thu 09 Apr 2026 05:01:43
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 056562a5ff64e79ad40b141ded3f644811e812f6

    Comments

    fate/lavf: add PDV round-trip and seek coverage
    Add FATE coverage for PDV encoding and decoding via lavf, including
    intra and inter frame cases, skip-nokey decoding, and container-level
    seek coverage.
    
    Use -strict experimental in the encode commands because the encoder
    is marked experimental.

    Changed files

    • tests/fate/lavf-video.mak
    • tests/fate/seek.mak
    • tests/ref/fate/lavf-pdv-skip-nokey
    • tests/ref/lavf/pdv
    • tests/ref/lavf/pdv-intra
    • tests/ref/seek/lavf-pdv