You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-04 22:03:09 +02:00
avcodec/ffv1enc: Use version 3 by default (CRCs by default)
Version 3 is since 2013 (FFmpeg 2.1) non experimental so should be widely supported Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
@ -623,7 +623,8 @@ av_cold int ff_ffv1_encode_init(AVCodecContext *avctx)
|
||||
return AVERROR(EINVAL);
|
||||
}
|
||||
s->version = avctx->level;
|
||||
}
|
||||
} else if (s->version < 3)
|
||||
s->version = 3;
|
||||
|
||||
if (s->ec < 0) {
|
||||
if (s->version >= 4) {
|
||||
|
@ -161,7 +161,7 @@ FATE_VCODEC-$(call ENCDEC, FFV1, AVI) += ffv1 ffv1-v0 ffv1-v2 \
|
||||
FATE_VCODEC_SCALE-$(call ENCDEC, FFV1, AVI) += ffv1-v3-yuv422p10 ffv1-v3-yuv444p16 \
|
||||
ffv1-v3-bgr0 ffv1-v3-rgb48 ffv1-2pass10
|
||||
fate-vsynth%-ffv1: ENCOPTS = -slices 4
|
||||
fate-vsynth%-ffv1-v0: CODEC = ffv1
|
||||
fate-vsynth%-ffv1-v0: ENCOPTS = -level 0
|
||||
fate-vsynth%-ffv1-v2: ENCOPTS = -level 2 -strict experimental
|
||||
fate-vsynth%-ffv1-v3-yuv420p: ENCOPTS = -level 3 -pix_fmt yuv420p
|
||||
fate-vsynth%-ffv1-v3-yuv422p10: ENCOPTS = -level 3 -pix_fmt yuv422p10 \
|
||||
|
@ -1,5 +1,5 @@
|
||||
e4e0e27eb8ed99eedc2458d92401c5e4 *tests/data/fate/ffmpeg-loopback-decoding.nut
|
||||
7435259 tests/data/fate/ffmpeg-loopback-decoding.nut
|
||||
aa7b6ff7c731fc5bfc331db8b234a6ce *tests/data/fate/ffmpeg-loopback-decoding.nut
|
||||
7182759 tests/data/fate/ffmpeg-loopback-decoding.nut
|
||||
#tb 0: 1/25
|
||||
#media_type 0: video
|
||||
#codec_id 0: rawvideo
|
||||
|
Reference in New Issue
Block a user