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

Builder ffmpeg-solaris10-i386 Build #13484

Results:

Failed shell_2 shell_3 shell_4 shell_5

SourceStamp:

Projectffmpeg
Repositoryhttps://git.ffmpeg.org/ffmpeg.git
Branchmaster
Revision9d97771bc6eb412d03ed271e5013fd39c9344b15
Got Revision9d97771bc6eb412d03ed271e5013fd39c9344b15
Changes3 changes

BuildSlave:

unstable10x

Reason:

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

Steps and Logfiles:

  1. git update ( 4 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/slave/ffmpeg-solaris10-i386 slave
buildername ffmpeg-solaris10-i386 Builder
buildnumber 13484 Build
codebase Build
got_revision 9d97771bc6eb412d03ed271e5013fd39c9344b15 Git
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision 9d97771bc6eb412d03ed271e5013fd39c9344b15 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:

StartSat Mar 21 16:14:50 2026
EndSat Mar 21 16:15:05 2026
Elapsed14 secs

All Changes:

:

  1. Change #261902

    Category ffmpeg
    Changed by Andreas Rheinhardt <andreas.rheinhardtohnoyoudont@outlook.com>
    Changed at Sat 21 Mar 2026 16:05:17
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 548b9f5ca70bead8fb34cbd86ecaea41db1bc86b

    Comments

    avcodec/bsf/extract_extradata: Inline constants
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    Changed files

    • libavcodec/bsf/extract_extradata.c
  2. Change #261903

    Category ffmpeg
    Changed by Andreas Rheinhardt <andreas.rheinhardtohnoyoudont@outlook.com>
    Changed at Sat 21 Mar 2026 16:05:17
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 1dd853010a7eb6caa8019127b1862bd64de4e91b

    Comments

    avcodec/bsf/extract_extradata: Redo extracting LCEVC extradata
    Changes compared to the current version include:
    1. We no longer use a dummy PutByteContext on the first pass
    for checking whether there is extradata in the NALU. Instead
    the first pass no longer writes anything to any PutByteContext
    at all; the size information is passed via additional int*
    parameters. (This no longer discards const when initializing
    the dummy PutByteContext, fixing a compiler warning.)
    2. We actually error out on invalid data in the first pass,
    ensuring that the second pass never fails.
    3. The first pass is used to get the exact sizes of both
    the extradata and the filtered data. This obviates the need
    for reallocating the buffers lateron. (It also means
    that the extradata side data will have been allocated with
    av_malloc (ensuring proper alignment) instead of av_realloc().)
    4. The second pass now writes both extradata and (if written)
    the filtered data instead of parsing the NALUs twice.
    
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    Changed files

    • libavcodec/bsf/extract_extradata.c
  3. Change #261904

    Category ffmpeg
    Changed by Andreas Rheinhardt <andreas.rheinhardtohnoyoudont@outlook.com>
    Changed at Sat 21 Mar 2026 16:05:17
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 9d97771bc6eb412d03ed271e5013fd39c9344b15

    Comments

    avcodec/bsf/extract_extradata: Remove pointless checks
    It doesn't hurt to keep track of filtered_size:
    The end result will be ignored if extradata is not removed
    from the bitstream.
    
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    Changed files

    • libavcodec/bsf/extract_extradata.c