HomeSort by relevance Sort by last modified time
    Searched full:afp (Results 1 - 21 of 21) sorted by null

  /external/qemu/distrib/sdl-1.2.12/src/cdrom/macosx/
AudioFilePlayer.c 62 static int AudioFilePlayer_SetDestination (AudioFilePlayer *afp, AudioUnit *inDestUnit)
64 /*if (afp->mConnected) throw static_cast<OSStatus>(-1);*/ /* can't set dest if already engaged */
65 if (afp->mConnected)
68 SDL_memcpy(&afp->mPlayUnit, inDestUnit, sizeof (afp->mPlayUnit));
92 &afp->mFileDescription,
93 sizeof (afp->mFileDescription));
99 static void AudioFilePlayer_SetNotifier(AudioFilePlayer *afp, AudioFilePlayNotifier inNotifier, void *inRefCon)
101 afp->mNotifier = inNotifier;
102 afp->mRefCon = inRefCon
309 AudioFilePlayer *afp = (AudioFilePlayer *) SDL_malloc(sizeof (AudioFilePlayer)); local
    [all...]
AudioFilePlayer.h 66 int (*SetDestination)(struct S_AudioFilePlayer *afp, AudioUnit *inDestUnit);
67 void (*SetNotifier)(struct S_AudioFilePlayer *afp, AudioFilePlayNotifier inNotifier, void *inRefCon);
68 void (*SetStartFrame)(struct S_AudioFilePlayer *afp, int frame); /* seek in the file */
69 int (*GetCurrentFrame)(struct S_AudioFilePlayer *afp); /* get the current frame position */
70 void (*SetStopFrame)(struct S_AudioFilePlayer *afp, int frame); /* set limit in the file */
71 int (*Connect)(struct S_AudioFilePlayer *afp);
72 void (*Disconnect)(struct S_AudioFilePlayer *afp);
73 void (*DoNotification)(struct S_AudioFilePlayer *afp, OSStatus inError);
74 int (*IsConnected)(struct S_AudioFilePlayer *afp);
75 AudioUnit (*GetDestUnit)(struct S_AudioFilePlayer *afp);
    [all...]
AudioFileReaderThread.c 307 AudioFilePlayer *afp = (AudioFilePlayer *) theItem->GetParent(theItem); local
308 afp->DoNotification(afp, result);
  /external/opencore/fileformats/avi/parser/src/
