Commit e1e9f362 authored by bcoudurier's avatar bcoudurier

add hint for closed gop and sc threshold error message

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@7692 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 92158475
......@@ -1095,7 +1095,7 @@ int MPV_encode_init(AVCodecContext *avctx)
}
if(s->avctx->scenechange_threshold < 1000000000 && (s->flags & CODEC_FLAG_CLOSED_GOP)){
av_log(avctx, AV_LOG_ERROR, "closed gop with scene change detection arent supported yet\n");
av_log(avctx, AV_LOG_ERROR, "closed gop with scene change detection arent supported yet, set threshold to 1000000000\n");
return -1;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment