hook BGI调用视频

This commit is contained in:
2025-03-19 13:58:38 +08:00
parent 6dca7c6029
commit 60ae578648
9 changed files with 351 additions and 2 deletions

9
include/player_version.h Normal file
View File

@@ -0,0 +1,9 @@
#ifndef _PLAYER_VERSION_H
#define _PLAYER_VERSION_H
#define PLAYER_VERSION_MAJOR 0
#define PLAYER_VERSION_MINOR 0
#define PLAYER_VERSION_MICRO 1
#define PLAYER_VERSION_REV 0
#define PLAYER_VERSION "0.0.1.0"
#define PLAYER_VERSION_INT (((int32_t)PLAYER_VERSION_MAJOR << 24) | ((int32_t)PLAYER_VERSION_MINOR << 16) | ((int32_t)PLAYER_VERSION_MICRO << 8) | (int32_t)PLAYER_VERSION_REV)
#endif