lavc: Add AV_EF flags to restore support for the error_resilience framework in the new API.
The existing flags prior to this have a semantically different meaning and cannot be used. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
@@ -619,6 +619,13 @@ int attribute_align_arg avcodec_open2(AVCodecContext *avctx, AVCodec *codec, AVD
|
||||
/* FF_ER_CAREFUL (==1) implies AV_EF_CRCCHECK (== 1<<1 - 1),
|
||||
FF_ER_COMPLIANT (==2) implies AV_EF_{CRCCHECK,BITSTREAM} (== 1<<2 - 1), et cetera} */
|
||||
avctx->err_recognition |= (1<<(avctx->error_recognition-(avctx->error_recognition>=FF_ER_VERY_AGGRESSIVE))) - 1;
|
||||
switch(avctx->error_recognition){
|
||||
case FF_ER_VERY_AGGRESSIVE:
|
||||
case FF_ER_AGGRESSIVE : avctx->err_recognition |= AV_EF_AGGRESSIVE;
|
||||
case FF_ER_COMPLIANT : avctx->err_recognition |= AV_EF_COMPLIANT;
|
||||
case FF_ER_CAREFUL : avctx->err_recognition |= AV_EF_CAREFUL;
|
||||
}
|
||||
|
||||
av_log(avctx, AV_LOG_DEBUG, "err{or,}_recognition combined: %d; %d\n",
|
||||
avctx->error_recognition, avctx->err_recognition);
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user