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

Builder ffmpeg-solaris10-sparc Build #12542

Results:

Failed shell_2 shell_3 shell_4 shell_5

SourceStamp:

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

BuildSlave:

unstable10s

Reason:

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

Steps and Logfiles:

  1. git update ( 13 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 ( 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-unstable10s/slave/ffmpeg-solaris10-sparc slave
buildername ffmpeg-solaris10-sparc Builder
buildnumber 12542 Build
codebase Build
got_revision 6696a9b8bd2eacf90d7bd199d37115ba12def793 Git
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision 6696a9b8bd2eacf90d7bd199d37115ba12def793 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. Ramiro Polla

Timing:

StartThu Sep 4 17:32:20 2025
EndThu Sep 4 17:32:44 2025
Elapsed24 secs

All Changes:

:

  1. Change #244451

    Category ffmpeg
    Changed by Ramiro Polla <ramiro.pollaohnoyoudont@gmail.com>
    Changed at Thu 04 Sep 2025 17:28:41
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision e207520b82ec46c5cf12f7f71f38f142c88d51c8

    Comments

    avcodec/mjpegdec: fix skipping of bytes for unknown APPx markers
    The loop to skip the remaining bytes was off by one for all markers
    except for Adob.
    
    This patch uses post-decrement instead of pre-decrement in the while
    loop to make the len value easier to understand, and updates the len
    value to reflect this change for the Adob marker.

    Changed files

    • libavcodec/mjpegdec.c
  2. Change #244452

    Category ffmpeg
    Changed by Ramiro Polla <ramiro.pollaohnoyoudont@gmail.com>
    Changed at Thu 04 Sep 2025 17:28:41
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 6696a9b8bd2eacf90d7bd199d37115ba12def793

    Comments

    avcodec/mjpegdec: ignore APPx stubs unless AV_EF_EXPLODE is set
    Consider APPx fields that are too short to contain an id field (32-bit)
    as stubs, and ignore them if AV_EF_EXPLODE is not set.
    
    This has been seen in the MJPEG output from some webcams (such as the
    Logitech C270 and C920) and the JPEG images embedded in DNG images
    from the Pentax K-1 camera.

    Changed files

    • libavcodec/mjpegdec.c