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

Builder ffmpeg-solaris10-sparc Build #12383

Results:

Failed shell_2 shell_3 shell_4 shell_5

SourceStamp:

Projectffmpeg
Repositoryhttps://git.ffmpeg.org/ffmpeg.git
Branchmaster
Revisionc64cff64a22a59c0c02281ee9fd9d89963d14d16
Got Revisionc64cff64a22a59c0c02281ee9fd9d89963d14d16
Changes8 changes

BuildSlave:

unstable10s

Reason:

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

Steps and Logfiles:

  1. git update ( 9 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 ( 7 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-unstable10s/slave/ffmpeg-solaris10-sparc slave
buildername ffmpeg-solaris10-sparc Builder
buildnumber 12383 Build
codebase Build
got_revision c64cff64a22a59c0c02281ee9fd9d89963d14d16 Git
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision c64cff64a22a59c0c02281ee9fd9d89963d14d16 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. Jiasheng Jiang
  2. Maryla Ustarroz-Calonge

Timing:

StartThu Aug 7 03:15:07 2025
EndThu Aug 7 03:15:25 2025
Elapsed17 secs

All Changes:

:

  1. Change #242304

    Category ffmpeg
    Changed by Maryla Ustarroz-Calonge <marylaohnoyoudont@google.com>
    Changed at Thu 07 Aug 2025 03:07:42
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 088ace3b6ca8a766ccb9b66cd69c744363c32261

    Comments

    avcodec/libdav1d: move itut-t35 parsing to a separate function
    This is in preparation to change the switch statement to if/else.
    
    Signed-off-by: Maryla Ustarroz-Calonge <maryla@google.com>
    Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>

    Changed files

    • libavcodec/libdav1d.c
  2. Change #242306

    Category ffmpeg
    Changed by Maryla Ustarroz-Calonge <marylaohnoyoudont@google.com>
    Changed at Thu 07 Aug 2025 03:07:43
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision a3ec70b2cf78df5401f1d3c4e482c99a5e383e3d

    Comments

    avcodec/itut35: always check the provider code and country code together
    ITU-T T.35 provider codes are attributed by national bodies and it's
    possible to have collisions across countries. This is why the country code
    must always be checked as well.
    
    Use if statements rather than nested switches which would be unreadable.
    
    Signed-off-by: Maryla Ustarroz-Calonge <maryla@google.com>
    Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>

    Changed files

    • libavcodec/av1dec.c
    • libavcodec/h2645_sei.c
    • libavcodec/itut35.h
    • libavcodec/libdav1d.c
  3. Change #242308

    Category ffmpeg
    Changed by Maryla Ustarroz-Calonge <marylaohnoyoudont@google.com>
    Changed at Thu 07 Aug 2025 03:07:43
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision d5040b5560c95cdbf134b5e4b1ee287568ef9fd8

    Comments

    avcodec/itut35: rename some provider codes
    In general, a provider code corresponds to a company/organization, and
    the name should be that of the company, not of a given feature.
    The feature is signalled in the "provider oriented code".
    
    The exception is HDR Vivid, where the code 0x0004 indicates the HDR Vivid
    feature itself rather than CUVA (China UHD Video Industry Alliance),
    according to the UHD World Associations 'HDR Video Technology Part 2-1
    Application Guide to System Integration' document.
    
    ITU_T_T35_PROVIDER_CODE_CUVA -> ITU_T_T35_PROVIDER_CODE_HDR_VIVID
    ITU_T_T35_PROVIDER_CODE_LCEVC-> ITU_T_T35_PROVIDER_CODE_VNOVA
    ITU_T_T35_PROVIDER_CODE_SMTPE -> ITU_T_T35_PROVIDER_CODE_SAMSUNG
    
    Signed-off-by: Maryla Ustarroz-Calonge <maryla@google.com>
    Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>

    Changed files

    • libavcodec/av1dec.c
    • libavcodec/h2645_sei.c
    • libavcodec/itut35.h
    • libavcodec/libdav1d.c
    • libavformat/matroskadec.c
    • libavformat/matroskaenc.c
  4. Change #242310

    Category ffmpeg
    Changed by Jiasheng Jiang <jiashengjiangcoolohnoyoudont@gmail.com>
    Changed at Thu 07 Aug 2025 03:07:43
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 8b4e6ccb13f10752bc5c2a963478c7f3764a0cfe

    Comments

    libavcodec/videotoolbox_vp9: Move av_malloc() to avoid memory leak
    Move av_malloc() after the check for subsampling to avoid memory leak if subsampling < 0 and av_malloc() succeeds.
    
    Fixes: a41a2efc85 ("lavc/videotoolbox: add VP9 hardware acceleration")
    Signed-off-by: Jiasheng Jiang <jiashengjiangcool@gmail.com>
    Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>

    Changed files

    • libavcodec/videotoolbox_vp9.c
  5. Change #242311

    Category ffmpeg
    Changed by Jiasheng Jiang <jiashengjiangcoolohnoyoudont@gmail.com>
    Changed at Thu 07 Aug 2025 03:07:44
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 39592f2bab61e2ce738ed6a4cfd77953be2a95cc

    Comments

    examples: Add proper deallocations to avoid potential memory leaks
    Add proper deallocations in the error paths to avoid potential memory leaks.
    
    Fixes: e7dfaf16a4 ("libavfilter: example audio filtering program")
    Signed-off-by: Jiasheng Jiang <jiashengjiangcool@gmail.com>
    Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>

    Changed files

    • doc/examples/filter_audio.c
  6. Change #242312

    Category ffmpeg
    Changed by Jiasheng Jiang <jiashengjiangcoolohnoyoudont@gmail.com>
    Changed at Thu 07 Aug 2025 03:07:44
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision a25462482c02c004d685a8fcf2fa63955aaa0931

    Comments

    libavfilter/af_firequalizer: Add check for av_malloc_array()
    Add check for the return value of av_malloc_array() to avoid potential NULL pointer dereference.
    
    Fixes: d3be186ed1 ("avfilter/firequalizer: add dumpfile and dumpscale option")
    Signed-off-by: Jiasheng Jiang <jiashengjiangcool@gmail.com>
    Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>

    Changed files

    • libavfilter/af_firequalizer.c
  7. Change #242313

    Category ffmpeg
    Changed by Jiasheng Jiang <jiashengjiangcoolohnoyoudont@gmail.com>
    Changed at Thu 07 Aug 2025 03:07:44
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 446cfbfb7446208bd1592bbc0ac18ac744543563

    Comments

    libavcodec/tests/snowenc: Add av_free() to avoid memory leak
    Add av_free() to free s.temp_dwt_buffer and s.temp_idwt_buffer at the end of the function to avoid memory leak.
    
    Fixes: 5d48e4eafa ("Merge commit 'a6a750c7ef240b72ce01e9653343a0ddf247d196'")
    Signed-off-by: Jiasheng Jiang <jiashengjiangcool@gmail.com>
    Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>

    Changed files

    • libavcodec/tests/snowenc.c
  8. Change #242314

    Category ffmpeg
    Changed by Jiasheng Jiang <jiashengjiangcoolohnoyoudont@gmail.com>
    Changed at Thu 07 Aug 2025 03:07:45
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision c64cff64a22a59c0c02281ee9fd9d89963d14d16

    Comments

    examples: Add check and replace av_free() to avoid potential memory errors
    Add check for the return value of av_packet_alloc() to avoid potential NULL pointer dereference.
    Moreover, replace redundant av_free() with fprintf().
    
    Fixes: 9a38184a14 ("examples/decode_audio: allocate the packet dynamically")
    Signed-off-by: Jiasheng Jiang <jiashengjiangcool@gmail.com>
    Reviewed-by: Nicolas George <george@nsup.org>
    Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>

    Changed files

    • doc/examples/decode_audio.c