blob: 5750083ad9221ce29678a876134ab83428d63b2d [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;
28class MediaSync;
29
30struct JMediaSync : public RefBase {
31 JMediaSync();
32
33 status_t configureSurface(const sp<IGraphicBufferProducer> &bufferProducer);
34 status_t configureAudioTrack(
35 const sp<AudioTrack> &audioTrack, int32_t nativeSampleRateInHz);
36
37 status_t createInputSurface(sp<IGraphicBufferProducer>* bufferProducer);
38
39 status_t updateQueuedAudioData(int sizeInBytes, int64_t presentationTimeUs);
40
41 void setPlaybackRate(float rate);
42
43protected:
44 virtual ~JMediaSync();
45
46private:
47 sp<MediaSync> mSync;
48
49 DISALLOW_EVIL_CONSTRUCTORS(JMediaSync);
50};
51
52} // namespace android
53
54#endif // _ANDROID_MEDIA_MEDIASYNC_H_