blob: 48a42aae735bdc7ac44747ef43cae933e5e56e58 [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>
Marco Nelissenbc11e712015-01-08 12:26:36 -080023#include <media/MidiIoWrapper.h>
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -080024
25namespace android {
26
Glenn Kasten90100b52011-06-23 17:11:35 -070027// Note that the name MidiFile is misleading; this actually represents a MIDI file player
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -080028class MidiFile : public MediaPlayerInterface {
29public:
30 MidiFile();
31 ~MidiFile();
32
33 virtual status_t initCheck();
Andreas Huber2db84552010-01-28 11:19:57 -080034
35 virtual status_t setDataSource(
Andreas Huber1b86fe02014-01-29 11:13:26 -080036 const sp<IMediaHTTPService> &httpService,
37 const char* path,
38 const KeyedVector<String8, String8> *headers);
Andreas Huber2db84552010-01-28 11:19:57 -080039
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -080040 virtual status_t setDataSource(int fd, int64_t offset, int64_t length);
Glenn Kasten11731182011-02-08 17:26:17 -080041 virtual status_t setVideoSurfaceTexture(
Mark Salyzyn247d9eb2014-06-23 14:14:40 -070042 const sp<IGraphicBufferProducer>& /*bufferProducer*/)
Glenn Kasten11731182011-02-08 17:26:17 -080043 { return UNKNOWN_ERROR; }
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -080044 virtual status_t prepare();
45 virtual status_t prepareAsync();
46 virtual status_t start();
47 virtual status_t stop();
48 virtual status_t seekTo(int msec);
49 virtual status_t pause();
50 virtual bool isPlaying();
51 virtual status_t getCurrentPosition(int* msec);
52 virtual status_t getDuration(int* msec);
53 virtual status_t release();
54 virtual status_t reset();
55 virtual status_t setLooping(int loop);
56 virtual player_type playerType() { return SONIVOX_PLAYER; }
Mark Salyzyn247d9eb2014-06-23 14:14:40 -070057 virtual status_t invoke(const Parcel& /*request*/, Parcel* /*reply*/) {
nikod608a812009-07-16 16:39:53 -070058 return INVALID_OPERATION;
59 }
Mark Salyzyn247d9eb2014-06-23 14:14:40 -070060 virtual status_t setParameter(int /*key*/, const Parcel &/*request*/) {
Gloria Wang4f9e47f2011-04-25 17:28:22 -070061 return INVALID_OPERATION;
62 }
Mark Salyzyn247d9eb2014-06-23 14:14:40 -070063 virtual status_t getParameter(int /*key*/, Parcel* /*reply*/) {
Gloria Wang4f9e47f2011-04-25 17:28:22 -070064 return INVALID_OPERATION;
65 }
66
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -080067private:
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;
Marco Nelissenbc11e712015-01-08 12:26:36 -080081 sp<MidiIoWrapper> mIoWrapper;
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