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

Builder ffmpeg64-solaris10-i386 Build #12728

Results:

Failed shell_2 shell_3 shell_4 shell_5

SourceStamp:

Projectffmpeg
Repositoryhttps://git.ffmpeg.org/ffmpeg.git
Branchmaster
Revision586898dc1fc60d5aad39bb939c5d6255a0062fc3
Got Revision586898dc1fc60d5aad39bb939c5d6255a0062fc3
Changes4 changes

BuildSlave:

unstable10x

Reason:

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

Steps and Logfiles:

  1. git update ( 4 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_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 12728 Build
codebase Build
got_revision 586898dc1fc60d5aad39bb939c5d6255a0062fc3 Git
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision 586898dc1fc60d5aad39bb939c5d6255a0062fc3 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. Martin Storsjö

Timing:

StartSat Nov 8 22:37:47 2025
EndSat Nov 8 22:38:00 2025
Elapsed12 secs

All Changes:

:

  1. Change #248050

    Category ffmpeg
    Changed by Martin Storsjö <martinohnoyoudont@martin.st>
    Changed at Sat 08 Nov 2025 22:19:31
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision d015382f4a80d533b0809f0267cc1be95f61a7bb

    Comments

    avformat/vpcc: Generalize the AVFormatContext parameter to void*
    This parameter is only used as a logging context; don't require
    a full AVFormatContext here.

    Changed files

    • libavformat/vpcc.c
    • libavformat/vpcc.h
  2. Change #248051

    Category ffmpeg
    Changed by Martin Storsjö <martinohnoyoudont@martin.st>
    Changed at Sat 08 Nov 2025 22:19:31
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision ee22107c67463ee8a3bec417a9318fa4c2653b9e

    Comments

    avformat/vpcc: Make input pointers const

    Changed files

    • libavformat/vpcc.c
    • libavformat/vpcc.h
  3. Change #248052

    Category ffmpeg
    Changed by Martin Storsjö <martinohnoyoudont@martin.st>
    Changed at Sat 08 Nov 2025 22:19:31
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 900b77b1b7dfe0ddefbc329226f7ecf6aa55efd3

    Comments

    hlsenc, dashenc: Share the routine for generating a codec string
    The one in dashenc was added in
    fe5e6e34c05e274f98528be4f77f3c474473f977, while the one in hlsenc
    was added later in 0afa171f25bc9b613a77328182e54d6e781269d3. Both
    have had various additions on top; merge both implementations
    into one shared. (Notable additions in
    060e74e2a970bb12ab138cfff5aaff8d132ffc65,
    1cf2f040e34bbfedde60ff3d91b2f7b770aca85b,
    a2b1dd0ce301450a47c972745a6b33c4c273aa5d and
    797f0b27c175022d896e46db4ac2873e3e0a70af.)
    
    For H264/avc1, use the implementation from hlsenc (which doesn't
    use temporary allocations). For most other codecs, use the
    only implementation from whichever had one.
    
    The original dashenc implementation tried to be generic based
    on RFC 6381, looking up codec tags in ff_codec_movvideo_tags
    or ff_codec_movaudio_tags, and doing specific extra additions
    for "mp4a" and "mp4v". In practice, only AV_CODEC_ID_AAC
    and AV_CODEC_ID_MPEG4 ever mapped to these; simplify this to
    a more straightforward codec id based handling, and merge
    with the AAC profile based code from hlsenc.
    
    There's a slight behaviour difference from the old one in
    dashenc; if there's no code for a specific codec ID, we previously
    just output what we matched from the mov tag tables, but now
    we won't output anything. But most commonly used codecs in
    DASH should be covered here.

    Changed files

    • libavformat/Makefile
    • libavformat/codecstring.c
    • libavformat/dashenc.c
    • libavformat/hlsenc.c
    • libavformat/internal.h
  4. Change #248053

    Category ffmpeg
    Changed by Martin Storsjö <martinohnoyoudont@martin.st>
    Changed at Sat 08 Nov 2025 22:19:31
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 586898dc1fc60d5aad39bb939c5d6255a0062fc3

    Comments

    avformat: Make ff_make_codec_str output to an AVBPrint object

    Changed files

    • libavformat/codecstring.c
    • libavformat/dashenc.c
    • libavformat/hlsenc.c
    • libavformat/internal.h