pv_avifile_header.cpp 20 PVAviFileHeader::PVAviFileHeader(PVFile *aFp, uint32 aHdrSize)
38 if ((iError = PVAviFileParserUtils::ReadNextChunkType(aFp, chunkType)) != PV_AVI_FILE_PARSER_SUCCESS)
48 if (PVAviFileParserUtils::read32(aFp, chksz, true) != PV_AVI_FILE_PARSER_SUCCESS)
55 aFp->Seek(chksz, Oscl_File::SEEKCUR);
61 aFp->Seek((streamListSz - CHUNK_SIZE), Oscl_File::SEEKCUR); //subtract list name read above
87 if (PVAviFileParserUtils::read32(aFp, aviStrSize, true) != PV_AVI_FILE_PARSER_SUCCESS)
110 if ((iError = ParseMainHeader(aFp)) != PV_AVI_FILE_PARSER_SUCCESS)
126 if (PVAviFileParserUtils::read32(aFp, streamListSz, true) != PV_AVI_FILE_PARSER_SUCCESS)
154 PVAviFileStreamlist* strlst = OSCL_NEW(PVAviFileStreamlist, (aFp, (streamListSz - CHUNK_SIZE))); //subtract 4 bytes of List type from list size
181 if (PVAviFileParserUtils::read32(aFp, junkSize, true) != PV_AVI_FILE_PARSER_SUCCESS
    [all...]
pv_avifile_streamlist.cpp 20 PVAviFileStreamlist::PVAviFileStreamlist(PVFile *aFp, uint32 aStrListSz)
31 if ((iError = PVAviFileParserUtils::ReadNextChunkType(aFp, chunkType)) != PV_AVI_FILE_PARSER_SUCCESS)
38 if (PV_AVI_FILE_PARSER_SUCCESS != PVAviFileParserUtils::read32(aFp, chksz, true))
44 aFp->Seek(chksz, Oscl_File::SEEKCUR);
68 if (PV_AVI_FILE_PARSER_SUCCESS != PVAviFileParserUtils::read32(aFp, aviStrhSize, true))
93 if ((iError = ParseStreamHeader(aFp, aviStrhSize)) != PV_AVI_FILE_PARSER_SUCCESS)
113 if (PV_AVI_FILE_PARSER_SUCCESS != PVAviFileParserUtils::read32(aFp, aviStrfSize, true))
138 if ((iError = ParseStreamFormat(aFp, aviStrfSize)) != PV_AVI_FILE_PARSER_SUCCESS)
155 if (PV_AVI_FILE_PARSER_SUCCESS != PVAviFileParserUtils::read32(aFp, iCodecSpecificHdrDataSize, true))
179 if (0 == PVAviFileParserUtils::read8(aFp, ipCodecSpecificHdrData, iCodecSpecificHdrDataSize)
    [all...]
pv_avifile_parser_utils.cpp 29 PVAviFileParserUtils::ReadNextChunkType(PVFile* aFp, uint32& aChkType)
33 if (PV_AVI_FILE_PARSER_SUCCESS != read32(aFp, data))
71 PVAviFileParserUtils::read32(PVFile* aFp, uint32& aBuff, bool aBigEndian)
77 if (aFp->Read(temp, 1, sz) != sz)
95 uint32 PVAviFileParserUtils::read8(PVFile* aFp, uint8* aBuff, uint32 aLength)
100 if (aFp->Read(&temp, 1, 1) != 1)
113 PVAviFileParserUtils::read16(PVFile* aFp, uint16& aBuff, bool aBigEndian)
119 if (aFp->Read(temp, 1, sz) != sz)
pv_avifile_indx.cpp 20 PVAviFileIdxChunk::PVAviFileIdxChunk(PVFile* aFp, uint32 aIndxSize, uint32 aNumStreams)
39 if (PV_AVI_FILE_PARSER_SUCCESS != PVAviFileParserUtils::read32(aFp, data))
56 aFp->Seek((CHUNK_SIZE + CHUNK_SIZE + CHUNK_SIZE), Oscl_File::SEEKCUR);
65 if (PV_AVI_FILE_PARSER_SUCCESS != PVAviFileParserUtils::read32(aFp, (tbl.flags)))
85 if (PV_AVI_FILE_PARSER_SUCCESS != PVAviFileParserUtils::read32(aFp, tbl.offset, true))
107 if (PV_AVI_FILE_PARSER_SUCCESS != PVAviFileParserUtils::read32(aFp, tbl.size, true))
  /external/opencore/fileformats/avi/parser/include/
pv_avifile_parser_utils.h 31 ReadNextChunkType(PVFile* aFp, uint32& aChkType);
34 read32(PVFile* aFp, uint32& aBuff, bool aBigEndian = false);
36 static uint32 read8(PVFile* aFp, uint8* aBuff, uint32 aLength);
39 read16(PVFile* aFp, uint16& aBuff, bool aBigEndian = false);
pv_avifile_streamlist.h 66 PVAviFileStreamlist(PVFile *aFp, uint32 aStrListSz);
173 PV_AVI_FILE_PARSER_ERROR_TYPE ParseStreamHeader(PVFile *aFp, uint32 aHdrSize);
174 PV_AVI_FILE_PARSER_ERROR_TYPE ParseStreamFormat(PVFile *aFp, uint32 aHdrSize);
pv_avifile_indx.h 38 PVAviFileIdxChunk(PVFile* aFp, uint32 aIndxSize, uint32 aNumStreams);
pv_avifile_header.h 42 PVAviFileHeader(PVFile *aFp, uint32 aHdrSize);
253 PV_AVI_FILE_PARSER_ERROR_TYPE ParseMainHeader(PVFile *aFp);
  /external/opencore/fileformats/mp3/parser/src/
mp3utils.cpp 85 MP3ErrorType MP3Utils::SeektoOffset(PVFile *aFP, int32 aOffset, Oscl_File::seek_type aSeekType)
90 currPos = MP3Utils::getCurrentFilePosition(aFP);
91 MP3Utils::getCurrentFileSize(aFP, currFileSize);
110 if (aFP->Seek(seekOffset, Oscl_File::SEEKCUR) != 0)
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/plugin/include/config/arm/
aout.h 59 "cc", "sfp", "afp", \
arm.h 656 afp Nor this, we only need this because of non-local
    [all...]
  /external/netperf/
netserver.c 152 FILE *afp; variable
  /external/opencore/engines/author/test/src/
pvaetest.cpp     [all...]
  /external/webkit/JavaScriptCore/tests/mozilla/js1_5/Regress/
regress-111557.js     [all...]
  /external/opencore/protocols/rtp_payload_parser/util/output/
pv_rtp.bin     [all...]
  /prebuilt/linux-x86/toolchain/arm-eabi-4.3.1/libexec/gcc/arm-eabi/4.3.1/
cc1 
cc1plus 
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/libexec/gcc/arm-eabi/4.4.0/
cc1 

Completed in 308 milliseconds