blob: 12802ba80b20ea4578500e9010a6119db9b9afd8 [file] [log] [blame]
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001/*
2**
3** Copyright 2008, The Android Open Source Project
4**
5** Licensed under the Apache License, Version 2.0 (the "License");
6** you may not use this file except in compliance with the License.
7** You may obtain a copy of the License at
8**
9** http://www.apache.org/licenses/LICENSE-2.0
10**
11** Unless required by applicable law or agreed to in writing, software
12** distributed under the License is distributed on an "AS IS" BASIS,
13** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14** See the License for the specific language governing permissions and
15** limitations under the License.
16*/
17
18#ifndef ANDROID_MIDIFILE_H
19#define ANDROID_MIDIFILE_H
20
21#include <media/MediaPlayerInterface.h>
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -080022#include <libsonivox/eas.h>
23
24namespace android {
25
Glenn Kasten90100b52011-06-23 17:11:35 -070026// Note that the name MidiFile is misleading; this actually represents a MIDI file player
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -080027class MidiFile : public MediaPlayerInterface {
28public:
29 MidiFile();
30 ~MidiFile();
31
32 virtual status_t initCheck();
Andreas Huber2db84552010-01-28 11:19:57 -080033
34 virtual status_t setDataSource(
Andreas Huber1b86fe02014-01-29 11:13:26 -080035 const sp<IMediaHTTPService> &httpService,
36 const char* path,
37 const KeyedVector<String8, String8> *headers);
Andreas Huber2db84552010-01-28 11:19:57 -080038
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -080039 virtual status_t setDataSource(int fd, int64_t offset, int64_t length);
Glenn Kasten11731182011-02-08 17:26:17 -080040 virtual status_t setVideoSurfaceTexture(
Andy McFadden8ba01022012-12-18 09:46:54 -080041 const sp<IGraphicBufferProducer>& bufferProducer)
Glenn Kasten11731182011-02-08 17:26:17 -080042 { return UNKNOWN_ERROR; }
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -080043 virtual status_t prepare();
44 virtual status_t prepareAsync();
45 virtual status_t start();
46 virtual status_t stop();
47 virtual status_t seekTo(int msec);
48 virtual status_t pause();
49 virtual bool isPlaying();
50 virtual status_t getCurrentPosition(int* msec);
51 virtual status_t getDuration(int* msec);
52 virtual status_t release();
53 virtual status_t reset();
54 virtual status_t setLooping(int loop);
55 virtual player_type playerType() { return SONIVOX_PLAYER; }
nikod608a812009-07-16 16:39:53 -070056 virtual status_t invoke(const Parcel& request, Parcel *reply) {
57 return INVALID_OPERATION;
58 }
Gloria Wang4f9e47f2011-04-25 17:28:22 -070059 virtual status_t setParameter(int key, const Parcel &request) {
60 return INVALID_OPERATION;
61 }
62 virtual status_t getParameter(int key, Parcel *reply) {
63 return INVALID_OPERATION;
64 }
65
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -080066
67private:
68 status_t createOutputTrack();
69 status_t reset_nosync();
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -080070 int render();
71 void updateState(){ EAS_State(mEasData, mEasHandle, &mState); }
72
73 Mutex mMutex;
74 Condition mCondition;
75 EAS_DATA_HANDLE mEasData;
76 EAS_HANDLE mEasHandle;
77 EAS_PCM* mAudioBuffer;
78 EAS_I32 mPlayTime;
79 EAS_I32 mDuration;
80 EAS_STATE mState;
81 EAS_FILE mFileLocator;
Glenn Kastenfff6d712012-01-12 16:38:12 -080082 audio_stream_type_t mStreamType;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -080083 bool mLoop;
84 volatile bool mExit;
85 bool mPaused;
86 volatile bool mRender;
87 pid_t mTid;
Glenn Kasten90100b52011-06-23 17:11:35 -070088
89 class MidiFileThread : public Thread {
90 public:
91 MidiFileThread(MidiFile *midiPlayer) : mMidiFile(midiPlayer) {
92 }
93
94 protected:
95 virtual ~MidiFileThread() {}
96
97 private:
98 MidiFile *mMidiFile;
99
100 bool threadLoop() {
101 int result;
102 result = mMidiFile->render();
103 return false;
104 }
105
106 MidiFileThread(const MidiFileThread &);
107 MidiFileThread &operator=(const MidiFileThread &);
108 };
109
110 sp<MidiFileThread> mThread;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800111};
112
113}; // namespace android
114
115#endif // ANDROID_MIDIFILE_H