am 43ea037b: am 481c4b64: Merge "Fix class vs. struct mismatch"

* commit '43ea037b4c61e332d7419ac069a62e314166fdd7':
  Fix class vs. struct mismatch
This commit is contained in:
Chih-hung Hsieh
2014-11-25 19:03:57 +00:00
committed by Android Git Automerger
4 changed files with 7 additions and 6 deletions

View File

@ -193,7 +193,7 @@ bool AudioPlayer::init(const char* config)
return false;
}
void AudioPlayer::playFile(struct FileMap* fileMap) {
void AudioPlayer::playFile(FileMap* fileMap) {
// stop any currently playing sound
requestExitAndWait();

View File

@ -18,6 +18,7 @@
#define _BOOTANIMATION_AUDIOPLAYER_H
#include <utils/Thread.h>
#include <utils/FileMap.h>
namespace android {
@ -28,7 +29,7 @@ public:
virtual ~AudioPlayer();
bool init(const char* config);
void playFile(struct FileMap* fileMap);
void playFile(FileMap* fileMap);
private:
virtual bool threadLoop();
@ -39,7 +40,7 @@ private:
int mPeriodSize;
int mPeriodCount;
struct FileMap* mCurrentFile;
FileMap* mCurrentFile;
};
} // namespace android

View File

@ -30,7 +30,7 @@
namespace android {
struct IMediaHTTPService;
struct MetaData;
class MetaData;
struct NuMediaExtractor;
struct JMediaExtractor : public RefBase {

View File

@ -24,8 +24,8 @@
namespace android {
struct IMemory;
struct MemoryDealer;
class IMemory;
class MemoryDealer;
struct JMediaHTTPConnection : public RefBase {
enum {