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

Builder ffmpegsos-solaris10-sparc Build #12629

Results:

Failed shell_2 shell_3 shell_4 shell_5

SourceStamp:

Projectffmpeg
Repositoryhttps://git.ffmpeg.org/ffmpeg.git
Branchmaster
Revisiond28250eada1b4c257d6810b83129e18e5346e4ed
Got Revisiond28250eada1b4c257d6810b83129e18e5346e4ed
Changes1 change

BuildSlave:

unstable10s

Reason:

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

Steps and Logfiles:

  1. git update ( 7 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 ( 2 secs )
    1. stdio
  7. shell_5 '../../../ffmpeg/fate.sh ../../../ffmpeg/fate_config_sos.sh' failed ( 2 secs )
    1. stdio
    2. configure.log
    3. compile.log
    4. test.log

Build Properties:

NameValueSource
branch master Build
builddir /export/home/buildbot-unstable10s/slave/ffmpegsos-solaris10-sparc slave
buildername ffmpegsos-solaris10-sparc Builder
buildnumber 12629 Build
codebase Build
got_revision d28250eada1b4c257d6810b83129e18e5346e4ed Git
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision d28250eada1b4c257d6810b83129e18e5346e4ed Build
scheduler schedule-ffmpegsos-solaris10-sparc Scheduler
slavename unstable10s BuildSlave
workdir /export/home/buildbot-unstable10s/slave/ffmpegsos-solaris10-sparc slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. tangsha

Timing:

StartMon Dec 29 15:21:21 2025
EndMon Dec 29 15:21:40 2025
Elapsed19 secs

All Changes:

:

  1. Change #253471

    Category ffmpeg
    Changed by tangsha <tangshaohnoyoudont@kylinos.cn>
    Changed at Mon 29 Dec 2025 15:18:35
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision d28250eada1b4c257d6810b83129e18e5346e4ed

    Comments

    avcodec/adpcm: Fix step_index decoding by skipping padding byte
    The bug was caused by incorrect reading of the step_index field: the original
    code read a 16-bit value (including a padding byte) instead of the correct
    8-bit step_index as defined by the ADPCM format. This led to distorted audio
    or incorrect step calculations when decoding specific ADPCM-encoded files.
    
    Fix by:
    1. Reading step_index as an 8-bit unsigned byte via bytestream2_get_byteu()
    2. Skipping the subsequent 8-bit padding byte with bytestream2_skip()

    Changed files

    • libavcodec/adpcm.c