mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-25 00:32:31 +00:00
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: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
65efa1dbd9
commit
e701cd96c2
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user