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

Builder ffmpegsos-solaris10-i386 Build #14181

Results:

Failed shell_2 shell_3 shell_4 shell_5

SourceStamp:

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

BuildSlave:

unstable10x

Reason:

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

Steps and Logfiles:

  1. git update ( 5 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 ( 0 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 14181 Build
codebase Build
got_revision 41d8d12cc29784c85d2cb895a739d3ae66a5f0c4 Git
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision 41d8d12cc29784c85d2cb895a739d3ae66a5f0c4 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. Diego de Souza

Timing:

StartThu Jun 25 23:54:19 2026
EndThu Jun 25 23:54:35 2026
Elapsed15 secs

All Changes:

:

  1. Change #272795

    Category ffmpeg
    Changed by Diego de Souza <ddesouzaohnoyoudont@nvidia.com>
    Changed at Thu 25 Jun 2026 23:45:06
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 41d8d12cc29784c85d2cb895a739d3ae66a5f0c4

    Comments

    avcodec/nvenc: accept P012/P212/YUV444P12MSB input (truncated to 10-bit)
    NVDEC and CUVID now output AV_PIX_FMT_P012 (12-bit 4:2:0),
    AV_PIX_FMT_P212 (12-bit 4:2:2) and AV_PIX_FMT_YUV444P12MSB (12-bit 4:4:4)
    for high-bit-depth content, but nvenc rejected them: nvenc_map_buffer_format()
    returned NV_ENC_BUFFER_FORMAT_UNDEFINED, so a pipeline such as
    "-hwaccel cuda -i 12bit.mp4 -c:v hevc_nvenc" failed with EINVAL.
    
    NVENC has no native 12-bit encode format. As is already done for the
    16-bit inputs (P016, YUV444P16, GBRP16), accept the 12-bit formats and
    map them to the 10-bit NVENC buffer formats, truncating the two least
    significant bits: P012 -> YUV420_10BIT, P212 -> P210, YUV444P12MSB ->
    YUV444_10BIT. They are added to the supported input format list and to
    the IS_10BIT / IS_YUV444 / IS_YUV422 helpers accordingly.
    
    Signed-off-by: Diego de Souza <ddesouza@nvidia.com>

    Changed files

    • libavcodec/nvenc.c