You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
lavc/ffv1enc: Auto-select -coder 1 for >8bit also for yuv.
Reported-by: Christoph Gerstbauer
This commit is contained in:
@@ -780,6 +780,10 @@ static av_cold int encode_init(AVCodecContext *avctx)
|
||||
s->colorspace = 1;
|
||||
s->chroma_planes = 1;
|
||||
s->version = FFMAX(s->version, 1);
|
||||
if (!s->ac && avctx->coder_type == -1) {
|
||||
av_log(avctx, AV_LOG_INFO, "bits_per_raw_sample > 8, forcing coder 1\n");
|
||||
s->ac = 2;
|
||||
}
|
||||
if (!s->ac) {
|
||||
av_log(avctx, AV_LOG_ERROR, "bits_per_raw_sample of more than 8 needs -coder 1 currently\n");
|
||||
return AVERROR(ENOSYS);
|
||||
|
Reference in New Issue
Block a user