diff options
author | Dan Willemsen <dwillemsen@google.com> | 2015-10-27 23:16:31 +0000 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2015-10-27 23:16:31 +0000 |
commit | a73b059815fc35ba689e5a8235b567b2353eabad (patch) | |
tree | a9dfa4fee11d663f9f799c978ff4e6c9952626db /libMpegTPEnc/src/tpenc_lib.cpp | |
parent | 9f1b9bb71019b9a773d847cec6f10c198cd6c459 (diff) | |
parent | 6e8330732f61d1da1485fc07b61444f490d5e623 (diff) | |
download | fdk-aac-a73b059815fc35ba689e5a8235b567b2353eabad.tar.gz fdk-aac-a73b059815fc35ba689e5a8235b567b2353eabad.tar.bz2 fdk-aac-a73b059815fc35ba689e5a8235b567b2353eabad.zip |
Merge "Remove __DATE__/__TIME__"
Diffstat (limited to 'libMpegTPEnc/src/tpenc_lib.cpp')
-rw-r--r-- | libMpegTPEnc/src/tpenc_lib.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libMpegTPEnc/src/tpenc_lib.cpp b/libMpegTPEnc/src/tpenc_lib.cpp index d0a2fec..24fb32f 100644 --- a/libMpegTPEnc/src/tpenc_lib.cpp +++ b/libMpegTPEnc/src/tpenc_lib.cpp @@ -619,8 +619,13 @@ TRANSPORTENC_ERROR transportEnc_GetLibInfo( LIB_INFO *info ) info->module_id = FDK_TPENC; info->version = LIB_VERSION(TP_LIB_VL0, TP_LIB_VL1, TP_LIB_VL2); LIB_VERSION_STRING(info); +#ifdef __ANDROID__ + info->build_date = ""; + info->build_time = ""; +#else info->build_date = __DATE__; info->build_time = __TIME__; +#endif info->title = TP_LIB_TITLE; /* Set flags */ |