Searched defs:frames (Results 1 - 12 of 12) sorted by relevance

/frameworks/base/tests/TileBenchmark/src/com/test/tilebenchmark/
H A DRunData.java23 public TileData[][] frames; field in class:RunData
26 public RunData(int frames) { argument
27 this.frames = new TileData[frames][];
/frameworks/av/media/libmedia/
H A DAudioTrackShared.cpp165 uint32_t frames = UINT_MAX; local
167 frames = (loopEnd - loopStart)*loopCount + u - s;
170 return frames;
H A DAudioRecord.cpp686 uint32_t frames = mRemainingFrames; local
724 audioBuffer.frameCount = frames;
756 frames -= audioBuffer.frameCount;
760 } while (frames);
773 if (frames == 0) {
776 mRemainingFrames = frames;
H A DAudioTrack.cpp1220 uint32_t frames; local
1295 frames = 0;
1297 frames = mRemainingFrames;
1310 audioBuffer.frameCount = frames;
1362 frames -= audioBuffer.frameCount;
1366 while (frames);
1368 if (frames == 0) {
1371 mRemainingFrames = frames;
1421 size_t frames = 0; local
1425 // the actual amount of audio frames playe
[all...]
/frameworks/av/media/libstagefright/rtsp/
H A DARTPAssembler.cpp76 const List<sp<ABuffer> > &frames) {
78 for (List<sp<ABuffer> >::const_iterator it = frames.begin();
79 it != frames.end(); ++it) {
86 for (List<sp<ABuffer> >::const_iterator it = frames.begin();
87 it != frames.end(); ++it) {
116 CopyTimes(accessUnit, *frames.begin());
72 MakeADTSCompoundFromAACFrames( unsigned profile, unsigned samplingFreqIndex, unsigned channelConfig, const List<sp<ABuffer> > &frames) argument
/frameworks/av/media/libstagefright/
H A DXINGSeeker.cpp139 int32_t frames = U32_AT(buffer); local
144 if (frames) {
145 seeker->mDurationUs = (int64_t)frames * samples_per_frame * 1000000LL / sampling_rate;
/frameworks/base/cmds/bootanimation/
H A DBootAnimation.h72 SortedVector<Frame> frames; member in struct:android::BootAnimation::Animation::Part
/frameworks/native/opengl/tests/hwc/
H A DhwcStress.cpp199 static vector <vector <sp<GraphicBuffer> > > frames; variable
396 // Regenerate a new set of test frames when this pass is
413 list = hwcTestCreateLayerList(testRandMod(frames.size()) + 1);
419 // Prandomly select a subset of frames to be used by this pass.
421 selectedFrames = vectorRandSelect(frames, list->numHwLayers);
545 * named frames. The graphic buffers are contained within a vector of
562 frames.clear();
563 frames.resize(rows);
566 // All frames within a row have to have the same format and
591 frames[ro
[all...]
/frameworks/wilhelm/tests/sandbox/
H A Dplaybq.c220 fprintf(stderr, " -f# frames per buffer (default 512)\n");
430 sf_count_t frames = framesPerBuffer; local
432 count = sf_readf_short(sndfile, buffer, frames);
H A Dplaybq.cpp220 fprintf(stderr, " -f# frames per buffer (default 512)\n");
430 sf_count_t frames = framesPerBuffer; local
432 count = sf_readf_short(sndfile, buffer, frames);
/frameworks/av/include/media/
H A DMediaProfiles.h54 * Set default maximum prefetch YUV frames to 6, which means video editor can
55 * queue up to 6 YUV frames in the video encoder source.
57 * engine when the encoder consumes YUV frames at a lower speed
134 * enc.vid.fps.min - min frame rate in frames per second
135 * enc.vid.fps.max - max frame rate in frames per second
147 * maxPrefetchYUVFrames - max prefetch YUV frames in video editor engine. This value is used
368 int outFrameWidth, int outFrameHeight, int frames)
373 mMaxPrefetchYUVFrames(frames) {}
367 VideoEditorCap(int inFrameWidth, int inFrameHeight, int outFrameWidth, int outFrameHeight, int frames) argument
/frameworks/av/services/audioflinger/
H A DTracks.cpp233 void* AudioFlinger::ThreadBase::TrackBase::getBuffer(uint32_t offset, uint32_t frames) const {
236 int8_t *bufferEnd = bufferStart + frames * mFrameSize;
802 // a track is considered presented when the total number of frames written to audio HAL
803 // corresponds to the number of frames written when presentationComplete() is called for the
1068 "Bad bookkeeping while updating frames pending. Timed buffer is"
1075 "Bad bookkeeping while updating frames pending. Should have at"
1076 " least %u queued frames, but we think we have only %u. (update"
1361 " least %u queued frames, but we think we have only %u",
1454 bool AudioFlinger::PlaybackThread::OutputTrack::write(int16_t* data, uint32_t frames) argument
1460 inBuffer.frameCount = frames;
[all...]

Completed in 301 milliseconds