Searched defs:frames (Results 1 - 10 of 10) sorted by path

/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/media/libmedia/
H A DAudioRecord.cpp659 uint32_t frames = mRemainingFrames; local
697 audioBuffer.frameCount = frames;
728 frames -= audioBuffer.frameCount;
732 } while (frames);
745 if (frames == 0) {
748 mRemainingFrames = frames;
H A DAudioTrack.cpp1197 uint32_t frames; local
1248 frames = 0;
1250 frames = mRemainingFrames;
1263 audioBuffer.frameCount = frames;
1310 frames -= audioBuffer.frameCount;
1314 while (frames);
1316 if (frames == 0) {
1319 mRemainingFrames = frames;
1370 // the actual amount of audio frames played (e.g SoundPool) receives them.
1372 uint32_t frames local
1648 uint32_t frames = UINT_MAX; local
[all...]
/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/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/services/audioflinger/
H A DAudioFlinger.cpp137 // minimum normal mix buffer size, expressed in milliseconds rather than frames
2059 ALOGW("HAL output buffer size is %u frames but AudioMixer requires multiples of 16 frames",
2068 // round up minimum and round down maximum to nearest 16 frames to satisfy AudioMixer
2098 // round up to nearest 16 frames to satisfy AudioMixer
2100 ALOGI("HAL output buffer size %u frames, normal mix buffer size %u frames", mFrameCount, mNormalFrameCount);
2131 // return an estimation of rendered frames when the output is suspended
2132 int32_t frames = mBytesWritten - latency_l(); local
2133 if (frames <
5542 write(int16_t* data, uint32_t frames) argument
[all...]
/frameworks/base/cmds/bootanimation/
H A DBootAnimation.h72 SortedVector<Frame> frames; member in struct:android::BootAnimation::Animation::Part
/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/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.c172 fprintf(stderr, " -f# frames per buffer (default 512)\n");
378 sf_count_t frames = framesPerBuffer; local
380 count = sf_readf_short(sndfile, buffer, frames);

Completed in 1026 milliseconds