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

Builder ffmpegsos-solaris10-sparc Build #12296

Results:

Failed shell_2 shell_3 shell_4 shell_5

SourceStamp:

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

BuildSlave:

unstable10s

Reason:

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

Steps and Logfiles:

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

Build Properties:

NameValueSource
branch master Build
builddir /export/home/buildbot-unstable10s/slave/ffmpegsos-solaris10-sparc slave
buildername ffmpegsos-solaris10-sparc Builder
buildnumber 12296 Build
codebase Build
got_revision 1120b3db302165d7ed40df1473e6ae84db61c0f8 Git
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision 1120b3db302165d7ed40df1473e6ae84db61c0f8 Build
scheduler schedule-ffmpegsos-solaris10-sparc Scheduler
slavename unstable10s BuildSlave
workdir /export/home/buildbot-unstable10s/slave/ffmpegsos-solaris10-sparc slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. cenzhanquan1

Timing:

StartThu Oct 23 17:57:36 2025
EndThu Oct 23 17:58:01 2025
Elapsed25 secs

All Changes:

:

  1. Change #246552

    Category ffmpeg
    Changed by cenzhanquan1 <cenzhanquan1ohnoyoudont@xiaomi.com>
    Changed at Thu 23 Oct 2025 16:42:50
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 1120b3db302165d7ed40df1473e6ae84db61c0f8

    Comments

    avcodec/liblc3enc: support packed float (AV_SAMPLE_FMT_FLT) input.
    Previously, the LC3 encoder only accepted planar float (AV_SAMPLE_FMT_FLTP).
    This change extends support to packed float (AV_SAMPLE_FMT_FLT) by properly
    handling channel layout and sample stride.
    
    The pcm data pointer and stride are now calculated based on the sample
    format: for planar, use frame->data[ch]; for packed, use frame->data[0]
    with channel offset. The stride is set to 1 for planar and number of
    channels for packed layout.
    
    This enables encoding from common packed audio sources without requiring
    a prior planar conversion, improving usability and efficiency.
    
    Signed-off-by: cenzhanquan1 <cenzhanquan1@xiaomi.com>

    Changed files

    • libavcodec/liblc3enc.c