Home | History | Annotate | Download | only in src

Lines Matching refs:mPictureSizes

422     maxSnapshotWidth = mPictureSizes[0].width;
423 maxSnapshotHeight = mPictureSizes[0].height;
426 if(((maxSnapshotWidth < mPictureSizes[i].width) &&
427 (maxSnapshotHeight <= mPictureSizes[i].height))){
428 maxSnapshotWidth = mPictureSizes[i].width;
429 maxSnapshotHeight = mPictureSizes[i].height;
437 mPictureSizesPtr = mPictureSizes;
614 /* Find the first dimension in the mPictureSizes
618 if ((mPictureSizes[i].width <= dim.width) &&
619 (mPictureSizes[i].height <= dim.height)) {
620 maxDim->height = mPictureSizes[i].height;
621 maxDim->width = mPictureSizes[i].width;
3510 mPictureSizes =
3513 if (mPictureSizes == NULL) {
3526 free(mPictureSizes);
3527 mPictureSizes = NULL;
3543 mPictureSizes[count].height = picture_size_table->height;
3544 mPictureSizes[count].width = picture_size_table->width;
3554 mPictureSizes = default_picture_sizes;
3633 if ((mPictureSizes != default_picture_sizes) && mPictureSizes) {
3634 free(mPictureSizes);