mirror of https://git.ffmpeg.org/ffmpeg.git
avcodec/utils: check the private context class
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
3305acdc92
commit
ddd7dac7ae
|
@ -1680,6 +1680,10 @@ int attribute_align_arg avcodec_open2(AVCodecContext *avctx, const AVCodec *code
|
|||
avctx->time_base = av_inv_q(av_mul_q(avctx->framerate, (AVRational){avctx->ticks_per_frame, 1}));
|
||||
#endif
|
||||
}
|
||||
if (codec->priv_data_size > 0 && avctx->priv_data && codec->priv_class) {
|
||||
av_assert0(*(const AVClass **)avctx->priv_data == codec->priv_class);
|
||||
}
|
||||
|
||||
end:
|
||||
ff_unlock_avcodec();
|
||||
if (options) {
|
||||
|
|
Loading…
Reference in New Issue