Home
last modified time | relevance | path

Searched refs:nFrames (Results 1 – 6 of 6) sorted by relevance

/frameworks/av/cmds/stagefright/
Drecordvideo.cpp62 DummySource(int width, int height, int nFrames, int fps, int colorFormat) in DummySource() argument
65 mMaxNumFrames(nFrames), in DummySource()
173 int nFrames = 300; in main() local
213 nFrames = atoi(optarg); in main()
273 new DummySource(width, height, nFrames, frameRateFps, colorFormat); in main()
333 fprintf(stderr, "encoding %d frames in %" PRId64 " us\n", nFrames, (end-start)/1000); in main()
334 fprintf(stderr, "encoding speed is: %.2f fps\n", (nFrames * 1E9) / (end-start)); in main()
/frameworks/av/media/libeffects/testlibs/
DAudioBiquadFilter.cpp151 size_t nFrames = frameCount; in process_normal_mono() local
161 while (nFrames-- > 0) { in process_normal_mono()
209 size_t nFrames = frameCount; in process_normal_multi() local
214 while (nFrames-- > 0) { in process_normal_multi()
/frameworks/av/media/codec2/hidl/1.0/vts/functional/audio/
DVtsHalMediaC2V1_0TargetAudioEncTest.cpp284 std::ifstream& eleStream, uint32_t nFrames, in encodeNFrames() argument
297 if (nFrames == 0) break; in encodeNFrames()
314 if (signalEOS && (nFrames == 1)) in encodeNFrames()
360 nFrames--; in encodeNFrames()
/frameworks/av/media/codec2/hidl/1.0/vts/functional/video/
DVtsHalMediaC2V1_0TargetVideoEncTest.cpp288 uint32_t frameID, uint32_t nFrames, uint32_t nWidth, in encodeNFrames() argument
298 if (nFrames == 0) break; in encodeNFrames()
315 if (signalEOS && (nFrames == 1)) in encodeNFrames()
375 nFrames--; in encodeNFrames()
/frameworks/av/media/libstagefright/bqhelper/
DGraphicBufferSource.cpp821 double nFrames = (timeUs - mPrevCaptureUs) * mCaptureFps / 1000000; in calculateCodecTimestamp_l() local
822 if (nFrames < 0.5 - kTimestampFluctuation) { in calculateCodecTimestamp_l()
827 if (nFrames <= 1.0) { in calculateCodecTimestamp_l()
828 nFrames = 1.0; in calculateCodecTimestamp_l()
830 mFrameCount += std::llround(nFrames); in calculateCodecTimestamp_l()
/frameworks/av/media/libstagefright/
DAudioSource.cpp283 int32_t nFrames = mNumFramesReceived - autoRampStartFrames; in read() local
284 rampVolume(nFrames, autoRampDurationFrames, in read()