Searched refs:streamSize (Results 1 - 4 of 4) sorted by relevance

/frameworks/wilhelm/src/android/util/
H A DAacAdtsExtractor.cpp131 off64_t streamSize; local
132 if (mDataSource->getSize(&streamSize) == OK) {
134 while (offset < streamSize) {
145 if (offset > streamSize) {
147 frameSize, (long long) offset, (long long) streamSize);
/frameworks/av/media/libstagefright/
H A DAACExtractor.cpp170 off64_t streamSize, numFrames = 0; local
174 if (mDataSource->getSize(&streamSize) == OK) {
175 while (offset < streamSize) {
178 (long long)offset, (long long)streamSize);
H A DAMRExtractor.cpp140 off64_t streamSize; local
144 if (mDataSource->getSize(&streamSize) == OK) {
145 while (offset < streamSize) {
/frameworks/base/core/java/android/hardware/camera2/legacy/
H A DParameterUtils.java356 * of the preview, the current preview {@code streamSize} is also used.</p>
363 * @param streamSize stream size dimensions, in pixels
374 Camera.Parameters params, Rect activeArray, Size streamSize, Rect cropRegion,
380 checkNotNull(streamSize, "streamSize must not be null");
395 Rect previewCrop = getPreviewCropRectangleUnzoomed(activeArray, streamSize);
419 getAvailablePreviewZoomCropRectangles(params, activeArray, streamSize);
579 * <p>Each crop rectangle is changed to have the same aspect ratio as {@code streamSize},
582 * <p>To get the reported crop region when applying a zoom to the sensor, use {@code streamSize}
587 * @param streamSize strea
373 getClosestAvailableZoomCrop( Camera.Parameters params, Rect activeArray, Size streamSize, Rect cropRegion, Rect reportedCropRegion, Rect previewCropRegion) argument
648 getAvailableCropRectangles(Camera.Parameters params, Rect activeArray, Size streamSize) argument
[all...]

Completed in 2563 milliseconds