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

Builder ffmpeg64-solaris10-i386 Build #12121

Results:

Failed shell_2 shell_3 shell_4 shell_5

SourceStamp:

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

BuildSlave:

unstable10x

Reason:

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

Steps and Logfiles:

  1. git update ( 29 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 ( 5 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 12121 Build
codebase Build
got_revision 02d7384ed5eec0152056c081b536c16cb86e6361 Git
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision 02d7384ed5eec0152056c081b536c16cb86e6361 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. softworkz

Timing:

StartSat Apr 19 17:13:53 2025
EndSat Apr 19 17:14:29 2025
Elapsed35 secs

All Changes:

:

  1. Change #227667

    Category ffmpeg
    Changed by softworkz <softworkzohnoyoudont@hotmail.com>
    Changed at Sat 19 Apr 2025 17:02:24
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision fcc50c41ce389ac466454bc6fac5c69aa1cffffb

    Comments

    avformat/hls demuxer: Add WebVTT subtitle support
    This add support for WebVTT subtitles in HLS streams.
    Just like for separate audio streams, it supports all available
    WebVTT streams in all renditions.
    No new options are added, it just works and provides subtitles streams
    like any other demuxer.
    The code prevents downloading subtitle segments which are farther
    in the future than the main segments, to avoid loading hundreds
    of subtitle segments in advance.
    
    Signed-off-by: softworkz <softworkz@hotmail.com>

    Changed files

    • libavformat/hls.c
  2. Change #227668

    Category ffmpeg
    Changed by softworkz <softworkzohnoyoudont@hotmail.com>
    Changed at Sat 19 Apr 2025 17:04:31
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision edd28770be8b37edb35747426cb0510b83893c09

    Comments

    avcodec/dvbsubdec: Fix conditions for fallback to default resolution
    The previous code expected a segment of type CLUT definition to exist
    in order to accept a set of segments to be complete.
    This was an incorrect assumption as the presence of a CLUT segment
    is not mandatory.
    (version 1.6.1 of the spec is probably a bit more clear about this
    than earlier versions: https://www.etsi.org/deliver/etsi_en/
    300700_300799/300743/01.06.01_20/en_300743v010601a.pdf)
    
    The incorrect condition prevented proper fallback to using the default
    resolution for the decoding context.
    
    This also adds variables and moves the fallback check to the outside
    for better clarity.
    
    Signed-off-by: softworkz <softworkz@hotmail.com>

    Changed files

    • libavcodec/dvbsubdec.c
  3. Change #227669

    Category ffmpeg
    Changed by softworkz <softworkzohnoyoudont@hotmail.com>
    Changed at Sat 19 Apr 2025 17:05:30
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 02d7384ed5eec0152056c081b536c16cb86e6361

    Comments

    avformat/dump: Print stream start offsets for input streams
    Seeing the offset of video and audio streams to each other is often
    a useful metric in diagnosing and understanding issues with playback
    or transcoding.
    This commit adds those offsets to the stream info print.
    
    Signed-off-by: softworkz <softworkz@hotmail.com>

    Changed files

    • libavformat/dump.c