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

Builder ffmpeg-solaris10-sparc Build #10934

Results:

Failed shell_2 shell_3 shell_4 shell_5

SourceStamp:

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

BuildSlave:

unstable10s

Reason:

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

Steps and Logfiles:

  1. git update ( 24 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 ( 9 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 ( 6 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 10934 Build
codebase Build
got_revision 49e018d6fee689af6b30b773d83f545d74b8d9aa Git
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision 49e018d6fee689af6b30b773d83f545d74b8d9aa 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. Marton Balint

Timing:

StartTue May 21 08:43:51 2024
EndTue May 21 08:44:33 2024
Elapsed42 secs

All Changes:

:

  1. Change #197852

    Category ffmpeg
    Changed by Marton Balint <cusohnoyoudont@passwd.hu>
    Changed at Tue 21 May 2024 08:28:09
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision b0053172199b54a806a4147cda8567a2f1823bc0

    Comments

    avformat/mp3dec: only call ffio_ensure_seekback once
    Otherwise the subsequent ffio_ensure_seekback calls destroy the buffer of the
    earlier. The worst case ~66kB seekback is so small it is easier to request it
    entirely.
    
    Fixes ticket #10837, a regression since
    0d17f5228f4d3854066ec1001f69c7d1714b0df9.
    
    Signed-off-by: Marton Balint <cus@passwd.hu>

    Changed files

    • libavformat/mp3dec.c
  2. Change #197853

    Category ffmpeg
    Changed by Marton Balint <cusohnoyoudont@passwd.hu>
    Changed at Tue 21 May 2024 08:28:09
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision b75e604fe5cd7da9ca713f20d1ade18d50319aff

    Comments

    avformat/mp3dec: simplify inner frame size check in mp3_read_header
    We are protecting the checked buffer with ffio_ensure_seekback(), so if the
    inner check fails with a seek error, that likely means the end of file was
    reached when checking for the next frame. This could also be the result of a
    wrongly guessed (larger than normal) frame size, so let's continue the loop
    instead of breaking out early. It will end sooner or later anyway.
    
    Signed-off-by: Marton Balint <cus@passwd.hu>

    Changed files

    • libavformat/mp3dec.c
  3. Change #197854

    Category ffmpeg
    Changed by Marton Balint <cusohnoyoudont@passwd.hu>
    Changed at Tue 21 May 2024 08:28:09
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 49e018d6fee689af6b30b773d83f545d74b8d9aa

    Comments

    avformat/mp3dec: change bogus error message if read_header encounters EOF
    Because of ffio_ensure_seekback() a seek error normally should only happen if
    the end of file is reached during checking for the junk run-in. Also use proper
    error code.
    
    Signed-off-by: Marton Balint <cus@passwd.hu>

    Changed files

    • libavformat/mp3dec.c