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

Builder ffmpeg-solaris10-sparc Build #13155

Results:

Failed shell_2 shell_3 shell_4 shell_5

SourceStamp:

Projectffmpeg
Repositoryhttps://git.ffmpeg.org/ffmpeg.git
Branchmaster
Revision8030e3b8999fa2c2ab2263372b7e375241e3eb4d
Got Revision8030e3b8999fa2c2ab2263372b7e375241e3eb4d
Changes10 changes

BuildSlave:

unstable10s

Reason:

The SingleBranchScheduler scheduler named 'schedule-ffmpeg-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 ( 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.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 13155 Build
codebase Build
got_revision 8030e3b8999fa2c2ab2263372b7e375241e3eb4d Git
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision 8030e3b8999fa2c2ab2263372b7e375241e3eb4d 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. Marvin Scholz

Timing:

StartThu Feb 19 17:24:50 2026
EndThu Feb 19 17:25:08 2026
Elapsed18 secs

All Changes:

:

  1. Change #258137

    Category ffmpeg
    Changed by Marvin Scholz <epirat07ohnoyoudont@gmail.com>
    Changed at Thu 19 Feb 2026 17:18:11
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision cf755be215be278222358204b13d6f38b37bd384

    Comments

    lavf: replace read_{play,pause} by a single callback

    Changed files

    • libavformat/demux.h
    • libavformat/demux_utils.c
    • libavformat/rtspdec.c
  2. Change #258139

    Category ffmpeg
    Changed by Marvin Scholz <epirat07ohnoyoudont@gmail.com>
    Changed at Thu 19 Feb 2026 17:18:11
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 633dcf71e8c88be79bd0534ece896402eacdde50

    Comments

    avformat: Add new demuxer command API
    This new API adds the ability to send commands to the demuxer and also
    receive replies to these commands.
    
    It is useful in cases like the RTSP demuxer, where it might be desirable
    for the API user to send commands like SET_PARAMETER or PLAY and PAUSE.
    
    Sending and receiving are decoupled, as to not require waiting for a
    reply when sending, as with some demuxers and depending on the command
    it could be necessary to process further packets in the meantime
    before requesting a reply.

    Changed files

    • libavformat/avformat.h
    • libavformat/demux.h
    • libavformat/demux_utils.c
  3. Change #258140

    Category ffmpeg
    Changed by Marvin Scholz <epirat07ohnoyoudont@gmail.com>
    Changed at Thu 19 Feb 2026 17:18:11
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 368ecdd3a4fcee3149d23796d012811e65f96e97

    Comments

    rtsp: expose rtsp_send_cmd_with_content_async
    Add the ff_ prefix and move the declaration to the header, so it can
    be used in other places like rtspdec in a future commit.

    Changed files

    • libavformat/rtsp.c
    • libavformat/rtsp.h
  4. Change #258141

    Category ffmpeg
    Changed by Marvin Scholz <epirat07ohnoyoudont@gmail.com>
    Changed at Thu 19 Feb 2026 17:18:12
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 44065ea8787fad4074b8e6b942475dfa63626c8d

    Comments

    avformat/rtspdec: Add SET_PARAMETER command support
    Add SET_PARAMETER support, this allows sending SET_PARAMETER requests to
    the server using the API.

    Changed files

    • libavformat/avformat.h
    • libavformat/rtspdec.c
  5. Change #258142

    Category ffmpeg
    Changed by Marvin Scholz <epirat07ohnoyoudont@gmail.com>
    Changed at Thu 19 Feb 2026 17:18:12
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 6d8950f04624f56f3bb1aec15422d47bad1f5910

    Comments

    avformat: rtsp: handle interleaved pending packets
    Fixes the behavior when calling ff_rtsp_read_reply again after it
    was called at another place with return_on_interleaved_data set to
    true. Before, it would result in completely corrupting the internal
    state as the $ interleaved packet marker would have already been read
    which the next run of ff_rtsp_read_reply would look for but never find
    it, trying to read packet data as RTSP message.

    Changed files

    • libavformat/rtsp.c
    • libavformat/rtsp.h
    • libavformat/rtspdec.c
  6. Change #258143

    Category ffmpeg
    Changed by Marvin Scholz <epirat07ohnoyoudont@gmail.com>
    Changed at Thu 19 Feb 2026 17:18:12
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision b59471f8c80c32489c7db93b7bd30b891c69d980

    Comments

    avformat: rtsp: do not skip packets in SET_PARAMETER command handling
    Return EAGAIN so the client has a chance to read the pending packets
    instead of just silently discarding them internally.

    Changed files

    • libavformat/rtspdec.c
  7. Change #258144

    Category ffmpeg
    Changed by Marvin Scholz <epirat07ohnoyoudont@gmail.com>
    Changed at Thu 19 Feb 2026 17:18:12
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 5daa45fa01129786f919e2fc95231e61e551e7fa

    Comments

    avformat: rtsp: fix log message formatting

    Changed files

    • libavformat/rtsp.c
  8. Change #258145

    Category ffmpeg
    Changed by Marvin Scholz <epirat07ohnoyoudont@gmail.com>
    Changed at Thu 19 Feb 2026 17:18:12
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision b63f69fccfab672fbabdab47ad21b1805aab0d1d

    Comments

    avformat: rtsp: add functions to allow stored replies
    This adds the ability to have a stored reply, needed for the
    SET_PARAMETERS command feature to reliably report the reply even
    while intermediate packets are read.

    Changed files

    • libavformat/rtsp.c
    • libavformat/rtsp.h
  9. Change #258146

    Category ffmpeg
    Changed by Marvin Scholz <epirat07ohnoyoudont@gmail.com>
    Changed at Thu 19 Feb 2026 17:18:12
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision da821ec3169d708dc878f091d191efcf7ca438ae

    Comments

    avformat: rtspdec: use stored replies for SET_PARAMETER command
    Makes the reply reading completely non-blocking and reliably reports
    the reply even when interleaved packets are read.

    Changed files

    • libavformat/rtspdec.c
  10. Change #258147

    Category ffmpeg
    Changed by Marvin Scholz <epirat07ohnoyoudont@gmail.com>
    Changed at Thu 19 Feb 2026 17:18:12
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 8030e3b8999fa2c2ab2263372b7e375241e3eb4d

    Comments

    avformat: rtspdec: do not allow SET_PARAMETER command too early

    Changed files

    • libavformat/rtspdec.c