Home | History | Annotate | Download | only in camera

Lines Matching defs:picture

73     camera_memory_t* picture = NULL;
103 picture = mRequestMemory(-1, jpeg_size + exif_section->Size, 1, NULL);
104 if (picture && picture->data) {
105 exif->saveJpeg((unsigned char*) picture->data, jpeg_size + exif_section->Size);
111 picture = mRequestMemory(-1, jpeg_size, 1, NULL);
112 if (picture && picture->data) {
113 memcpy(picture->data, encoded_mem->data, jpeg_size);
126 if(picture && (mNotifierState==AppCallbackNotifier::NOTIFIER_STARTED) &&
138 mDataCb(CAMERA_MSG_COMPRESSED_IMAGE, picture, 0, NULL, mCallbackCookie);
144 if (picture) {
145 picture->release(picture);
692 camera_memory_t* picture = NULL;
703 picture = mRequestMemory(-1, frame->mLength, 1, NULL);
705 if (NULL != picture) {
706 dest = picture->data;
717 if(picture) {
720 mDataCb(msgType, picture, 0, NULL, mCallbackCookie);
722 picture->release(picture);
728 camera_memory_t* picture = NULL;