Home | History | Annotate | Download | only in jni

Lines Matching defs:entry1

1430         camera_metadata_entry entry1 =
1432 BAIL_IF_EMPTY_RET_NULL_SP(entry1, env, TAG_CALIBRATIONILLUMINANT1, writer);
1438 uint16_t ref1 = entry1.data.u8[0];
1452 camera_metadata_entry entry1 =
1454 BAIL_IF_EMPTY_RET_NULL_SP(entry1, env, TAG_COLORMATRIX1, writer);
1456 int32_t colorTransform1[entry1.count * 2];
1459 for(size_t i = 0; i < entry1.count; ++i) {
1460 colorTransform1[ctr++] = entry1.data.r[i].numerator;
1461 colorTransform1[ctr++] = entry1.data.r[i].denominator;
1464 BAIL_IF_INVALID_RET_NULL_SP(writer->addEntry(TAG_COLORMATRIX1, entry1.count,
1485 camera_metadata_entry entry1 =
1487 BAIL_IF_EMPTY_RET_NULL_SP(entry1, env, TAG_CAMERACALIBRATION1, writer);
1489 int32_t calibrationTransform1[entry1.count * 2];
1492 for(size_t i = 0; i < entry1.count; ++i) {
1493 calibrationTransform1[ctr++] = entry1.data.r[i].numerator;
1494 calibrationTransform1[ctr++] = entry1.data.r[i].denominator;
1497 BAIL_IF_INVALID_RET_NULL_SP(writer->addEntry(TAG_CAMERACALIBRATION1, entry1.count,
1519 camera_metadata_entry entry1 =
1521 BAIL_IF_EMPTY_RET_NULL_SP(entry1, env, TAG_FORWARDMATRIX1, writer);
1523 int32_t forwardTransform1[entry1.count * 2];
1526 for(size_t i = 0; i < entry1.count; ++i) {
1527 forwardTransform1[ctr++] = entry1.data.r[i].numerator;
1528 forwardTransform1[ctr++] = entry1.data.r[i].denominator;
1531 BAIL_IF_INVALID_RET_NULL_SP(writer->addEntry(TAG_FORWARDMATRIX1, entry1.count,
1664 camera_metadata_entry entry1 =
1670 if (entry1.count != 0) {
1671 lsmWidth = static_cast<uint32_t>(entry1.data.i32[0]);
1672 lsmHeight = static_cast<uint32_t>(entry1.data.i32[1]);