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

Builder ffmpeg64-solaris10-i386 Build #12244

Results:

Failed shell_2 shell_3 shell_4 shell_5

SourceStamp:

Projectffmpeg
Repositoryhttps://git.ffmpeg.org/ffmpeg.git
Branchmaster
Revision8ea2b993fdd15395a5bf6e0edbdca850d4553da9
Got Revision8ea2b993fdd15395a5bf6e0edbdca850d4553da9
Changes6 changes

BuildSlave:

unstable10x

Reason:

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

Steps and Logfiles:

  1. git update ( 6 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_64.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/ffmpeg64-solaris10-i386 slave
buildername ffmpeg64-solaris10-i386 Builder
buildnumber 12244 Build
codebase Build
got_revision 8ea2b993fdd15395a5bf6e0edbdca850d4553da9 Git
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision 8ea2b993fdd15395a5bf6e0edbdca850d4553da9 Build
scheduler schedule-ffmpeg64-solaris10-i386 Scheduler
slavename unstable10x BuildSlave
workdir /export/home/buildbot/slave/ffmpeg64-solaris10-i386 slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Zhao Zhili

Timing:

StartSun Jun 1 10:55:12 2025
EndSun Jun 1 10:55:29 2025
Elapsed17 secs

All Changes:

:

  1. Change #231150

    Category ffmpeg
    Changed by Zhao Zhili <zhilizhaoohnoyoudont@tencent.com>
    Changed at Sun 01 Jun 2025 10:35:23
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision c80002aa81e39f6bcc8d08c13acf8f9f61105cb0

    Comments

    avcodec/h2645_vui: Ensure color primaries/trc/space isn't reserved value
    Fix error reported by swscaler:
    Unsupported input (Operation not supported): fmt:yuv420p csp:unknown prim:reserved trc:bt709 -> fmt:yuv420p csp:bt709 prim:reserved trc:bt709
    
    Signed-off-by: Zhao Zhili <zhilizhao@tencent.com>

    Changed files

    • libavcodec/h2645_vui.c
  2. Change #231151

    Category ffmpeg
    Changed by Zhao Zhili <zhilizhaoohnoyoudont@tencent.com>
    Changed at Sun 01 Jun 2025 10:35:23
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 9a19ba40678220c1ac8ec00501fb1372ced2e826

    Comments

    tests/fate/cbs: Add hevc metadata set color test
    Signed-off-by: Zhao Zhili <zhilizhao@tencent.com>

    Changed files

    • tests/fate/cbs.mak
  3. Change #231152

    Category ffmpeg
    Changed by Zhao Zhili <zhilizhaoohnoyoudont@tencent.com>
    Changed at Sun 01 Jun 2025 10:35:23
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 64116800bef4e1a7960a2ac0aecd6f3b9e3e6add

    Comments

    tests/fate/hevc: Fix dependancy for hevc-alpha
    Signed-off-by: Zhao Zhili <zhilizhao@tencent.com>

    Changed files

    • tests/fate/hevc.mak
  4. Change #231153

    Category ffmpeg
    Changed by Zhao Zhili <zhilizhaoohnoyoudont@tencent.com>
    Changed at Sun 01 Jun 2025 10:35:23
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 3d9b284ad148ac4ccad21773f7ae44ab80a3da6d

    Comments

    tests: Add fate-hevc-color-reserved
    Signed-off-by: Zhao Zhili <zhilizhao@tencent.com>

    Changed files

    • tests/fate/hevc.mak
    • tests/ref/fate/hevc-color-reserved
  5. Change #231154

    Category ffmpeg
    Changed by Zhao Zhili <zhilizhaoohnoyoudont@tencent.com>
    Changed at Sun 01 Jun 2025 10:36:54
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 56cf1c084d50e1b8bb2e667bb9c0aaecb4ae48fc

    Comments

    avformat/movenc: Fix flush fragment
    The follow cmd output corrupted file before the patch:
    
    ffmpeg -f lavfi -i color=blue,trim=duration=0.04 \
    	-f lavfi -i anullsrc,atrim=duration=2 \
    	-movflags +empty_moov+hybrid_fragmented \
    	-frag_duration 1000000 \
    	-frag_interleave 1 \
    	output.mp4
    
    1. first_track is the first track with track->entry != 0. As in the
    command above, video track (track index 0) has a single frame. When
    flush the second fragment, first_track is 1, the audio track.
    
    2. write_moof = i == first_track, so write_moof is false for i = 0.
    
    3. When mov->frag_interleave != 0, mov->mdat_buf != NULL, because
    it contains audio data. So avio_write is called before write_moof,
    that is, the data write before moof, and mov_finish_fragment
    executed with wrong mdat_start.
    
    4. With normal fmp4 output, the error isn't obvious. With
    hybrid_fragmented, ffplay output.mp4 shows a lot of error messages.
    
    Signed-off-by: Zhao Zhili <zhilizhao@tencent.com>

    Changed files

    • libavformat/movenc.c
    • tests/fate/mov.mak
  6. Change #231155

    Category ffmpeg
    Changed by Zhao Zhili <zhilizhaoohnoyoudont@tencent.com>
    Changed at Sun 01 Jun 2025 10:37:00
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 8ea2b993fdd15395a5bf6e0edbdca850d4553da9

    Comments

    avformat/movenc: Reduce loop iterations in mov_flush_fragment
    Signed-off-by: Zhao Zhili <zhilizhao@tencent.com>

    Changed files

    • libavformat/movenc.c