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

Builder ffmpeg-solaris10-sparc Build #12546

Results:

Failed shell_2 shell_3 shell_4 shell_5

SourceStamp:

Projectffmpeg
Repositoryhttps://git.ffmpeg.org/ffmpeg.git
Branchmaster
Revision85b5d4adf29da25318c3597e4e7c8d66ef5adb32
Got Revision85b5d4adf29da25318c3597e4e7c8d66ef5adb32
Changes6 changes

BuildSlave:

unstable10s

Reason:

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

Steps and Logfiles:

  1. git update ( 20 secs )
    1. stdio
  2. shell 'gsed -i ...' ( 0 secs )
    1. stdio
  3. shell_1 'gsed -i ...' ( 1 secs )
    1. stdio
  4. shell_2 'gsed -i ...' failed ( 0 secs )
    1. stdio
  5. shell_3 './configure --samples="../../../ffmpeg/fate-suite" ...' failed ( 36 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 12546 Build
codebase Build
got_revision 85b5d4adf29da25318c3597e4e7c8d66ef5adb32 Git
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision 85b5d4adf29da25318c3597e4e7c8d66ef5adb32 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. Jack Lau

Timing:

StartFri Sep 5 06:36:34 2025
EndFri Sep 5 06:37:35 2025
Elapsed1 mins, 0 secs

All Changes:

:

  1. Change #244480

    Category ffmpeg
    Changed by Jack Lau <jacklau1222ohnoyoudont@qq.com>
    Changed at Fri 05 Sep 2025 06:27:51
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision b41f8207c4cfebf9bb6b66a9f354c8bbba3036b5

    Comments

    avformat/whip: fix SDP ICE candidates parsing
    fix issue #20407
    
    Refer to RFC 5245 15.1,
    the foundation may be any string up to 32 chars.
    The old code could misread foundations as transport("udp").
    This patch fully parse all these attr to avoid parsing error.
    
    Signed-off-by: Jack Lau <jacklau1222@qq.com>

    Changed files

    • libavformat/whip.c
  2. Change #244481

    Category ffmpeg
    Changed by Jack Lau <jacklau1222ohnoyoudont@qq.com>
    Changed at Fri 05 Sep 2025 06:28:24
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 39a63e3d0707b60727b5561d197a7cd27786d2e1

    Comments

    avformat/whip: make time measure more precise
    Use av_gettime_relative() replace av_gettime() to get
    better measure
    
    Changed the display precision from showing only integers
    to showing two decimal places (in milliseconds)
    
    Signed-off-by: Jack Lau <jacklau1222@qq.com>

    Changed files

    • libavformat/whip.c
  3. Change #244482

    Category ffmpeg
    Changed by Jack Lau <jacklau1222ohnoyoudont@qq.com>
    Changed at Fri 05 Sep 2025 06:28:55
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 6c2768bf8c059126ea89ec14f1fe0c903f4f90c5

    Comments

    avformat/whip: fix 8 bits overflow and map constraint_set bits for H264
    profile_iop is an 8 bits field. Previous code copied
    AVCodecParameters::profile (which can contain bits
    beyond 8 bits) into profile_iop, producing overflow
    and wrong values.
    
    This patch maps the constrained flags into the proper
    profile_iop bits (constraint_set1 / 3)
    
    Signed-off-by: Jack Lau <jacklau1222@qq.com>

    Changed files

    • libavformat/whip.c
  4. Change #244483

    Category ffmpeg
    Changed by Jack Lau <jacklau1222ohnoyoudont@qq.com>
    Changed at Fri 05 Sep 2025 06:28:55
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 785a4e0d6c80f475f7891d33dfa2927faa51da21

    Comments

    avformat/whip: fix potential 8bit overflow for profile_idc
    The profile contains profile_idc and constraint_set*_flag,
    throws away high 8 bit flags and then we get profile_idc.
    
    Signed-off-by: Jack Lau <jacklau1222@qq.com>

    Changed files

    • libavformat/whip.c
  5. Change #244484

    Category ffmpeg
    Changed by Jack Lau <jacklau1222ohnoyoudont@qq.com>
    Changed at Fri 05 Sep 2025 06:29:39
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 3c7315c3456c4a55caf368594ee5f923b223bf8d

    Comments

    avformat/whip: simplify the udp read in whip_write_packet
    Reduce nested if statements to make the code structure clearer
    
    Add logic to check if EOF is received from UDP socket.
    
    Signed-off-by: Jack Lau <jacklau1222@qq.com>

    Changed files

    • libavformat/whip.c
  6. Change #244485

    Category ffmpeg
    Changed by Jack Lau <jacklau1222ohnoyoudont@qq.com>
    Changed at Fri 05 Sep 2025 06:31:07
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 85b5d4adf29da25318c3597e4e7c8d66ef5adb32

    Comments

    avformat/tls_gnutls: cleanup the pointer name
    Pure cleanup, no functional changes
    Unify local pointer names to `TLSContext *c` and `TLSShared *s` to
    reduce confusion from inconsistent names (e.g. p, s, c)
    
    Signed-off-by: Jack Lau <jacklau1222@qq.com>

    Changed files

    • libavformat/tls_gnutls.c