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

Builder ffmpegsos-solaris10-i386 Build #13606

Results:

Failed shell_2 shell_3 shell_4 shell_5

SourceStamp:

Projectffmpeg
Repositoryhttps://git.ffmpeg.org/ffmpeg.git
Branchmaster
Revision9559a6036d8b9e1481c0c8977e5e215ca5c23211
Got Revision9559a6036d8b9e1481c0c8977e5e215ca5c23211
Changes1 change

BuildSlave:

unstable10x

Reason:

The SingleBranchScheduler scheduler named 'schedule-ffmpegsos-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 ( 10 secs )
    1. stdio
    2. config.log
  6. shell_4 'gmake fate-rsync' failed ( 2 secs )
    1. stdio
  7. shell_5 '../../../ffmpeg/fate.sh ../../../ffmpeg/fate_config_sos.sh' failed ( 2 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 13606 Build
codebase Build
got_revision 9559a6036d8b9e1481c0c8977e5e215ca5c23211 Git
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision 9559a6036d8b9e1481c0c8977e5e215ca5c23211 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. marcos ashton

Timing:

StartWed Mar 25 02:24:56 2026
EndWed Mar 25 02:25:17 2026
Elapsed20 secs

All Changes:

:

  1. Change #262258

    Category ffmpeg
    Changed by marcos ashton <marcosashiglesiasohnoyoudont@gmail.com>
    Changed at Wed 25 Mar 2026 02:19:08
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 9559a6036d8b9e1481c0c8977e5e215ca5c23211

    Comments

    libavfilter/vf_v360: fix operator precedence in stereo loop condition
    The loop condition in the DEFINE_REMAP macro:
    
      stereo < 1 + s->out_stereo > STEREO_2D
    
    is parsed by C as:
    
      (stereo < (1 + s->out_stereo)) > STEREO_2D
    
    Since STEREO_2D is 0 and relational operators return 0 or 1, the
    outer comparison against 0 is a no-op for STEREO_2D and STEREO_SBS.
    But for STEREO_TB (value 2) the loop runs 3 iterations instead of 2,
    producing an out-of-bounds stereo pass.
    
    Add parentheses so the comparison is evaluated first:
    
      stereo < 1 + (s->out_stereo > STEREO_2D)
    
    This gives 1 iteration for 2D and 2 for any stereo format (SBS or TB),
    matching the actual number of stereo views.
    
    Signed-off-by: marcos ashton <marcosashiglesias@gmail.com>

    Changed files

    • libavfilter/vf_v360.c