Home | History | Annotate | Download | only in jni

Lines Matching refs:rgb

16 // These utility functions allow for the conversion of RGB data to YUV data.
61 const uint32_t rgb = *in++;
63 const int nB = (rgb >> 8) & 0xFF;
64 const int nG = (rgb >> 16) & 0xFF;
65 const int nR = (rgb >> 24) & 0xFF;
67 const int nR = (rgb >> 16) & 0xFF;
68 const int nG = (rgb >> 8) & 0xFF;
69 const int nB = rgb & 0xFF;
84 const uint32_t rgb = *in++;
86 const int r5 = ((rgb >> 11) & 0x1F);
87 const int g6 = ((rgb >> 5) & 0x3F);
88 const int b5 = (rgb & 0x1F);