blob: 976a456be6ff1c95802c8d2a3fab26572fc88f82 [file] [log] [blame]
Wei Jia071a8b72015-03-09 16:38:25 -07001/*
2 * Copyright 2015, 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_MEDIA_MEDIASYNC_H_
18#define _ANDROID_MEDIA_MEDIASYNC_H_
19
20#include <media/stagefright/foundation/ABase.h>
21#include <utils/Errors.h>
22#include <utils/RefBase.h>
23
24namespace android {
25
26class AudioTrack;
27struct IGraphicBufferProducer;
Wei Jia217ec0a2015-04-09 18:48:18 -070028struct MediaClock;
Wei Jia071a8b72015-03-09 16:38:25 -070029class MediaSync;
30
31struct JMediaSync : public RefBase {
32 JMediaSync();
33
34 status_t configureSurface(const sp<IGraphicBufferProducer> &bufferProducer);
35 status_t configureAudioTrack(
36 const sp<AudioTrack> &audioTrack, int32_t nativeSampleRateInHz);
37
38 status_t createInputSurface(sp<IGraphicBufferProducer>* bufferProducer);
39
40 status_t updateQueuedAudioData(int sizeInBytes, int64_t presentationTimeUs);
41
42 void setPlaybackRate(float rate);
43
Wei Jia217ec0a2015-04-09 18:48:18 -070044 sp<const MediaClock> getMediaClock();
45
Wei Jia071a8b72015-03-09 16:38:25 -070046protected:
47 virtual ~JMediaSync();
48
49private:
50 sp<MediaSync> mSync;
51
52 DISALLOW_EVIL_CONSTRUCTORS(JMediaSync);
53};
54
55} // namespace android
56
57#endif // _ANDROID_MEDIA_MEDIASYNC_H_