forked from chromium/chromium
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmidi_output_port_android.cc
42 lines (31 loc) · 1.18 KB
/
midi_output_port_android.cc
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
// Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "media/midi/midi_output_port_android.h"
#include "base/android/jni_array.h"
#include "media/midi/midi_jni_headers/MidiOutputPortAndroid_jni.h"
using base::android::ScopedJavaLocalRef;
namespace midi {
MidiOutputPortAndroid::MidiOutputPortAndroid(JNIEnv* env, jobject raw)
: raw_port_(env, raw) {}
MidiOutputPortAndroid::~MidiOutputPortAndroid() {
Close();
}
bool MidiOutputPortAndroid::Open() {
JNIEnv* env = base::android::AttachCurrentThread();
return Java_MidiOutputPortAndroid_open(env, raw_port_);
}
void MidiOutputPortAndroid::Close() {
JNIEnv* env = base::android::AttachCurrentThread();
Java_MidiOutputPortAndroid_close(env, raw_port_);
}
void MidiOutputPortAndroid::Send(const std::vector<uint8_t>& data) {
if (data.size() == 0) {
return;
}
JNIEnv* env = base::android::AttachCurrentThread();
ScopedJavaLocalRef<jbyteArray> data_to_pass =
base::android::ToJavaByteArray(env, &data[0], data.size());
Java_MidiOutputPortAndroid_send(env, raw_port_, data_to_pass);
}
} // namespace midi