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

Builder ffmpegsos-solaris10-sparc Build #13827

Results:

Failed shell_2 shell_3 shell_4 shell_5

SourceStamp:

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

BuildSlave:

unstable10s

Reason:

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

Steps and Logfiles:

  1. git update ( 10 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 ( 13 secs )
    1. stdio
    2. config.log
  6. shell_4 'gmake fate-rsync' failed ( 1 secs )
    1. stdio
  7. shell_5 '../../../ffmpeg/fate.sh ../../../ffmpeg/fate_config_sos.sh' failed ( 2 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 13827 Build
codebase Build
got_revision 6092f060f431f587b3d619a36d9b9d5f963d8b57 Git
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision 6092f060f431f587b3d619a36d9b9d5f963d8b57 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. Nicolas Gaullier

Timing:

StartFri Aug 14 14:09:52 2026
EndFri Aug 14 14:10:21 2026
Elapsed28 secs

All Changes:

:

  1. Change #278188

    Category ffmpeg
    Changed by Nicolas Gaullier <nicolas.gaullierohnoyoudont@cji.paris>
    Changed at Fri 14 Aug 2026 15:39:48
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 6092f060f431f587b3d619a36d9b9d5f963d8b57

    Comments

    avcodec/h264_parser: align field_order default with the decoder
    Use case: interlaced AVC Intra is typically missing the required information
    for proper tff detection.
    Currently, the decoder defaults to tff, but the parser defaults to progressive.
    
    ./ffmpeg -f lavfi -i testsrc=1920x1080 -codec libx264 -pix_fmt yuv422p10le \
        -x264-params avcintra-class=100:tff=1 -frames 1 tff.h264
    ./ffprobe tff.h264 -of flat -show_entries stream=field_order:frame=interlaced_frame,top_field_first
    
    Before:
    frames.frame.0.interlaced_frame=1
    frames.frame.0.top_field_first=1
    streams.stream.0.field_order="progressive"
    
    After:
    frames.frame.0.interlaced_frame=1
    frames.frame.0.top_field_first=1
    streams.stream.0.field_order="tt"
    
    Issue since field_order setting in 3f1a7ceb2c604deff.
    
    Signed-off-by: Nicolas Gaullier <nicolas.gaullier@cji.paris>

    Changed files

    • libavcodec/h264_parser.c