/aosp12/packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/ |
H A D | ImageUtils.h | 30 typedef ImageTypeBase *ImageType; typedef 62 static void rgb2yvu(ImageType out, ImageType in, int width, int height); 64 static void rgba2yvu(ImageType out, ImageType in, int width, int height); 76 static void yvu2rgb(ImageType out, ImageType in, int width, int height); 77 static void yvu2bgr(ImageType out, ImageType in, int width, int height); 91 static ImageType rgb2gray(ImageType in, int width, int height); 92 static ImageType rgb2gray(ImageType out, ImageType in, int width, int height); 97 static ImageType readBinaryPPM(const char *filename, int &width, int &height); 112 static void freeImage(ImageType image); 114 static ImageType *imageTypeToRowPointers(ImageType out, int width, int height); [all …]
|
H A D | ImageUtils.cpp | 28 void ImageUtils::rgba2yvu(ImageType out, ImageType in, int width, int height) in rgba2yvu() 31 ImageType yimg = out; in rgba2yvu() 34 ImageType image = in; in rgba2yvu() 73 void ImageUtils::rgb2yvu(ImageType out, ImageType in, int width, int height) in rgb2yvu() 76 ImageType yimg = out; in rgb2yvu() 79 ImageType image = in; in rgb2yvu() 116 ImageType ImageUtils::rgb2gray(ImageType in, int width, int height) in rgb2gray() 120 ImageType image = in; in rgb2gray() 146 ImageType ImageUtils::rgb2gray(ImageType out, ImageType in, int width, int height) in rgb2gray() 149 ImageType gray = out; in rgb2gray() [all …]
|
H A D | MosaicTypes.h | 70 ImageType image; 98 inline ImageType getV() in getV() 106 inline ImageType getU() in getU() 116 ImageType U = image + (width*height); in getV() 125 ImageType U = image + (width*height*2); in getU()
|
H A D | Mosaic.h | 105 int addFrame(ImageType imageYVU); 112 int addFrameRGB(ImageType imageRGB); 127 ImageType getMosaic(int &width, int &height); 169 ImageType imageMosaicYVU;
|
H A D | AlignFeatures.h | 65 int addFrameRGB(ImageType image); 66 int addFrame(ImageType image); 89 ImageType imageGray;
|
H A D | Mosaic.cpp | 119 int Mosaic::addFrameRGB(ImageType imageRGB) in addFrameRGB() 121 ImageType imageYVU; in addFrameRGB() 129 int Mosaic::addFrame(ImageType imageYVU) in addFrame() 221 ImageType Mosaic::getMosaic(int &width, int &height) in getMosaic()
|
H A D | AlignFeatures.cpp | 98 int Align::addFrameRGB(ImageType imageRGB) in addFrameRGB() 104 int Align::addFrame(ImageType imageGray_) in addFrame() 109 ImageType *m_rows = ImageUtils::imageTypeToRowPointers(imageGray_, width, height); in addFrame()
|
H A D | Pyramid.h | 42 static void createPyramid(ImageType image, PyramidShort *pyramid, int last = 3 );
|
H A D | Blend.cpp | 101 ImageType &imageMosaicYVU, int &mosaicWidth, int &mosaicHeight, in runBlend() 333 ImageType mbY, mbU, mbV; in FillFramePyramid() 594 ImageType yimg; in CropFinalMosaic() 595 ImageType uimg; in CropFinalMosaic() 596 ImageType vimg; in CropFinalMosaic() 642 ImageType yimg; in PerformFinalBlending() 643 ImageType uimg; in PerformFinalBlending() 644 ImageType vimg; in PerformFinalBlending()
|
H A D | Blend.h | 76 …int runBlend(MosaicFrame **frames, MosaicFrame **rframes, int frames_size, ImageType &imageMosaicY…
|
/aosp12/packages/apps/LegacyCamera/jni/ |
H A D | feature_mos_jni.cpp | 122 ImageType &out) in GenerateQuarterResImagePlanar() 124 ImageType imp; in GenerateQuarterResImagePlanar() 125 ImageType outp; in GenerateQuarterResImagePlanar() 209 void YUV420toYVU24(ImageType yvu24, ImageType yuv420sp, int width, int height) in YUV420toYVU24() 213 ImageType oyp = yvu24; in YUV420toYVU24() 214 ImageType ovp = yvu24+frameSize; in YUV420toYVU24() 215 ImageType oup = yvu24+frameSize+frameSize; in YUV420toYVU24() 239 void YUV420toYVU24_NEW(ImageType yvu24, ImageType yuv420sp, int width, in YUV420toYVU24_NEW() 244 ImageType oyp = yvu24; in YUV420toYVU24_NEW() 245 ImageType ovp = yvu24 + frameSize; in YUV420toYVU24_NEW() [all …]
|
/aosp12/art/compiler/driver/ |
H A D | compiler_options.h | 79 enum class ImageType : uint8_t { enum 220 return image_type_ == ImageType::kBootImage; in IsBootImage() 225 return image_type_ == ImageType::kBootImageExtension; in IsBootImageExtension() 234 return image_type_ == ImageType::kAppImage; in IsAppImage() 414 ImageType image_type_;
|
H A D | compiler_options.cc | 54 image_type_(ImageType::kNone), in CompilerOptions()
|
/aosp12/system/core/fastboot/ |
H A D | fastboot.cpp | 124 enum class ImageType { enum 139 ImageType type; 146 { nullptr, "boot_other.img", "boot.sig", "boot", true, ImageType::Normal }, 147 { "cache", "cache.img", "cache.sig", "cache", true, ImageType::Extra }, 150 { "odm", "odm.img", "odm.sig", "odm", true, ImageType::Normal }, 151 { "odm_dlkm", "odm_dlkm.img", "odm_dlkm.sig", "odm_dlkm", true, ImageType::Normal }, 152 { "product", "product.img", "product.sig", "product", true, ImageType::Normal }, 155 { "super", "super.img", "super.sig", "super", true, ImageType::Extra }, 162 { "userdata", "userdata.img", "userdata.sig", "userdata", true, ImageType::Extra }, 1533 if (images[i].type == ImageType::BootCritical) { in CollectImages() [all …]
|
/aosp12/art/dex2oat/ |
H A D | common_compiler_driver_test.cc | 87 compiler_options_->image_type_ = CompilerOptions::ImageType::kBootImage; in CreateCompilerDriver()
|
H A D | dex2oat.cc | 645 DCHECK(compiler_options_->image_type_ == CompilerOptions::ImageType::kNone); in ProcessOptions() 650 ? CompilerOptions::ImageType::kBootImage in ProcessOptions() 651 : CompilerOptions::ImageType::kBootImageExtension; in ProcessOptions() 657 compiler_options_->image_type_ = CompilerOptions::ImageType::kAppImage; in ProcessOptions() 1488 compiler_options_->image_type_ = CompilerOptions::ImageType::kNone; in Setup()
|
H A D | verifier_deps_test.cc | 82 compiler_options_->image_type_ = CompilerOptions::ImageType::kNone; in SetupCompilerDriver()
|
/aosp12/art/compiler/ |
H A D | common_compiler_test.cc | 311 compiler_options_->image_type_ = CompilerOptions::ImageType::kNone; in ClearBootImageOption()
|