aboutsummaryrefslogtreecommitdiffstats
path: root/libMpegTPDec
diff options
context:
space:
mode:
authorTimothy Gu <timothygu99@gmail.com>2016-01-26 11:57:49 -0800
committerTimothy Gu <timothygu99@gmail.com>2016-01-26 11:57:49 -0800
commitc8ad7a2ef919a54e2549df097bcf37838e6381b1 (patch)
tree735fe06eedc3ffa43956f9adad4765c3b244e002 /libMpegTPDec
parent047376af8c47d45c78204112a7d1b873c93822bc (diff)
parentca249e444bd59c5b2c3a094108f6c489f8ce80e1 (diff)
downloadfdk-aac-c8ad7a2ef919a54e2549df097bcf37838e6381b1.tar.gz
fdk-aac-c8ad7a2ef919a54e2549df097bcf37838e6381b1.tar.bz2
fdk-aac-c8ad7a2ef919a54e2549df097bcf37838e6381b1.zip
Merge remote-tracking branch 'aosp/master' into update
Diffstat (limited to 'libMpegTPDec')
-rw-r--r--libMpegTPDec/src/tpdec_lib.cpp5
-rw-r--r--libMpegTPDec/src/version5
2 files changed, 10 insertions, 0 deletions
diff --git a/libMpegTPDec/src/tpdec_lib.cpp b/libMpegTPDec/src/tpdec_lib.cpp
index 1f9f29b..445615d 100644
--- a/libMpegTPDec/src/tpdec_lib.cpp
+++ b/libMpegTPDec/src/tpdec_lib.cpp
@@ -1268,8 +1268,13 @@ TRANSPORTDEC_ERROR transportDec_GetLibInfo( LIB_INFO *info )
info += i;
info->module_id = FDK_TPDEC;
+#ifdef __ANDROID__
+ info->build_date = "";
+ info->build_time = "";
+#else
info->build_date = __DATE__;
info->build_time = __TIME__;
+#endif
info->title = TP_LIB_TITLE;
info->version = LIB_VERSION(TP_LIB_VL0, TP_LIB_VL1, TP_LIB_VL2);
LIB_VERSION_STRING(info);
diff --git a/libMpegTPDec/src/version b/libMpegTPDec/src/version
index cda01c8..fc7e5f0 100644
--- a/libMpegTPDec/src/version
+++ b/libMpegTPDec/src/version
@@ -4,5 +4,10 @@
#define TP_LIB_VL1 3
#define TP_LIB_VL2 4
#define TP_LIB_TITLE "MPEG Transport"
+#ifdef __ANDROID__
+#define TP_LIB_BUILD_DATE ""
+#define TP_LIB_BUILD_TIME ""
+#else
#define TP_LIB_BUILD_DATE __DATE__
#define TP_LIB_BUILD_TIME __TIME__
+#endif