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

Builder ffmpeg-solaris10-i386 Build #13070

Results:

Failed shell_2 shell_3 shell_4 shell_5

SourceStamp:

Projectffmpeg
Repositoryhttps://git.ffmpeg.org/ffmpeg.git
Branchmaster
Revision6c878f8b829bc9da4bbb5196c125e55a7c3ac32f
Got Revision6c878f8b829bc9da4bbb5196c125e55a7c3ac32f
Changes2 changes

BuildSlave:

unstable10x

Reason:

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

Steps and Logfiles:

  1. git update ( 6 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 ( 1 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 13070 Build
codebase Build
got_revision 6c878f8b829bc9da4bbb5196c125e55a7c3ac32f Git
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision 6c878f8b829bc9da4bbb5196c125e55a7c3ac32f 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. Jun Zhao

Timing:

StartThu Jan 15 01:07:20 2026
EndThu Jan 15 01:07:36 2026
Elapsed16 secs

All Changes:

:

  1. Change #255303

    Category ffmpeg
    Changed by Jun Zhao <barryjzhaoohnoyoudont@tencent.com>
    Changed at Thu 15 Jan 2026 00:56:39
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision b326b3a08d5c263847e13798a85c96ef957abe8d

    Comments

    lavc/av1_parser: Extract SAR from render_size
    Extract the Sample Aspect Ratio (SAR) from render_width_minus_1 and
    render_height_minus_1 in the sequence header.
    
    The AV1 specification defines the render dimensions, which can be used
    in conjunction with the coded dimensions to determine the pixel aspect
    ratio. This ensures consistent aspect ratio handling for AV1 streams
    encapsulated in containers like MP4 or MKV, as observed in the updated
    FATE tests where SAR changes from 0/1 to 1/1.
    
    Signed-off-by: Jun Zhao <barryjzhao@tencent.com>

    Changed files

    • libavcodec/av1_parser.c
    • tests/ref/fate/av1-annexb-demux
    • tests/ref/fate/enhanced-flv-av1
    • tests/ref/fate/enhanced-flv-multitrack
    • tests/ref/lavf-fate/av1.mkv
    • tests/ref/lavf-fate/av1.mp4
  2. Change #255304

    Category ffmpeg
    Changed by Jun Zhao <barryjzhaoohnoyoudont@tencent.com>
    Changed at Thu 15 Jan 2026 00:56:39
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 6c878f8b829bc9da4bbb5196c125e55a7c3ac32f

    Comments

    lavf/movenc: fix missing padding for AV1 extradata
    The extradata allocated in mov_write_single_packet() for AV1 was missing
    the required AV_INPUT_BUFFER_PADDING_SIZE padding bytes. This could lead
    to out-of-bounds reads when the extradata is parsed by bitstream readers.
    
    Replace av_memdup() with av_malloc() + memset() + memcpy() to ensure
    proper padding is present and zeroed.
    
    Reproduced with:
    ./ffmpeg -y -f lavfi -i "testsrc=duration=1:size=320x240:rate=30" -c:v libaom-av1 -cpu-used 8 -crf 50 test-av1.mp4
    
    Signed-off-by: Jun Zhao <barryjzhao@tencent.com>

    Changed files

    • libavformat/movenc.c