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

Builder ffmpeg64-solaris10-i386 Build #12103

Results:

Failed shell_2 shell_3 shell_4 shell_5

SourceStamp:

Projectffmpeg
Repositoryhttps://git.ffmpeg.org/ffmpeg.git
Branchmaster
Revisionbf327ac6762dfbf17ce7c766bbcd3f86942769f6
Got Revisionbf327ac6762dfbf17ce7c766bbcd3f86942769f6
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 12103 Build
codebase Build
got_revision bf327ac6762dfbf17ce7c766bbcd3f86942769f6 Git
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision bf327ac6762dfbf17ce7c766bbcd3f86942769f6 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:

StartSun Apr 13 09:13:53 2025
EndSun Apr 13 09:14:07 2025
Elapsed13 secs

All Changes:

:

  1. Change #227214

    Category ffmpeg
    Changed by Andreas Rheinhardt <andreas.rheinhardtohnoyoudont@outlook.com>
    Changed at Sun 13 Apr 2025 08:14:51
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision e38616c4acc5372b7508398c1d10d22957cb4d43

    Comments

    avcodec/hq{xvlc,_hqadata}: Deduplicate and hardcode cbp table
    This table is so small (32 elements amounting to 128 bytes)
    that it is more efficient size-wise to hardcode it instead
    of initializing it at runtime.
    
    Also stop duplicating it in hq_hqa.o and hqx.o.
    
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    Changed files

    • libavcodec/Makefile
    • libavcodec/hq_common.c
    • libavcodec/hq_common.h
    • libavcodec/hq_hqa.c
    • libavcodec/hq_hqadata.h
    • libavcodec/hqx.c
    • libavcodec/hqxvlc.h
  2. Change #227215

    Category ffmpeg
    Changed by Andreas Rheinhardt <andreas.rheinhardtohnoyoudont@outlook.com>
    Changed at Sun 13 Apr 2025 08:21:29
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 12c9ffa569a026081453234d58a636a6d7e34d57

    Comments

    avcodec/hq: Include alpha in cbp VLC table
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    Changed files

    • libavcodec/hq_common.c
    • libavcodec/hq_hqa.c
    • libavcodec/hqx.c
  3. Change #227216

    Category ffmpeg
    Changed by Andreas Rheinhardt <andreas.rheinhardtohnoyoudont@outlook.com>
    Changed at Sun 13 Apr 2025 08:22:49
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision c12108cdaa7033645963ba61af8a0edfc0c1792c

    Comments

    avcodec/hq_hqa: Don't zero in small chunks, don't zero twice
    Up until now, hq_decode_block() zeroed every block (of 128 bytes)
    before decoding a block; yet this is suboptimal for all modes,
    because all modes need to reset all the blocks they use anyway
    and so it should be done in one go for all blocks.
    
    For the alpha mode (where blocks need not be coded) all blocks
    are zeroed initially anyway, because decode_block() might not
    be doing it, so zeroing there again for the coded blocks is
    a waste.
    
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    Changed files

    • libavcodec/hq_hqa.c
  4. Change #227217

    Category ffmpeg
    Changed by Andreas Rheinhardt <andreas.rheinhardtohnoyoudont@outlook.com>
    Changed at Sun 13 Apr 2025 08:24:39
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 18309fba3c8278e933d4e0f987875e1b0fee867a

    Comments

    avcodec/hq_hqadata: Avoid relocations
    Initialize a list of 128 pointers at decoder init
    instead of using a const list of pointers (which
    will be initialized at runtime when libavcodec
    is loaded when using pic code with Elf); the former
    takes only 128 bytes (+ a bit of initialization code),
    the latter 1KiB on 64 bit systems (+3KiB on x64 elf
    for relocation information).
    
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    Changed files

    • libavcodec/hq_hqa.c
    • libavcodec/hq_hqadata.h
  5. Change #227218

    Category ffmpeg
    Changed by Andreas Rheinhardt <andreas.rheinhardtohnoyoudont@outlook.com>
    Changed at Sun 13 Apr 2025 08:25:29
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision ce0074f97bdc11aeb4d948da4fd476bd0975241e

    Comments

    avcodec/hq_hqa: Use RL-VLC table
    This moves indirections to init.
    
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    Changed files

    • libavcodec/hq_hqa.c
    • libavcodec/hq_hqadata.h
  6. Change #227219

    Category ffmpeg
    Changed by Andreas Rheinhardt <andreas.rheinhardtohnoyoudont@outlook.com>
    Changed at Sun 13 Apr 2025 08:25:43
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 9c0d6145c9e066b7286712a292c74a0b75d69be5

    Comments

    avcodec/hq_hqa: Include implicit +1 run in RL VLC table
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    Changed files

    • libavcodec/hq_hqa.c
    • libavcodec/hq_hqadata.h
  7. Change #227220

    Category ffmpeg
    Changed by Andreas Rheinhardt <andreas.rheinhardtohnoyoudont@outlook.com>
    Changed at Sun 13 Apr 2025 08:26:37
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision c1f124f3f03c4a3fe1252e77938172d85151bf3e

    Comments

    avcodec/hq_hqa: Use ff_vlc_init_from_lengths()
    This allows to avoid the codes table; furthermore, given
    that the runs fit into seven bits and level into nine,
    one can put them into one int16_t and use as symbols table
    in ff_vlc_init_from_lengths().
    
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    Changed files

    • libavcodec/hq_hqa.c
    • libavcodec/hq_hqadata.h
  8. Change #227221

    Category ffmpeg
    Changed by Andreas Rheinhardt <andreas.rheinhardtohnoyoudont@outlook.com>
    Changed at Sun 13 Apr 2025 08:26:37
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision c39e23cc919b7154d7ffec4e5959cdeba79c0bb5

    Comments

    avcodec/hq_hqa: Check available date before allocating frame
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    Changed files

    • libavcodec/hq_hqa.c
  9. Change #227222

    Category ffmpeg
    Changed by Andreas Rheinhardt <andreas.rheinhardtohnoyoudont@outlook.com>
    Changed at Sun 13 Apr 2025 08:48:11
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 16943876f87783e3c15b8bbbb609bf8c8f530f45

    Comments

    avcodec/hq_hqa: Remove implicit always-false checks
    This decoder has explicit checks.
    
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    Changed files

    • libavcodec/hq_hqa.c
  10. Change #227223

    Category ffmpeg
    Changed by Andreas Rheinhardt <andreas.rheinhardtohnoyoudont@outlook.com>
    Changed at Sun 13 Apr 2025 08:49:26
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision bf327ac6762dfbf17ce7c766bbcd3f86942769f6

    Comments

    avcodec/hq_hqa: Check size before initializing GetByteContext
    Enables the compiler to optimize the buf_size assert
    in bytestream2_init() away.
    
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    Changed files

    • libavcodec/hq_hqa.c