Home | History | Annotate | Download | only in legacy

Lines Matching defs:burst

49      * Return and remove the next burst on the queue.
51 * <p>If a repeating burst is returned, it will not be removed.</p>
53 * @return a pair containing the next burst and the current frame number, or null if none exist.
108 * Add a the given burst to the queue.
110 * <p>If the burst is repeating, replace the current repeating burst.</p>
112 * @param requests the burst of requests to add to the queue.
113 * @param repeating true if the burst is repeating.
117 * request if this burst is set to be repeating.
121 BurstHolder burst = new BurstHolder(requestId, repeating, requests, mJpegSurfaceIds);
123 if (burst.isRepeating()) {
130 mRepeatingRequest = burst;
132 mRequestQueue.offer(burst);
133 lastFrame = calculateLastFrame(burst.getRequestId());