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

Builder ffmpeg-solaris10-i386 Build #11130

Results:

Failed shell_2 shell_3 shell_4 shell_5

SourceStamp:

Projectffmpeg
Repositoryhttps://git.ffmpeg.org/ffmpeg.git
Branchmaster
Revisiond307aca184a15be78236889c226f2699f40a1948
Got Revisiond307aca184a15be78236889c226f2699f40a1948
Changes9 changes

BuildSlave:

unstable10x

Reason:

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

Steps and Logfiles:

  1. git update ( 2 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 ( 2 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 ( 0 secs )
    1. stdio
    2. configure.log
    3. compile.log
    4. test.log

Build Properties:

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

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Andreas Rheinhardt

Timing:

StartFri Apr 5 00:13:11 2024
EndFri Apr 5 00:13:17 2024
Elapsed6 secs

All Changes:

:

  1. Change #194528

    Category ffmpeg
    Changed by Andreas Rheinhardt <andreas.rheinhardtohnoyoudont@outlook.com>
    Changed at Thu 04 Apr 2024 23:57:19
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision e54696bcaa0819674e2f9bc7c9a4c87383675091

    Comments

    avcodec/ppc/h264dsp: Fix left shifts of negative numbers
    PPC equivalent of c756b3fca240df75ffa28e75f2eb34834c10294d.
    
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    Changed files

    • libavcodec/ppc/h264dsp.c
  2. Change #194529

    Category ffmpeg
    Changed by Andreas Rheinhardt <andreas.rheinhardtohnoyoudont@outlook.com>
    Changed at Thu 04 Apr 2024 23:57:19
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision a4800643bba40cf8461406aa078da93e42e6ea6c

    Comments

    avcodec/lossless_videoencdsp: Don't presume alignment in diff_bytes
    The alignment of all the parameters in diff_bytes can be
    anything the despite the documentation claiming otherwise.
    8ecd38312210d48ec9e50d78fc223d60e71a30ed was based around
    said documentation and is therefore insufficient to fix
    e.g. the misaligned loads that happen in the huffyuvbgra
    and huffyuvbgr24 vsynth FATE-tests.
    
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    Changed files

    • libavcodec/lossless_videoencdsp.c
    • libavcodec/lossless_videoencdsp.h
  3. Change #194530

    Category ffmpeg
    Changed by Andreas Rheinhardt <andreas.rheinhardtohnoyoudont@outlook.com>
    Changed at Thu 04 Apr 2024 23:58:57
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 2f59648aed8ba538e2ff3cd7edcb85f4501faa25

    Comments

    avcodec/wavpack: Fix leak and segfault on reallocation error
    av_realloc_f() frees the buffer it is given on allocation
    failure. But in this case, the buffer is an array of
    ownership pointers, causing leaks on error. Furthermore,
    the count of pointers is unchanged on error and the codec's
    close function uses it to free said ownership pointers,
    causing a NPD.
    This is a regression since 46412a8935e4632b2460988bfce4152c7dccce22.
    
    Fix this by switching to av_realloc_array().
    
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    Changed files

    • libavcodec/wavpack.c
  4. Change #194531

    Category ffmpeg
    Changed by Andreas Rheinhardt <andreas.rheinhardtohnoyoudont@outlook.com>
    Changed at Thu 04 Apr 2024 23:58:57
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision c720c691889be1e5841d72d5f2600c7cc35c8483

    Comments

    avcodec/dsd: Use double for LUTs
    Needed to make DSD->PCM conversion bitexact across arches.
    
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    Changed files

    • libavcodec/dsd.c
  5. Change #194532

    Category ffmpeg
    Changed by Andreas Rheinhardt <andreas.rheinhardtohnoyoudont@outlook.com>
    Changed at Thu 04 Apr 2024 23:58:57
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 1c2860e8152e7c23e1a1f8985b71c24e673b87e8

    Comments

    fate/wavpack: Add test for DSD
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    Changed files

    • tests/fate/wavpack.mak
    • tests/ref/fate/wavpack-lossless-dsd
  6. Change #194533

    Category ffmpeg
    Changed by Andreas Rheinhardt <andreas.rheinhardtohnoyoudont@outlook.com>
    Changed at Thu 04 Apr 2024 23:58:57
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision e81fa9f482122311186840798d50c566674da93f

    Comments

    avcodec/wavpack: Only initialize DSD data when encountering DSD
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    Changed files

    • libavcodec/wavpack.c
  7. Change #194534

    Category ffmpeg
    Changed by Andreas Rheinhardt <andreas.rheinhardtohnoyoudont@outlook.com>
    Changed at Thu 04 Apr 2024 23:58:57
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 6d38c260e57d3dcd9f106f378d0f190b0cb837fe

    Comments

    avcodec/dsddec: Fix decoding LSBF samples
    ff_dsd2pcm_translate() works internally by converting LSBF input
    to MSBF upon reading; its buffer is therefore always MSBF
    and should therefore be initialized with MSBF silence;
    but this is not true since e3d8963c3cb5b8cd31460dd9b3b9dba2a2343bf5
    which this patch effectively reverts.
    
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    Changed files

    • libavcodec/dsddec.c
  8. Change #194535

    Category ffmpeg
    Changed by Andreas Rheinhardt <andreas.rheinhardtohnoyoudont@outlook.com>
    Changed at Thu 04 Apr 2024 23:58:57
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision aecd63478e32b17a7896510b50165283c75d6ead

    Comments

    avcodec/dsd: Hoist branch out of loop
    This is possible by not converting from LSBF to MSBF; instead
    add LSBF LUTs.
    This approach necessitates reversing the initial values.
    
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    Changed files

    • libavcodec/dsd.c
    • libavcodec/dsddec.c
  9. Change #194536

    Category ffmpeg
    Changed by Andreas Rheinhardt <andreas.rheinhardtohnoyoudont@outlook.com>
    Changed at Thu 04 Apr 2024 23:58:57
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision d307aca184a15be78236889c226f2699f40a1948

    Comments

    avcodec/wavpack: Remove always-false check
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    Changed files

    • libavcodec/wavpack.c