summaryrefslogtreecommitdiffstats
path: root/TVOutDummy/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TVOutDummy/main.cpp')
-rw-r--r--TVOutDummy/main.cpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/TVOutDummy/main.cpp b/TVOutDummy/main.cpp
new file mode 100644
index 0000000..d0a7497
--- /dev/null
+++ b/TVOutDummy/main.cpp
@@ -0,0 +1,11 @@
+#include "SecTVOutService.h"
+#include <cstdlib>
+
+int main() {
+ android::SecTVOutService::instantiate();
+
+ // let it run for some time (1 sec)
+ usleep(1000000);
+
+ return 0;
+}