Lines Matching refs:maxNotificationFrames
2243 size_t maxNotificationFrames; in createTrack_l() local
2246 maxNotificationFrames = mFrameCount; in createTrack_l()
2257 maxNotificationFrames = frameCount / nBuffering; in createTrack_l()
2261 if (maxNotificationFrames > maxNotificationFramesFastDenied) { in createTrack_l()
2262 maxNotificationFrames = maxNotificationFramesFastDenied; in createTrack_l()
2266 if (notificationFrameCount == 0 || notificationFrameCount > maxNotificationFrames) { in createTrack_l()
2269 maxNotificationFrames, frameCount); in createTrack_l()
2272 notificationFrameCount, maxNotificationFrames, frameCount); in createTrack_l()
2274 notificationFrameCount = maxNotificationFrames; in createTrack_l()
7788 size_t maxNotificationFrames = ((int64_t) (hasFastCapture() ? mSampleRate/50 : mFrameCount) in createRecordTrack_l() local
7797 const size_t minNotificationsByMs = (minFramesByMs + maxNotificationFrames - 1) / in createRecordTrack_l()
7798 maxNotificationFrames; in createRecordTrack_l()
7799 const size_t minFrameCount = maxNotificationFrames * in createRecordTrack_l()
7802 if (notificationFrameCount == 0 || notificationFrameCount > maxNotificationFrames) { in createRecordTrack_l()
7803 notificationFrameCount = maxNotificationFrames; in createRecordTrack_l()