Lines Matching refs:mPictureSizes
421 maxSnapshotWidth = mPictureSizes[0].width;
422 maxSnapshotHeight = mPictureSizes[0].height;
425 if(((maxSnapshotWidth < mPictureSizes[i].width) &&
426 (maxSnapshotHeight <= mPictureSizes[i].height))){
427 maxSnapshotWidth = mPictureSizes[i].width;
428 maxSnapshotHeight = mPictureSizes[i].height;
436 mPictureSizesPtr = mPictureSizes;
632 /* Find the first dimension in the mPictureSizes
636 if ((mPictureSizes[i].width <= dim.width) &&
637 (mPictureSizes[i].height <= dim.height)) {
638 maxDim->height = mPictureSizes[i].height;
639 maxDim->width = mPictureSizes[i].width;
3656 mPictureSizes =
3659 if (mPictureSizes == NULL) {
3672 free(mPictureSizes);
3673 mPictureSizes = NULL;
3689 mPictureSizes[count].height = picture_size_table->height;
3690 mPictureSizes[count].width = picture_size_table->width;
3700 mPictureSizes = default_picture_sizes;
3779 if ((mPictureSizes != default_picture_sizes) && mPictureSizes) {
3780 free(mPictureSizes);