Commit e701cd96 authored by Michael Niedermayer's avatar Michael Niedermayer

avutil/avutil_version: Run checks just once

This ensures that applications that call avutil_version() often
would not run the checls every time
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 65efa1db
......@@ -29,6 +29,10 @@
unsigned avutil_version(void)
{
static int checks_done;
if (checks_done)
return LIBAVUTIL_VERSION_INT;
av_assert0(AV_PIX_FMT_VDA_VLD == 81); //check if the pix fmt enum has not had anything inserted or removed by mistake
av_assert0(AV_SAMPLE_FMT_DBLP == 9);
av_assert0(AVMEDIA_TYPE_ATTACHMENT == 4);
......@@ -42,7 +46,7 @@ unsigned avutil_version(void)
}
ff_check_pixfmt_descriptors();
checks_done = 1;
return LIBAVUTIL_VERSION_INT;
}
......
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