-
Notifications
You must be signed in to change notification settings - Fork 26
/
main.cpp
81 lines (64 loc) · 1.98 KB
/
main.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
/*
* Copyright (C) 2016 - 2024 Judd Niemann - All Rights Reserved.
* You may use, distribute and modify this code under the
* terms of the GNU Lesser General Public License, version 2.1
*
* You should have received a copy of GNU Lesser General Public License v2.1
* with this file. If not, please refer to: https://github.com/jniemann66/ReSampler
*/
// main.cpp : defines main entry point
#include <iostream>
#include <string>
#if defined(__ANDROID__)
// define COMPILING_ON_ANDROID macro first before including any user headers
#define COMPILING_ON_ANDROID
#ifdef __aarch64__
#define COMPILING_ON_ANDROID64
#endif
#include <android/log.h>
// https://gist.github.com/dzhioev/6127982
class androidbuf : public std::streambuf {
public:
enum { bufsize = 1024 }; // ... or some other suitable buffer size
androidbuf(const int log_priority, const char * log_tag) :LOG_PRIORITY(log_priority), LOG_TAG(log_tag) { this->setp(buffer, buffer + bufsize - 1); };
private:
int overflow(int c) {
if (c == traits_type::eof()) {
*this->pptr() = traits_type::to_char_type(c);
this->sbumpc();
}
return this->sync() ? traits_type::eof() : traits_type::not_eof(c);
}
int sync() {
int rc = 0;
if (this->pbase() != this->pptr()) {
__android_log_print(LOG_PRIORITY, LOG_TAG, "%s", std::string(this->pbase(), this->pptr() - this->pbase()).c_str());
rc = 0;
this->setp(buffer, buffer + bufsize - 1);
}
return rc;
}
char buffer[bufsize];
const char * LOG_TAG;
const int LOG_PRIORITY;
};
void androidCleanup() {
delete std::cout.rdbuf(0);
delete std::cerr.rdbuf(0);
}
#endif // defined(__ANDROID__)
#include "ReSampler.h"
#include "mpxdecode.h"
#include "iqdemodulator.h"
int main(int argc, char * argv[])
{
#ifdef COMPILING_ON_ANDROID
std::cout.rdbuf(new androidbuf(ANDROID_LOG_INFO, "ReSampler"));
std::cerr.rdbuf(new androidbuf(ANDROID_LOG_ERROR, "ReSampler"));
#endif
int result = ReSampler::runCommand(argc, argv);
#ifdef COMPILING_ON_ANDROID
androidCleanup();
#endif
return result;
}