Home | History | Annotate | Download | only in test

Lines Matching refs:msgType

159  *   @msgType : type of callback
165 void CameraContext::notify(int32_t msgType, int32_t ext1, int32_t ext2)
167 printf("Notify cb: %d %d %d\n", msgType, ext1, ext2);
169 if ( msgType & CAMERA_MSG_FOCUS ) {
174 if ( msgType & CAMERA_MSG_SHUTTER ) {
178 if ( msgType & CAMERA_MSG_ERROR) {
191 * @msgType : type of callback
197 void CameraContext::postData(int32_t msgType,
201 printf("Data cb: %d\n", msgType);
203 if ( msgType & CAMERA_MSG_PREVIEW_FRAME ) {
207 if ( msgType & CAMERA_MSG_RAW_IMAGE ) {
211 if (msgType & CAMERA_MSG_POSTVIEW_FRAME) {
215 if (msgType & CAMERA_MSG_COMPRESSED_IMAGE ) {
223 if ( ( msgType & CAMERA_MSG_PREVIEW_METADATA ) &&
236 * @msgType : type of buffer
242 int32_t msgType,
245 printf("Recording cb: %d %lld %p\n", msgType, timestamp, dataPtr.get());