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

Builder ffmpeg64-solaris10-i386 Build #12073

Results:

Failed shell_2 shell_3 shell_4 shell_5

SourceStamp:

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

BuildSlave:

unstable10x

Reason:

The SingleBranchScheduler scheduler named 'schedule-ffmpeg64-solaris10-i386' 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 ( 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_64.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/slave/ffmpeg64-solaris10-i386 slave
buildername ffmpeg64-solaris10-i386 Builder
buildnumber 12073 Build
codebase Build
got_revision ca48e7bb707a5f9fe5738c69acf827798b2abe9e Git
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision ca48e7bb707a5f9fe5738c69acf827798b2abe9e 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. Andreas Rheinhardt

Timing:

StartWed Apr 2 09:43:44 2025
EndWed Apr 2 09:44:03 2025
Elapsed19 secs

All Changes:

:

  1. Change #226353

    Category ffmpeg
    Changed by Andreas Rheinhardt <andreas.rheinhardtohnoyoudont@outlook.com>
    Changed at Wed 02 Apr 2025 09:25:24
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 2204efc2a656ae60d77a4d01c6cf8e7d6baaf030

    Comments

    avcodec/dct: Make declarations and definitions match
    GCC considers declarations using a parameter of pointer
    type (or equivalently a parameter using an array of unspecified
    dimensions) to be inconsistent with a declaration using
    a known-length array type and emits a -Warray-parameter warning
    for several ff_j_rev_dct* functions for this.
    
    This patch makes the declarations match the actual definitions
    to suppress these (IMO nonsensical) warnings.
    
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    Changed files

    • libavcodec/dct.h
    • libavcodec/jrevdct.c
  2. Change #226355

    Category ffmpeg
    Changed by Andreas Rheinhardt <andreas.rheinhardtohnoyoudont@outlook.com>
    Changed at Wed 02 Apr 2025 09:25:30
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision ffa56f73a9bc5505a0d4d1e1e04a65bf10113dee

    Comments

    avcodec/ac3dec: Read spx flags at once, not one bit at a time
    Doing so gets rid of a stupid GCC -Wstringop-overflow= warning
    (GCC somehow believes that fbw_channels can be 7 with the old
    form of the code, so that channel_uses_spx[7] would be written
    to, but now it no longer believes so).
    
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    Changed files

    • libavcodec/ac3dec.c
  3. Change #226358

    Category ffmpeg
    Changed by Andreas Rheinhardt <andreas.rheinhardtohnoyoudont@outlook.com>
    Changed at Wed 02 Apr 2025 09:25:38
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 0ce8868878c90153e45648b180cef59a9bcb0109

    Comments

    avcodec/hevc/hevcdec: Use bitfield instead of array of flags
    It is simpler, avoids several loops and also makes GCC no longer
    emit bogus -Wstringop-overflow= warnings.
    
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    Changed files

    • libavcodec/hevc/hevcdec.c
  4. Change #226360

    Category ffmpeg
    Changed by Andreas Rheinhardt <andreas.rheinhardtohnoyoudont@outlook.com>
    Changed at Wed 02 Apr 2025 09:25:46
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision ca48e7bb707a5f9fe5738c69acf827798b2abe9e

    Comments

    avcodec/sbcdsp_data: Make data static
    This data is only used by sbcdsp.c, so delete sbcdsp_data.h,
    make a header out of sbcdsp_data.c and make the data contained
    therein static.
    
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    Changed files

    • libavcodec/Makefile
    • libavcodec/sbcdsp.c
    • libavcodec/sbcdsp.h
    • libavcodec/sbcdsp_data.c
    • libavcodec/sbcdsp_data.h