blob: 6122687e9e205e6dfe2a1bdd1c875e12c971364f [file] [log] [blame]
Hyundo Moon660a74e2017-12-13 11:29:45 +09001/*
2 * Copyright 2018 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#ifndef ANDROID_JAUDIOTRACK_H
18#define ANDROID_JAUDIOTRACK_H
19
Dichen Zhangf8726912018-10-17 13:31:26 -070020#include <vector>
21#include <utility>
Hyundo Moon660a74e2017-12-13 11:29:45 +090022#include <jni.h>
Hyundo Moonfd328172017-12-14 10:46:54 +090023#include <media/AudioResamplerPublic.h>
Hyundo Moon42a6dec2018-01-22 19:26:47 +090024#include <media/AudioSystem.h>
Hyundo Moonfd328172017-12-14 10:46:54 +090025#include <media/VolumeShaper.h>
Hyundo Moon660a74e2017-12-13 11:29:45 +090026#include <system/audio.h>
Hyundo Moonfd328172017-12-14 10:46:54 +090027#include <utils/Errors.h>
28
29#include <media/AudioTimestamp.h> // It has dependency on audio.h/Errors.h, but doesn't
30 // include them in it. Therefore it is included here at last.
Hyundo Moon660a74e2017-12-13 11:29:45 +090031
32namespace android {
33
Dichen Zhangf8726912018-10-17 13:31:26 -070034class JAudioTrack : public RefBase {
Hyundo Moon660a74e2017-12-13 11:29:45 +090035public:
36
Hyundo Moon42a6dec2018-01-22 19:26:47 +090037 /* Events used by AudioTrack callback function (callback_t).
38 * Keep in sync with frameworks/base/media/java/android/media/AudioTrack.java NATIVE_EVENT_*.
39 */
40 enum event_type {
41 EVENT_MORE_DATA = 0, // Request to write more data to buffer.
Dichen Zhangf8726912018-10-17 13:31:26 -070042 EVENT_UNDERRUN = 1, // Buffer underrun occurred. This will not occur for
43 // static tracks.
Hyundo Moon42a6dec2018-01-22 19:26:47 +090044 EVENT_NEW_IAUDIOTRACK = 6, // IAudioTrack was re-created, either due to re-routing and
45 // voluntary invalidation by mediaserver, or mediaserver crash.
46 EVENT_STREAM_END = 7, // Sent after all the buffers queued in AF and HW are played
47 // back (after stop is called) for an offloaded track.
48 };
49
50 class Buffer
51 {
52 public:
53 size_t mSize; // input/output in bytes.
54 void* mData; // pointer to the audio data.
55 };
56
57 /* As a convenience, if a callback is supplied, a handler thread
58 * is automatically created with the appropriate priority. This thread
59 * invokes the callback when a new buffer becomes available or various conditions occur.
60 *
61 * Parameters:
62 *
63 * event: type of event notified (see enum AudioTrack::event_type).
64 * user: Pointer to context for use by the callback receiver.
65 * info: Pointer to optional parameter according to event type:
66 * - EVENT_MORE_DATA: pointer to JAudioTrack::Buffer struct. The callback must not
67 * write more bytes than indicated by 'size' field and update 'size' if fewer bytes
68 * are written.
69 * - EVENT_NEW_IAUDIOTRACK: unused.
70 * - EVENT_STREAM_END: unused.
71 */
72
73 typedef void (*callback_t)(int event, void* user, void *info);
74
Hyundo Moon660a74e2017-12-13 11:29:45 +090075 /* Creates an JAudioTrack object for non-offload mode.
76 * Once created, the track needs to be started before it can be used.
77 * Unspecified values are set to appropriate default values.
78 *
79 * Parameters:
80 *
81 * streamType: Select the type of audio stream this track is attached to
82 * (e.g. AUDIO_STREAM_MUSIC).
83 * sampleRate: Data source sampling rate in Hz. Zero means to use the sink sample rate.
84 * A non-zero value must be specified if AUDIO_OUTPUT_FLAG_DIRECT is set.
85 * 0 will not work with current policy implementation for direct output
86 * selection where an exact match is needed for sampling rate.
87 * (TODO: Check direct output after flags can be used in Java AudioTrack.)
88 * format: Audio format. For mixed tracks, any PCM format supported by server is OK.
89 * For direct and offloaded tracks, the possible format(s) depends on the
90 * output sink.
91 * (TODO: How can we check whether a format is supported?)
92 * channelMask: Channel mask, such that audio_is_output_channel(channelMask) is true.
Hyundo Moon42a6dec2018-01-22 19:26:47 +090093 * cbf: Callback function. If not null, this function is called periodically
94 * to provide new data and inform of marker, position updates, etc.
95 * user: Context for use by the callback receiver.
Hyundo Moon660a74e2017-12-13 11:29:45 +090096 * frameCount: Minimum size of track PCM buffer in frames. This defines the
97 * application's contribution to the latency of the track.
98 * The actual size selected by the JAudioTrack could be larger if the
99 * requested size is not compatible with current audio HAL configuration.
100 * Zero means to use a default value.
101 * sessionId: Specific session ID, or zero to use default.
102 * pAttributes: If not NULL, supersedes streamType for use case selection.
103 * maxRequiredSpeed: For PCM tracks, this creates an appropriate buffer size that will allow
104 * maxRequiredSpeed playback. Values less than 1.0f and greater than
105 * AUDIO_TIMESTRETCH_SPEED_MAX will be clamped. For non-PCM tracks
106 * and direct or offloaded tracks, this parameter is ignored.
107 * (TODO: Handle this after offload / direct track is supported.)
108 *
109 * TODO: Revive removed arguments after offload mode is supported.
110 */
Dichen Zhangf8726912018-10-17 13:31:26 -0700111 JAudioTrack(uint32_t sampleRate,
Hyundo Moon660a74e2017-12-13 11:29:45 +0900112 audio_format_t format,
113 audio_channel_mask_t channelMask,
Hyundo Moon42a6dec2018-01-22 19:26:47 +0900114 callback_t cbf,
115 void* user,
Hyundo Moon660a74e2017-12-13 11:29:45 +0900116 size_t frameCount = 0,
117 audio_session_t sessionId = AUDIO_SESSION_ALLOCATE,
118 const audio_attributes_t* pAttributes = NULL,
119 float maxRequiredSpeed = 1.0f);
120
121 /*
Hyundo Moon660a74e2017-12-13 11:29:45 +0900122 // Q. May be used in AudioTrack.setPreferredDevice(AudioDeviceInfo)?
123 audio_port_handle_t selectedDeviceId,
124
Hyundo Moon42a6dec2018-01-22 19:26:47 +0900125 // TODO: No place to use these values.
Hyundo Moon660a74e2017-12-13 11:29:45 +0900126 int32_t notificationFrames,
127 const audio_offload_info_t *offloadInfo,
Hyundo Moon660a74e2017-12-13 11:29:45 +0900128 */
129
Hyundo Moon9b26e942017-12-14 10:46:54 +0900130 virtual ~JAudioTrack();
131
132 size_t frameCount();
133 size_t channelCount();
134
Hyundo Moon904183e2018-01-21 20:43:41 +0900135 /* Returns this track's estimated latency in milliseconds.
136 * This includes the latency due to AudioTrack buffer size, AudioMixer (if any)
137 * and audio hardware driver.
138 */
139 uint32_t latency();
140
Hyundo Moon9b26e942017-12-14 10:46:54 +0900141 /* Return the total number of frames played since playback start.
142 * The counter will wrap (overflow) periodically, e.g. every ~27 hours at 44.1 kHz.
143 * It is reset to zero by flush(), reload(), and stop().
144 *
145 * Parameters:
146 *
147 * position: Address where to return play head position.
148 *
149 * Returned status (from utils/Errors.h) can be:
150 * - NO_ERROR: successful operation
151 * - BAD_VALUE: position is NULL
152 */
153 status_t getPosition(uint32_t *position);
154
Hyundo Moonfd328172017-12-14 10:46:54 +0900155 // TODO: Does this comment apply same to Java AudioTrack::getTimestamp?
156 // Changed the return type from status_t to bool, since Java AudioTrack::getTimestamp returns
157 // boolean. Will Java getTimestampWithStatus() be public?
158 /* Poll for a timestamp on demand.
159 * Use if EVENT_NEW_TIMESTAMP is not delivered often enough for your needs,
160 * or if you need to get the most recent timestamp outside of the event callback handler.
161 * Caution: calling this method too often may be inefficient;
162 * if you need a high resolution mapping between frame position and presentation time,
163 * consider implementing that at application level, based on the low resolution timestamps.
Dichen Zhangf8726912018-10-17 13:31:26 -0700164 * Returns NO_ERROR if timestamp is valid.
165 * NO_INIT if finds error, and timestamp parameter will be undefined on return.
Hyundo Moonfd328172017-12-14 10:46:54 +0900166 */
Dichen Zhangf8726912018-10-17 13:31:26 -0700167 status_t getTimestamp(AudioTimestamp& timestamp);
Hyundo Moonfd328172017-12-14 10:46:54 +0900168
Hyundo Moon42a6dec2018-01-22 19:26:47 +0900169 // TODO: This doc is just copied from AudioTrack.h. Revise it after implemenation.
170 /* Return the extended timestamp, with additional timebase info and improved drain behavior.
171 *
172 * This is similar to the AudioTrack.java API:
173 * getTimestamp(@NonNull AudioTimestamp timestamp, @AudioTimestamp.Timebase int timebase)
174 *
175 * Some differences between this method and the getTimestamp(AudioTimestamp& timestamp) method
176 *
177 * 1. stop() by itself does not reset the frame position.
178 * A following start() resets the frame position to 0.
179 * 2. flush() by itself does not reset the frame position.
180 * The frame position advances by the number of frames flushed,
181 * when the first frame after flush reaches the audio sink.
182 * 3. BOOTTIME clock offsets are provided to help synchronize with
183 * non-audio streams, e.g. sensor data.
184 * 4. Position is returned with 64 bits of resolution.
185 *
186 * Parameters:
187 * timestamp: A pointer to the caller allocated ExtendedTimestamp.
188 *
189 * Returns NO_ERROR on success; timestamp is filled with valid data.
190 * BAD_VALUE if timestamp is NULL.
191 * WOULD_BLOCK if called immediately after start() when the number
192 * of frames consumed is less than the
193 * overall hardware latency to physical output. In WOULD_BLOCK cases,
194 * one might poll again, or use getPosition(), or use 0 position and
195 * current time for the timestamp.
196 * If WOULD_BLOCK is returned, the timestamp is still
197 * modified with the LOCATION_CLIENT portion filled.
198 * DEAD_OBJECT if AudioFlinger dies or the output device changes and
199 * the track cannot be automatically restored.
200 * The application needs to recreate the AudioTrack
201 * because the audio device changed or AudioFlinger died.
202 * This typically occurs for direct or offloaded tracks
203 * or if mDoNotReconnect is true.
204 * INVALID_OPERATION if called on a offloaded or direct track.
205 * Use getTimestamp(AudioTimestamp& timestamp) instead.
206 */
207 status_t getTimestamp(ExtendedTimestamp *timestamp);
208
Hyundo Moonfd328172017-12-14 10:46:54 +0900209 /* Set source playback rate for timestretch
210 * 1.0 is normal speed: < 1.0 is slower, > 1.0 is faster
211 * 1.0 is normal pitch: < 1.0 is lower pitch, > 1.0 is higher pitch
212 *
213 * AUDIO_TIMESTRETCH_SPEED_MIN <= speed <= AUDIO_TIMESTRETCH_SPEED_MAX
214 * AUDIO_TIMESTRETCH_PITCH_MIN <= pitch <= AUDIO_TIMESTRETCH_PITCH_MAX
215 *
216 * Speed increases the playback rate of media, but does not alter pitch.
217 * Pitch increases the "tonal frequency" of media, but does not affect the playback rate.
218 */
219 status_t setPlaybackRate(const AudioPlaybackRate &playbackRate);
220
221 /* Return current playback rate */
222 const AudioPlaybackRate getPlaybackRate();
223
224 /* Sets the volume shaper object */
225 media::VolumeShaper::Status applyVolumeShaper(
226 const sp<media::VolumeShaper::Configuration>& configuration,
227 const sp<media::VolumeShaper::Operation>& operation);
228
Hyundo Moon9b26e942017-12-14 10:46:54 +0900229 /* Set the send level for this track. An auxiliary effect should be attached
Hyundo Moonfd328172017-12-14 10:46:54 +0900230 * to the track with attachEffect(). Level must be >= 0.0 and <= 1.0.
Hyundo Moon9b26e942017-12-14 10:46:54 +0900231 */
232 status_t setAuxEffectSendLevel(float level);
233
234 /* Attach track auxiliary output to specified effect. Use effectId = 0
235 * to detach track from effect.
236 *
237 * Parameters:
238 *
239 * effectId: effectId obtained from AudioEffect::id().
240 *
241 * Returned status (from utils/Errors.h) can be:
242 * - NO_ERROR: successful operation
Hyundo Moonfd328172017-12-14 10:46:54 +0900243 * - INVALID_OPERATION: The effect is not an auxiliary effect.
244 * - BAD_VALUE: The specified effect ID is invalid.
Hyundo Moon9b26e942017-12-14 10:46:54 +0900245 */
246 status_t attachAuxEffect(int effectId);
247
248 /* Set volume for this track, mostly used for games' sound effects
249 * left and right volumes. Levels must be >= 0.0 and <= 1.0.
250 * This is the older API. New applications should use setVolume(float) when possible.
251 */
252 status_t setVolume(float left, float right);
253
254 /* Set volume for all channels. This is the preferred API for new applications,
255 * especially for multi-channel content.
256 */
257 status_t setVolume(float volume);
258
259 // TODO: Does this comment equally apply to the Java AudioTrack::play()?
260 /* After it's created the track is not active. Call start() to
261 * make it active. If set, the callback will start being called.
262 * If the track was previously paused, volume is ramped up over the first mix buffer.
263 */
264 status_t start();
265
Hyundo Moonfd328172017-12-14 10:46:54 +0900266 // TODO: Does this comment still applies? It seems not. (obtainBuffer, AudioFlinger, ...)
267 /* As a convenience we provide a write() interface to the audio buffer.
268 * Input parameter 'size' is in byte units.
269 * This is implemented on top of obtainBuffer/releaseBuffer. For best
270 * performance use callbacks. Returns actual number of bytes written >= 0,
271 * or one of the following negative status codes:
272 * INVALID_OPERATION AudioTrack is configured for static buffer or streaming mode
273 * BAD_VALUE size is invalid
274 * WOULD_BLOCK when obtainBuffer() returns same, or
275 * AudioTrack was stopped during the write
276 * DEAD_OBJECT when AudioFlinger dies or the output device changes and
277 * the track cannot be automatically restored.
278 * The application needs to recreate the AudioTrack
279 * because the audio device changed or AudioFlinger died.
280 * This typically occurs for direct or offload tracks
281 * or if mDoNotReconnect is true.
282 * or any other error code returned by IAudioTrack::start() or restoreTrack_l().
283 * Default behavior is to only return when all data has been transferred. Set 'blocking' to
284 * false for the method to return immediately without waiting to try multiple times to write
285 * the full content of the buffer.
286 */
287 ssize_t write(const void* buffer, size_t size, bool blocking = true);
288
Hyundo Moon9b26e942017-12-14 10:46:54 +0900289 // TODO: Does this comment equally apply to the Java AudioTrack::stop()?
290 /* Stop a track.
291 * In static buffer mode, the track is stopped immediately.
292 * In streaming mode, the callback will cease being called. Note that obtainBuffer() still
293 * works and will fill up buffers until the pool is exhausted, and then will return WOULD_BLOCK.
294 * In streaming mode the stop does not occur immediately: any data remaining in the buffer
295 * is first drained, mixed, and output, and only then is the track marked as stopped.
296 */
Hyundo Moon660a74e2017-12-13 11:29:45 +0900297 void stop();
Hyundo Moon9b26e942017-12-14 10:46:54 +0900298 bool stopped() const;
Hyundo Moon660a74e2017-12-13 11:29:45 +0900299
Hyundo Moon9b26e942017-12-14 10:46:54 +0900300 // TODO: Does this comment equally apply to the Java AudioTrack::flush()?
301 /* Flush a stopped or paused track. All previously buffered data is discarded immediately.
302 * This has the effect of draining the buffers without mixing or output.
303 * Flush is intended for streaming mode, for example before switching to non-contiguous content.
304 * This function is a no-op if the track is not stopped or paused, or uses a static buffer.
305 */
306 void flush();
Hyundo Moon660a74e2017-12-13 11:29:45 +0900307
Hyundo Moon9b26e942017-12-14 10:46:54 +0900308 // TODO: Does this comment equally apply to the Java AudioTrack::pause()?
309 // At least we are not using obtainBuffer.
310 /* Pause a track. After pause, the callback will cease being called and
311 * obtainBuffer returns WOULD_BLOCK. Note that obtainBuffer() still works
312 * and will fill up buffers until the pool is exhausted.
313 * Volume is ramped down over the next mix buffer following the pause request,
314 * and then the track is marked as paused. It can be resumed with ramp up by start().
315 */
316 void pause();
317
318 bool isPlaying() const;
319
320 /* Return current source sample rate in Hz.
321 * If specified as zero in constructor, this will be the sink sample rate.
322 */
323 uint32_t getSampleRate();
324
Hyundo Moonfd328172017-12-14 10:46:54 +0900325 /* Returns the buffer duration in microseconds at current playback rate. */
326 status_t getBufferDurationInUs(int64_t *duration);
327
Hyundo Moon9b26e942017-12-14 10:46:54 +0900328 audio_format_t format();
329
Dichen Zhangf8726912018-10-17 13:31:26 -0700330 size_t frameSize();
331
Hyundo Moon904183e2018-01-21 20:43:41 +0900332 /*
333 * Dumps the state of an audio track.
334 * Not a general-purpose API; intended only for use by media player service to dump its tracks.
335 */
336 status_t dump(int fd, const Vector<String16>& args) const;
337
Dongwon Kang0d7042d2018-10-12 16:52:14 -0700338 /* Returns the AudioDeviceInfo used by the output to which this AudioTrack is
339 * attached.
Hyundo Moon904183e2018-01-21 20:43:41 +0900340 */
Dongwon Kang0d7042d2018-10-12 16:52:14 -0700341 jobject getRoutedDevice();
Hyundo Moon904183e2018-01-21 20:43:41 +0900342
Hyundo Moon42a6dec2018-01-22 19:26:47 +0900343 /* Returns the ID of the audio session this AudioTrack belongs to. */
344 audio_session_t getAudioSessionId();
345
Dongwon Kang0d7042d2018-10-12 16:52:14 -0700346 /* Sets the preferred audio device to use for output of this AudioTrack.
Hyundo Moon42a6dec2018-01-22 19:26:47 +0900347 *
348 * Parameters:
Dongwon Kang0d7042d2018-10-12 16:52:14 -0700349 * Device: an AudioDeviceInfo object.
Hyundo Moon42a6dec2018-01-22 19:26:47 +0900350 *
351 * Returned value:
352 * - NO_ERROR: successful operation
Dongwon Kang0d7042d2018-10-12 16:52:14 -0700353 * - BAD_VALUE: failed to set the device
Hyundo Moon42a6dec2018-01-22 19:26:47 +0900354 */
Dongwon Kang0d7042d2018-10-12 16:52:14 -0700355 status_t setPreferredDevice(jobject device);
Hyundo Moon42a6dec2018-01-22 19:26:47 +0900356
357 // TODO: Add AUDIO_OUTPUT_FLAG_DIRECT when it is possible to check.
358 // TODO: Add AUDIO_FLAG_HW_AV_SYNC when it is possible to check.
359 /* Returns the flags */
360 audio_output_flags_t getFlags() const { return mFlags; }
361
Dichen Zhangf8726912018-10-17 13:31:26 -0700362 /* We don't keep stream type here,
363 * instead, we keep attributes and call getVolumeControlStream() to get stream type
364 */
365 audio_stream_type_t getAudioStreamType();
366
Hyundo Moon42a6dec2018-01-22 19:26:47 +0900367 /* Obtain the pending duration in milliseconds for playback of pure PCM data remaining in
368 * AudioTrack.
369 *
370 * Returns NO_ERROR if successful.
371 * INVALID_OPERATION if the AudioTrack does not contain pure PCM data.
372 * BAD_VALUE if msec is nullptr.
373 */
374 status_t pendingDuration(int32_t *msec);
375
376 /* Adds an AudioDeviceCallback. The caller will be notified when the audio device to which this
377 * AudioTrack is routed is updated.
378 * Replaces any previously installed callback.
379 *
380 * Parameters:
Dichen Zhangf8726912018-10-17 13:31:26 -0700381 * Listener: the listener to receive notification of rerouting events.
382 * Handler: the handler to handler the rerouting events.
Hyundo Moon42a6dec2018-01-22 19:26:47 +0900383 *
384 * Returns NO_ERROR if successful.
Dichen Zhangf8726912018-10-17 13:31:26 -0700385 * (TODO) INVALID_OPERATION if the same callback is already installed.
386 * (TODO) NO_INIT or PREMISSION_DENIED if AudioFlinger service is not reachable
387 * (TODO) BAD_VALUE if the callback is NULL
Hyundo Moon42a6dec2018-01-22 19:26:47 +0900388 */
Dichen Zhangf8726912018-10-17 13:31:26 -0700389 status_t addAudioDeviceCallback(jobject listener, jobject rd);
Hyundo Moon42a6dec2018-01-22 19:26:47 +0900390
391 /* Removes an AudioDeviceCallback.
392 *
393 * Parameters:
Dichen Zhangf8726912018-10-17 13:31:26 -0700394 * Listener: the listener to receive notification of rerouting events.
Hyundo Moon42a6dec2018-01-22 19:26:47 +0900395 *
396 * Returns NO_ERROR if successful.
Dichen Zhangf8726912018-10-17 13:31:26 -0700397 * (TODO) INVALID_OPERATION if the callback is not installed
398 * (TODO) BAD_VALUE if the callback is NULL
Hyundo Moon42a6dec2018-01-22 19:26:47 +0900399 */
Dichen Zhangf8726912018-10-17 13:31:26 -0700400 status_t removeAudioDeviceCallback(jobject listener);
401
402 /* Register all backed-up routing delegates.
403 *
404 * Parameters:
405 * routingDelegates: backed-up routing delegates
406 *
407 */
408 void registerRoutingDelegates(std::vector<std::pair<jobject, jobject>>& routingDelegates);
409
410 /* get listener from RoutingDelegate object
411 */
412 static jobject getListener(const jobject routingDelegateObj);
413
414 /* get handler from RoutingDelegate object
415 */
416 static jobject getHandler(const jobject routingDelegateObj);
417
418 /* convert local reference to global reference.
419 */
420 static jobject addGlobalRef(const jobject obj);
421
422 /* erase global reference.
423 *
424 * Returns NO_ERROR if succeeds
425 * BAD_VALUE if obj is NULL
426 */
427 static status_t removeGlobalRef(const jobject obj);
428
429 /*
430 * Parameters:
431 * map and key
432 *
433 * Returns value if key is in the map
434 * nullptr if key is not in the map
435 */
436 static jobject findByKey(std::vector<std::pair<jobject, jobject>>& mp, const jobject key);
437
438 /*
439 * Parameters:
440 * map and key
441 */
442 static void eraseByKey(std::vector<std::pair<jobject, jobject>>& mp, const jobject key);
Hyundo Moon42a6dec2018-01-22 19:26:47 +0900443
Hyundo Moon9b26e942017-12-14 10:46:54 +0900444private:
Hyundo Moon42a6dec2018-01-22 19:26:47 +0900445 audio_output_flags_t mFlags;
446
Hyundo Moon9b26e942017-12-14 10:46:54 +0900447 jclass mAudioTrackCls;
448 jobject mAudioTrackObj;
Dichen Zhangf8726912018-10-17 13:31:26 -0700449 jobject mAudioAttributesObj;
Hyundo Moon9b26e942017-12-14 10:46:54 +0900450
Hyundo Moonfd328172017-12-14 10:46:54 +0900451 /* Creates a Java VolumeShaper.Configuration object from VolumeShaper::Configuration */
452 jobject createVolumeShaperConfigurationObj(
453 const sp<media::VolumeShaper::Configuration>& config);
454
455 /* Creates a Java VolumeShaper.Operation object from VolumeShaper::Operation */
456 jobject createVolumeShaperOperationObj(
457 const sp<media::VolumeShaper::Operation>& operation);
458
Hyundo Moon42a6dec2018-01-22 19:26:47 +0900459 /* Creates a Java StreamEventCallback object */
460 jobject createStreamEventCallback(callback_t cbf, void* user);
461
462 /* Creates a Java Executor object for running a callback */
463 jobject createCallbackExecutor();
464
Hyundo Moon9b26e942017-12-14 10:46:54 +0900465 status_t javaToNativeStatus(int javaStatus);
Hyundo Moon660a74e2017-12-13 11:29:45 +0900466};
467
468}; // namespace android
469
470#endif // ANDROID_JAUDIOTRACK_H