1
0
mirror of https://github.com/lvgl/lvgl.git synced 2025-01-14 06:42:58 +08:00

fix(extra): adjust image decoder initialization order (#3085)

Co-authored-by: pengyiqiang <pengyiqiang@xiaomi.com>
This commit is contained in:
_VIFEXTech 2022-02-18 19:56:14 +08:00 committed by GitHub
parent f23ae6e67c
commit 48cb4e9164
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -58,6 +58,10 @@ void lv_extra_init(void)
lv_fs_win32_init(); lv_fs_win32_init();
#endif #endif
#if LV_USE_FFMPEG
lv_ffmpeg_init();
#endif
#if LV_USE_PNG #if LV_USE_PNG
lv_png_init(); lv_png_init();
#endif #endif
@ -78,10 +82,6 @@ void lv_extra_init(void)
lv_freetype_init(0, 0, 0); lv_freetype_init(0, 0, 0);
# endif # endif
#endif #endif
#if LV_USE_FFMPEG
lv_ffmpeg_init();
#endif
} }
/********************** /**********************