aboutsummaryrefslogtreecommitdiffstats
path: root/libSBRenc/src
diff options
context:
space:
mode:
authorDan Willemsen <dwillemsen@google.com>2015-10-27 23:16:31 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2015-10-27 23:16:31 +0000
commita73b059815fc35ba689e5a8235b567b2353eabad (patch)
treea9dfa4fee11d663f9f799c978ff4e6c9952626db /libSBRenc/src
parent9f1b9bb71019b9a773d847cec6f10c198cd6c459 (diff)
parent6e8330732f61d1da1485fc07b61444f490d5e623 (diff)
downloadfdk-aac-a73b059815fc35ba689e5a8235b567b2353eabad.tar.gz
fdk-aac-a73b059815fc35ba689e5a8235b567b2353eabad.tar.bz2
fdk-aac-a73b059815fc35ba689e5a8235b567b2353eabad.zip
Merge "Remove __DATE__/__TIME__"
Diffstat (limited to 'libSBRenc/src')
-rw-r--r--libSBRenc/src/sbr_encoder.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/libSBRenc/src/sbr_encoder.cpp b/libSBRenc/src/sbr_encoder.cpp
index 3e95d6b..464c013 100644
--- a/libSBRenc/src/sbr_encoder.cpp
+++ b/libSBRenc/src/sbr_encoder.cpp
@@ -2331,8 +2331,13 @@ INT sbrEncoder_GetLibInfo( LIB_INFO *info )
info->module_id = FDK_SBRENC;
info->version = LIB_VERSION(SBRENCODER_LIB_VL0, SBRENCODER_LIB_VL1, SBRENCODER_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 = "SBR Encoder";
/* Set flags */