aboutsummaryrefslogtreecommitdiffstats
path: root/libSBRenc/src
diff options
context:
space:
mode:
authorDan Willemsen <dwillemsen@google.com>2015-10-27 23:27:46 +0000
committerandroid-build-merger <android-build-merger@google.com>2015-10-27 23:27:46 +0000
commitca249e444bd59c5b2c3a094108f6c489f8ce80e1 (patch)
tree1fd03f46c5c1ada6678ea667f1d6537e01f4a68c /libSBRenc/src
parent106fb85b42000d085329fbd6bb6cc1d2ac47317d (diff)
parenta73b059815fc35ba689e5a8235b567b2353eabad (diff)
downloadfdk-aac-ca249e444bd59c5b2c3a094108f6c489f8ce80e1.tar.gz
fdk-aac-ca249e444bd59c5b2c3a094108f6c489f8ce80e1.tar.bz2
fdk-aac-ca249e444bd59c5b2c3a094108f6c489f8ce80e1.zip
Merge "Remove __DATE__/__TIME__"
am: a73b059815 * commit 'a73b059815fc35ba689e5a8235b567b2353eabad': 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 */