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

Builder ffmpeg-solaris10-sparc Build #13999

Results:

Failed shell_2 shell_3 shell_4 shell_5

SourceStamp:

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

BuildSlave:

unstable10s

Reason:

The SingleBranchScheduler scheduler named 'schedule-ffmpeg-solaris10-sparc' triggered this build

Steps and Logfiles:

  1. git update ( 6 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 ( 1 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 13999 Build
codebase Build
got_revision 7ab12fd02a87cd71afc1052d050f88705283ef8b Git
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision 7ab12fd02a87cd71afc1052d050f88705283ef8b 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. James Almer

Timing:

StartMon Jun 29 17:23:44 2026
EndMon Jun 29 17:24:01 2026
Elapsed17 secs

All Changes:

:

  1. Change #273203

    Category ffmpeg
    Changed by James Almer <jamrialohnoyoudont@gmail.com>
    Changed at Mon 29 Jun 2026 17:38:12
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision dac8b3f367077cf2a7f366dd68dd402cf32f93bf

    Comments

    avformat/movenc: read packet duration at the time it's needed
    Reading it at the beginning of ff_mov_write_packet() means that any changes to it
    that happen afterwards will not be taken into account for the remainer calculation.
    
    Signed-off-by: James Almer <jamrial@gmail.com>

    Changed files

    • libavformat/movenc.c
  2. Change #273204

    Category ffmpeg
    Changed by James Almer <jamrialohnoyoudont@gmail.com>
    Changed at Mon 29 Jun 2026 17:38:12
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 2e6d5dbdc270e58427a59b844cbbaa0269ae8a9d

    Comments

    avformat/movenc: drain buffered EAC3 packets
    handle_eac3() will buffer a packet if it doesn't reach the desired num_blocks
    value, but if it was the last one to be passed to the muxer, it will never be
    written.
    Fix this by writing it during mov_write_trailer().
    
    Signed-off-by: James Almer <jamrial@gmail.com>

    Changed files

    • libavformat/movenc.c
  3. Change #273205

    Category ffmpeg
    Changed by James Almer <jamrialohnoyoudont@gmail.com>
    Changed at Mon 29 Jun 2026 17:38:12
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision df9caa03b81da806def05d6cf0c796bb252a54ef

    Comments

    avformat/movenc: preserve packet side data when merging eac3 packets
    If the last packet fed to the muxer has skip samples side data, if it were to be merged
    into a single packet, said side data would be lost as is.
    Copy it to the merged packet.
    
    Signed-off-by: James Almer <jamrial@gmail.com>

    Changed files

    • libavformat/movenc.c
  4. Change #273206

    Category ffmpeg
    Changed by James Almer <jamrialohnoyoudont@gmail.com>
    Changed at Mon 29 Jun 2026 19:00:25
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 7ab12fd02a87cd71afc1052d050f88705283ef8b

    Comments

    avformat/movenc: use frame_size for EAC3 when merging packets
    Otherwise remainder calculations will not work correctly if the input packets
    have smaller frame sizes.
    
    Should fix issue #23600.
    
    Signed-off-by: James Almer <jamrial@gmail.com>

    Changed files

    • libavformat/movenc.c