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

Builder ffmpegsos-solaris10-i386 Build #14301

Results:

Failed

SourceStamp:

Projectffmpeg
Repositoryhttps://git.ffmpeg.org/ffmpeg.git
Branchmaster
Revision6397b2b5b6493ed5cb61bd18fdac18a32ae27548
Changes3 changes

BuildSlave:

unstable10x

Reason:

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

Steps and Logfiles:

  1. git updating ( 5 secs )
    1. stdio
  2. shell  
    1. - no logs -
  3. shell_1  
    1. - no logs -
  4. shell_2  
    1. - no logs -
  5. shell_3  
    1. - no logs -
  6. shell_4  
    1. - no logs -
  7. shell_5  
    1. - no logs -

Build Properties:

NameValueSource
branch master Build
builddir /export/home/buildbot/slave/ffmpegsos-solaris10-i386 slave
buildername ffmpegsos-solaris10-i386 Builder
buildnumber 14301 Build
codebase Build
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision 6397b2b5b6493ed5cb61bd18fdac18a32ae27548 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. Romain Beauxis

Timing:

StartSat Sep 19 14:04:14 2026
EndSat Sep 19 14:04:20 2026
Elapsed6 secs

All Changes:

:

  1. Change #282212

    Category ffmpeg
    Changed by Romain Beauxis <romain.beauxisohnoyoudont@gmail.com>
    Changed at Sat 19 Sep 2026 15:40:52
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision fda85d16e0800726d514c93addf655437c4f8256

    Comments

    avcodec/mpegaudiodecheader: add avpriv_mpegaudio_decode_header2()
    MPADecodeHeader is allocated by callers in other libraries, on the stack
    among other places, so fields cannot be added to it. Add MPADecodeHeader2,
    which holds every field of the header and which libavcodec itself
    allocates, along with a packer turning it back into header bits.
    
    A test program walks the frames of a file, checks that every header
    encodes back to its original bits and prints the header fields.

    Changed files

    • libavcodec/Makefile
    • libavcodec/mpegaudiodecheader.c
    • libavcodec/mpegaudiodecheader.h
    • libavcodec/tests/.gitignore
    • libavcodec/tests/mpegaudiodecheader.c
    • libavcodec/version.h
    • tests/fate/mp3.mak
    • tests/ref/fate/mpegaudiodecheader-bitrates
    • tests/ref/fate/mpegaudiodecheader-hecommon
    • tests/ref/fate/mpegaudiodecheader-joint-stereo
    • tests/ref/fate/mpegaudiodecheader-libmp3lame
    • tests/ref/fate/mpegaudiodecheader-mp2
    • tests/ref/fate/mpegaudiodecheader-mp3-remux
    • tests/ref/fate/mpegaudiodecheader-mpeg25
    • tests/ref/fate/mpegaudiodecheader-xing
  2. Change #282213

    Category ffmpeg
    Changed by Romain Beauxis <romain.beauxisohnoyoudont@gmail.com>
    Changed at Sat 19 Sep 2026 15:40:52
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision bec2ce0f713bfc6d294e79a08a320a029762921c

    Comments

    avcodec, avformat: switch to avpriv_mpegaudio_decode_header2()
    Port every caller to the new entry point, which lets libavcodec allocate
    the header, and prepare the old one for removal.
    
    The mp3 decoder keeps a named MPADecodeHeader2 in its context, so the
    macro spelling out the header fields is no longer needed.

    Changed files

    • libavcodec/libmp3lame.c
    • libavcodec/libshine.c
    • libavcodec/mpegaudiodec_template.c
    • libavcodec/mpegaudiodecheader.c
    • libavcodec/mpegaudiodecheader.h
    • libavformat/mp3dec.c
    • libavformat/mp3enc.c
  3. Change #282214

    Category ffmpeg
    Changed by Romain Beauxis <romain.beauxisohnoyoudont@gmail.com>
    Changed at Sat 19 Sep 2026 15:40:52
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 6397b2b5b6493ed5cb61bd18fdac18a32ae27548

    Comments

    avformat/mp3enc: build the Xing frame header from the first audio frame
    Some hardware decoders reject files whose Xing frame header differs from
    the audio frames, e.g. joint stereo from libmp3lame. Fail when the first
    frame does not match the Xing frame layout.
    
    Fixes #24129.

    Changed files

    • libavformat/mp3enc.c
    • tests/ref/fate/cover-art-mp3-id3v2-remux
    • tests/ref/fate/gapless-mp3-remux
    • tests/ref/fate/id3v2-priv-remux
    • tests/ref/fate/id3v2-reenc-remux-keep
    • tests/ref/fate/mpegaudiodecheader-libmp3lame
    • tests/ref/fate/mpegaudiodecheader-mp3-remux