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

Builder ffmpeg64-solaris10-i386 Build #12058

Results:

Failed shell_2 shell_3 shell_4 shell_5

SourceStamp:

Projectffmpeg
Repositoryhttps://git.ffmpeg.org/ffmpeg.git
Branchmaster
Revision5fac8d062d2bfe74b8844dd2538137b087b985e5
Got Revision5fac8d062d2bfe74b8844dd2538137b087b985e5
Changes10 changes

BuildSlave:

unstable10x

Reason:

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

Steps and Logfiles:

  1. git update ( 5 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 ( 0 secs )
    1. stdio
  7. shell_5 '../../../ffmpeg/fate.sh ../../../ffmpeg/fate_config_64.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/ffmpeg64-solaris10-i386 slave
buildername ffmpeg64-solaris10-i386 Builder
buildnumber 12058 Build
codebase Build
got_revision 5fac8d062d2bfe74b8844dd2538137b087b985e5 Git
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision 5fac8d062d2bfe74b8844dd2538137b087b985e5 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:

StartSat Mar 29 02:21:11 2025
EndSat Mar 29 02:21:25 2025
Elapsed13 secs

All Changes:

:

  1. Change #225943

    Category ffmpeg
    Changed by Andreas Rheinhardt <andreas.rheinhardtohnoyoudont@outlook.com>
    Changed at Sat 29 Mar 2025 01:30:15
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 1422f0057c134c7dbad52415ccb5f8a00bec3dcd

    Comments

    avcodec/x86/mpegvideoenc_template: Remove remnants of MMX
    Forgotten in 7284ab789d5fe271b9d6a1666ab5ea6be8724cca.
    
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    Changed files

    • libavcodec/x86/mpegvideoenc.c
    • libavcodec/x86/mpegvideoenc_template.c
  2. Change #225944

    Category ffmpeg
    Changed by Andreas Rheinhardt <andreas.rheinhardtohnoyoudont@outlook.com>
    Changed at Sat 29 Mar 2025 01:37:04
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision f8360ed629c81bc623eb49202e2340ebb1e245d1

    Comments

    avcodec/mpegvideo_enc: Pass data_partitioning directly
    This avoids having to store it in the backup MPVEncContext.
    
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    Changed files

    • libavcodec/mpegvideo_enc.c
  3. Change #225945

    Category ffmpeg
    Changed by Andreas Rheinhardt <andreas.rheinhardtohnoyoudont@outlook.com>
    Changed at Sat 29 Mar 2025 01:38:30
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 074d8343d6ffd67985f71494753bbc2f78e58e6a

    Comments

    avcodec/mpegvideo_enc: Don't use unnecessarily much stack
    encode_thread() puts two MPVEncContexts (2*6516B here)
    on the stack and zeroes one of them in order to
    temporarily store the variables that get changed
    during encoding a macroblock (when there is more than
    one candidate type for a macroblock). This is wasteful
    and therefore this commit adds a small (328B here) structure
    to store exactly the fields that actually need to be backed
    up. Then one can extend MPVEncContext without fearing
    too use up to much stack.
    
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    Changed files

    • libavcodec/mpegvideo_enc.c
  4. Change #225946

    Category ffmpeg
    Changed by Andreas Rheinhardt <andreas.rheinhardtohnoyoudont@outlook.com>
    Changed at Sat 29 Mar 2025 01:39:55
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 526c4014903a46fc6b5d36b159bc26f39c272d14

    Comments

    fate/vcodec: Test non-default b_strategy
    With this modification the test would have caught the regression
    introduced in 72bf3d3c12ae562fd408603483bc59058757b1a1.
    
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    Changed files

    • tests/fate/vcodec.mak
    • tests/ref/vsynth/vsynth1-mpeg4-adap
    • tests/ref/vsynth/vsynth3-mpeg4-adap
  5. Change #225947

    Category ffmpeg
    Changed by Andreas Rheinhardt <andreas.rheinhardtohnoyoudont@outlook.com>
    Changed at Sat 29 Mar 2025 01:41:19
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision f80a939a2e53d536f406f28f13462c981304277a

    Comments

    avcodec/motion_est: Put map, me_map into MotionEstContext
    They have a fixed size and given that nowadays
    MotionEstContext is no longer in any decoder's private context,
    it is not wasteful to just put it into there.
    
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    Changed files

    • libavcodec/motion_est.h
    • libavcodec/mpegvideo_enc.c
    • libavcodec/snowenc.c
    • libavcodec/svq1enc.c
  6. Change #225948

    Category ffmpeg
    Changed by Andreas Rheinhardt <andreas.rheinhardtohnoyoudont@outlook.com>
    Changed at Sat 29 Mar 2025 01:42:55
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 8e070e1a75252eb41d96397b5fe9ea4d77d6c1ff

    Comments

    avcodec/snowenc: Don't allocate obmc_scratchpad separately
    Put it into SnowEncContext instead. Also use the proper type
    (it is only used as IDWTELEM aka short).
    
    (The allocation code allocated it in units of uint32_t,
    yet it was never used in this way. I made the array so big
    that the size (in bytes) does not change.)
    
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    Changed files

    • libavcodec/snowenc.c
  7. Change #225949

    Category ffmpeg
    Changed by Andreas Rheinhardt <andreas.rheinhardtohnoyoudont@outlook.com>
    Changed at Sat 29 Mar 2025 01:44:22
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 116fd73143e13b0bd7d696c7918503ad2ce3ae21

    Comments

    avcodec/mpegvideo: Don't set [bf]_code for non-MPEG-4 decoders
    It is only used by encoders and the MPEG-4 decoder.
    
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    Changed files

    • libavcodec/flvdec.c
    • libavcodec/intelh263dec.c
    • libavcodec/ituh263dec.c
    • libavcodec/mpeg4videodec.c
    • libavcodec/mpegvideo.c
    • libavcodec/mpegvideo_enc.c
    • libavcodec/rv10.c
  8. Change #225950

    Category ffmpeg
    Changed by Andreas Rheinhardt <andreas.rheinhardtohnoyoudont@outlook.com>
    Changed at Sat 29 Mar 2025 01:45:48
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 13f06df4e116fecd679797b168bf4f5b83cf6fdb

    Comments

    avcodec/rv10: Remove pointless casts
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    Changed files

    • libavcodec/rv10.c
  9. Change #225951

    Category ffmpeg
    Changed by Andreas Rheinhardt <andreas.rheinhardtohnoyoudont@outlook.com>
    Changed at Sat 29 Mar 2025 01:47:11
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision d3b940b0ff21fd9c734a050541f6958089f1a24b

    Comments

    avcodec/rv10: Make logmessage endian-independent
    Also fix a potential effective-type violation.
    
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    Changed files

    • libavcodec/rv10.c
  10. Change #225952

    Category ffmpeg
    Changed by Andreas Rheinhardt <andreas.rheinhardtohnoyoudont@outlook.com>
    Changed at Sat 29 Mar 2025 01:48:34
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 5fac8d062d2bfe74b8844dd2538137b087b985e5

    Comments

    avcodec/ituh263enc: Add necessary #if checks for FLV encoder
    Fixes compilation in case where the FLV encoder is disabled
    with any other H.263 based encoder enabled.
    
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    Changed files

    • libavcodec/ituh263enc.c