mirror of https://git.ffmpeg.org/ffmpeg.git
decode: copy the output parameters from the last bsf in the chain back to the AVCodecContext
Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
parent
ad99cbc9b3
commit
662558f985
|
@ -221,6 +221,10 @@ int ff_decode_bsfs_init(AVCodecContext *avctx)
|
|||
goto fail;
|
||||
}
|
||||
|
||||
ret = avcodec_parameters_to_context(avctx, s->bsfs[s->nb_bsfs - 1]->par_out);
|
||||
if (ret < 0)
|
||||
return ret;
|
||||
|
||||
return 0;
|
||||
fail:
|
||||
ff_decode_bsfs_uninit(avctx);
|
||||
|
|
Loading…
Reference in New Issue