We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 59e594e commit 2b87992Copy full SHA for 2b87992
include/oboe/Version.h
@@ -35,7 +35,7 @@
35
#define OBOE_VERSION_MINOR 0
36
37
// Type: 16-bit unsigned int. Min value: 0 Max value: 65535. See below for description.
38
-#define OBOE_VERSION_PATCH 0
+#define OBOE_VERSION_PATCH 1
39
40
#define OBOE_STRINGIFY(x) #x
41
#define OBOE_TOSTRING(x) OBOE_STRINGIFY(x)
src/common/AudioStreamBuilder.cpp
@@ -75,6 +75,9 @@ AudioStream *AudioStreamBuilder::build() {
75
}
76
77
Result AudioStreamBuilder::openStream(AudioStream **streamPP) {
78
+ LOGD("%s() %s -------- Oboe version " OBOE_VERSION_TEXT " --------",
79
+ __func__, getDirection() == Direction::Input ? "INPUT" : "OUTPUT");
80
+
81
if (streamPP == nullptr) {
82
return Result::ErrorNull;
83
0 commit comments