summaryrefslogtreecommitdiffstats
path: root/TVOutDummy/main.cpp
blob: d0a7497d3fb8289f01a74b275fa993c00974f215 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include "SecTVOutService.h"
#include <cstdlib>

int main() {
    android::SecTVOutService::instantiate();

    // let it run for some time (1 sec)
    usleep(1000000);

    return 0;
}