Home | History | Annotate | Download | only in jni

Lines Matching defs:cfa

858  * Write CFA pattern for given CFA enum into cfaOut.  cfaOut must have length >= 4.
859 * Returns OK on success, or a negative error code if the CFA enum was invalid.
862 camera_metadata_enum_android_sensor_info_color_filter_arrangement_t cfa =
865 switch(cfa) {
902 * Convert the CFA layout enum to an OpcodeListBuilder::CfaLayout enum, defaults to
906 camera_metadata_enum_android_sensor_info_color_filter_arrangement_t cfa =
909 switch(cfa) {
930 * per-channel noise profile. If multiple channels in the CFA correspond to a color in the color
934 * cfa - numChannels color channels corresponding to each of the per-channel noise profile
937 * the perChannelNoiseProfile and cfa arguments, respectively.
944 static status_t generateNoiseProfile(const double* perChannelNoiseProfile, uint8_t* cfa,
956 if (cfa[c] == planeColors[p] && perChannelNoiseProfile[c * 2] > noiseProfile[S]) {
1143 uint16_t interpretation = 32803; // CFA
1192 // Set CFA pattern dimensions
1199 // Set CFA pattern
1206 uint8_t cfa[cfaLength];
1207 if ((err = convertCFA(cfaEnum, /*out*/cfa)) != OK) {
1212 BAIL_IF_INVALID_RET_NULL_SP(writer->addEntry(TAG_CFAPATTERN, cfaLength, cfa, TIFF_IFD_0),
1219 // Set CFA plane color
1225 // Set CFA layout
1647 "Invalid CFA from camera characteristics");