-
Notifications
You must be signed in to change notification settings - Fork 38
APV versioning changes #97
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 14 commits
8ebc1ef
b3ef663
184fd24
ae2736a
d00ba13
c517562
a0af74c
80342c7
1c62d66
0235af9
9448256
d1e72dd
bb44b85
3eabf4c
559e92d
35ffde0
99ca127
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
This file was deleted.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -2153,5 +2153,11 @@ int oapvd_info(void *au, int au_size, oapv_au_info_t *aui) | |
| #endif // ENABLE_DECODER | ||
| /////////////////////////////////////////////////////////////////////////////// | ||
|
|
||
| static char *oapv_ver = "0.1.13.1"; | ||
| char * oapv_version() { return oapv_ver; } | ||
| char *oapv_version(void) | ||
|
||
| { | ||
| static char oapv_version_string[16]; | ||
| snprintf(oapv_version_string, sizeof(oapv_version_string), "%d.%d.%d.%d", | ||
| OAPV_VER_APISET, OAPV_VER_MAJOR, OAPV_VER_MINOR, OAPV_VER_PATCH); | ||
| return (char*)oapv_version_string; | ||
| } | ||
|
|
||
This file was deleted.
Uh oh!
There was an error while loading. Please reload this page.