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

Builder ffmpegsos-solaris10-i386 Build #14035

Results:

Failed shell_2 shell_3 shell_4 shell_5

SourceStamp:

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

BuildSlave:

unstable10x

Reason:

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

Steps and Logfiles:

  1. git update ( 7 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 ( 8 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_sos.sh' failed ( 5 secs )
    1. stdio
    2. configure.log
    3. compile.log
    4. test.log

Build Properties:

NameValueSource
branch master Build
builddir /export/home/buildbot/slave/ffmpegsos-solaris10-i386 slave
buildername ffmpegsos-solaris10-i386 Builder
buildnumber 14035 Build
codebase Build
got_revision 3ec0f14f7ddfb5067c18005f2fcc8c2348745c44 Git
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision 3ec0f14f7ddfb5067c18005f2fcc8c2348745c44 Build
scheduler schedule-ffmpegsos-solaris10-i386 Scheduler
slavename unstable10x BuildSlave
workdir /export/home/buildbot/slave/ffmpegsos-solaris10-i386 slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Jun Zhao

Timing:

StartSun Jun 7 21:03:17 2026
EndSun Jun 7 21:03:40 2026
Elapsed23 secs

All Changes:

:

  1. Change #269796

    Category ffmpeg
    Changed by Jun Zhao <barryjzhaoohnoyoudont@tencent.com>
    Changed at Sun 07 Jun 2026 20:55:16
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision e598463b3d3b7703f7578a74e9ee695c3e2e6b00

    Comments

    avcodec/h2645_vui: interpret a degenerate SAR as unspecified
    Per ITU-T H.264 (ISO/IEC 14496-10) Annex E.2.1 and ITU-T H.265
    (ISO/IEC 23008-2) Annex E.3.1, when sar_width or sar_height is zero
    the sample aspect ratio shall be considered unspecified. Internally
    ffmpeg represents an unspecified SAR as 0/1, while fractions with a
    zero denominator are not handled properly (den=0 is silently changed
    to den=1 in h264_ps.c, turning an invalid 20480/0 into a "valid" but
    impossibly extreme 20480/1); so we bridge the gap by replacing x/0
    with 0/1 at the VUI parsing layer.
    
    An av_log warning is added so an invalid SAR in the bitstream is
    diagnosed rather than silently overwritten.
    
    This fixes a problem with some video files provided by game
    OddBallers when executed with Wine/Proton, which report SAR 20480/0.
    
    Based on patch by Giovanni Mascellani <gmascellani@codeweavers.com>.
    Fixes: ticket #23321
    
    Signed-off-by: Jun Zhao <barryjzhao@tencent.com>

    Changed files

    • libavcodec/h2645_vui.c
  2. Change #269797

    Category ffmpeg
    Changed by Jun Zhao <barryjzhaoohnoyoudont@tencent.com>
    Changed at Sun 07 Jun 2026 20:55:16
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 3ec0f14f7ddfb5067c18005f2fcc8c2348745c44

    Comments

    avcodec/h264_ps: set default SAR, remove stale workaround
    Set sps->vui.sar to {0,1} (unspecified) before the VUI parsing
    block, matching the HEVC pattern at hevc_ps.c.  The old
    zero-init-to-1 workaround is now unreachable and is removed.
    
    Suggested-by: James Almer <jamrial@gmail.com>
    Signed-off-by: Jun Zhao <barryjzhao@tencent.com>

    Changed files

    • libavcodec/h264_ps.c