OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:afframecount
(Results
1 - 8
of
8
) sorted by null
/external/esd/include/
audiofile.h
48
typedef off_t
AFframecount
;
434
AFframecount
afSeekFrame (AFfilehandle, int track,
AFframecount
frameoffset);
435
AFframecount
afTellFrame (AFfilehandle, int track);
539
void afInitFrameCount (AFfilesetup, int track,
AFframecount
frameCount);
540
AFframecount
afGetFrameCount (AFfilehandle file, int track);
555
AFframecount
startFrame);
556
AFframecount
afGetLoopStartFrame (AFfilehandle, int instid, int loop);
558
AFframecount
startFrame);
559
AFframecount
afGetLoopEndFrame (AFfilehandle, int instid, int loop)
[
all
...]
/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
audiofile.h
48
typedef off_t
AFframecount
;
434
AFframecount
afSeekFrame (AFfilehandle, int track,
AFframecount
frameoffset);
435
AFframecount
afTellFrame (AFfilehandle, int track);
539
void afInitFrameCount (AFfilesetup, int track,
AFframecount
frameCount);
540
AFframecount
afGetFrameCount (AFfilehandle file, int track);
555
AFframecount
startFrame);
556
AFframecount
afGetLoopStartFrame (AFfilehandle, int instid, int loop);
558
AFframecount
startFrame);
559
AFframecount
afGetLoopEndFrame (AFfilehandle, int instid, int loop)
[
all
...]
/frameworks/media/libvideoeditor/lvpp/
VideoEditorPlayer.cpp
398
int
afFrameCount
;
401
if (AudioSystem::getOutputFrameCount(&
afFrameCount
, mStreamType) !=
410
frameCount = (sampleRate*
afFrameCount
*bufferCount)/afSampleRate;
/frameworks/base/media/libmedia/
AudioTrack.cpp
61
int
afFrameCount
;
62
if (AudioSystem::getOutputFrameCount(&
afFrameCount
, streamType) != NO_ERROR) {
71
uint32_t minBufCount = afLatency / ((1000 *
afFrameCount
) / afSampleRate);
74
*frameCount = (sampleRate == 0) ?
afFrameCount
* minBufCount :
75
afFrameCount
* minBufCount * sampleRate / afSampleRate;
732
int
afFrameCount
;
733
if (AudioSystem::getOutputFrameCount(&
afFrameCount
, streamType) != NO_ERROR) {
748
uint32_t minBufCount = afLatency / ((1000 *
afFrameCount
)/afSampleRate);
751
int minFrameCount = (
afFrameCount
*sampleRate*minBufCount)/afSampleRate;
[
all
...]
/frameworks/base/media/jni/soundpool/
SoundPool.cpp
571
int
afFrameCount
;
574
if (AudioSystem::getOutputFrameCount(&
afFrameCount
, streamType) != NO_ERROR) {
575
afFrameCount
= kDefaultFrameCount;
582
uint32_t totalFrames = (kDefaultBufferCount *
afFrameCount
* sampleRate) / afSampleRate;
/frameworks/base/media/libmediaplayerservice/
MediaPlayerService.cpp
[
all
...]
/frameworks/base/core/jni/
android_media_AudioTrack.cpp
176
int
afFrameCount
;
178
if (AudioSystem::getOutputFrameCount(&
afFrameCount
, streamType) != NO_ERROR) {
[
all
...]
/system/media/wilhelm/src/android/
AudioPlayer_to_android.cpp
170
int
afFrameCount
;
171
if (android::AudioSystem::getOutputFrameCount(&
afFrameCount
,
181
uint32_t minBufCount = afLatency / ((1000 *
afFrameCount
)/afSampleRate);
184
return (
afFrameCount
*sampleRate*minBufCount)/afSampleRate;
[
all
...]
Completed in 813 milliseconds