Searched defs:ext2 (Results 1 - 23 of 23) sorted by relevance

/frameworks/base/media/libmedia/
H A DIMediaPlayerClient.cpp38 virtual void notify(int msg, int ext1, int ext2, const Parcel *obj) argument
44 data.writeInt32(ext2);
64 int ext2 = data.readInt32(); local
70 notify(msg, ext1, ext2, &obj);
H A DIMediaRecorderClient.cpp38 virtual void notify(int msg, int ext1, int ext2) argument
44 data.writeInt32(ext2);
61 int ext2 = data.readInt32(); local
62 notify(msg, ext1, ext2);
H A Dmediarecorder.cpp660 void MediaRecorder::notify(int msg, int ext1, int ext2) argument
662 LOGV("message received msg=%d, ext1=%d, ext2=%d", msg, ext1, ext2);
672 listener->notify(msg, ext1, ext2);
H A Dmediaplayer.cpp602 void MediaPlayer::notify(int msg, int ext1, int ext2, const Parcel *obj) argument
604 LOGV("message received msg=%d, ext1=%d, ext2=%d", msg, ext1, ext2);
623 LOGV("notify(%d, %d, %d) callback on disconnected mediaplayer", msg, ext1, ext2);
653 // ext2: Implementation dependant error code.
654 LOGE("error (%d, %d)", ext1, ext2);
667 // ext2: Implementation dependant error code.
669 LOGW("info/warning (%d, %d)", ext1, ext2);
688 LOGV("New video size %d x %d", ext1, ext2);
690 mVideoHeight = ext2;
[all...]
/frameworks/base/tools/aapt/
H A DFileFinder.cpp89 String8 ext2 = extensions[i].getPathExtension(); local
90 ext2.toLower();
92 if (ext == ext2) {
/frameworks/base/include/media/stagefright/
H A DMediaWriter.h57 void notify(int msg, int ext1, int ext2) { argument
59 mListener->notify(msg, ext1, ext2);
/frameworks/base/libs/camera/
H A DICameraClient.cpp42 void notifyCallback(int32_t msgType, int32_t ext1, int32_t ext2) argument
49 data.writeInt32(ext2);
95 int32_t ext2 = data.readInt32(); local
96 notifyCallback(msgType, ext1, ext2);
H A DCamera.cpp350 void Camera::notifyCallback(int32_t msgType, int32_t ext1, int32_t ext2) argument
358 listener->notify(msgType, ext1, ext2);
/frameworks/base/cmds/stagefright/
H A Dstream.cpp266 virtual void notify(int msg, int ext1, int ext2, const Parcel *obj) { argument
/frameworks/base/include/media/
H A DMediaPlayerInterface.h59 int msg, int ext1, int ext2, const Parcel *obj);
166 void sendEvent(int msg, int ext1=0, int ext2=0, argument
169 if (mNotify) mNotify(mCookie, msg, ext1, ext2, obj);
/frameworks/base/media/libmediaplayerservice/nuplayer/
H A DNuPlayerDriver.cpp320 void NuPlayerDriver::notifyListener(int msg, int ext1, int ext2) { argument
325 sendEvent(msg, ext1, ext2);
H A DNuPlayer.cpp825 void NuPlayer::notifyListener(int msg, int ext1, int ext2) { argument
836 driver->notifyListener(msg, ext1, ext2);
/frameworks/base/media/jni/
H A Dandroid_media_MediaRecorder.cpp66 void notify(int msg, int ext1, int ext2);
99 void JNIMediaRecorderListener::notify(int msg, int ext1, int ext2) argument
104 env->CallStaticVoidMethod(mClass, fields.post_event, mObject, msg, ext1, ext2, 0);
H A Dandroid_media_MediaPlayer.cpp69 virtual void notify(int msg, int ext1, int ext2, const Parcel *obj = NULL);
102 void JNIMediaPlayerListener::notify(int msg, int ext1, int ext2, const Parcel *obj) argument
112 msg, ext1, ext2, jArray);
117 msg, ext1, ext2, NULL);
/frameworks/media/libvideoeditor/lvpp/
H A DVideoEditorPreviewController.cpp1146 void* cookie, int msg, int ext1, int ext2)
1190 pEditInfo->overlaySettingsIndex = ext2;
1214 // ext2: Implementation dependant error code.
1215 LOGE("MEDIA_ERROR; error (%d, %d)", ext1, ext2);
1224 int info_val = ext2;
1226 // ext2: Implementation dependant error code.
1227 //LOGW("MEDIA_INFO; info/warning (%d, %d)", ext1, ext2);
1241 LOGV("MEDIA_SET_VIDEO_SIZE; New video size %d x %d", ext1, ext2);
1266 int overlayIndex = ext2;
1272 pEditInfo->overlaySettingsIndex = ext2;
1145 notify( void* cookie, int msg, int ext1, int ext2) argument
[all...]
H A DPreviewPlayerBase.cpp489 void PreviewPlayerBase::notifyListener_l(int msg, int ext1, int ext2) { argument
494 listener->sendEvent(msg, ext1, ext2);
/frameworks/base/media/libstagefright/
H A DCameraSource.cpp41 virtual void notify(int32_t msgType, int32_t ext1, int32_t ext2);
65 void CameraSourceListener::notify(int32_t msgType, int32_t ext1, int32_t ext2) { argument
66 LOGV("notify(%d, %d, %d)", msgType, ext1, ext2);
H A DAwesomePlayer.cpp575 void AwesomePlayer::notifyListener_l(int msg, int ext1, int ext2) { argument
580 listener->sendEvent(msg, ext1, ext2);
/frameworks/base/core/jni/
H A Dandroid_hardware_Camera.cpp61 virtual void notify(int32_t msgType, int32_t ext1, int32_t ext2);
169 void JNICameraContext::notify(int32_t msgType, int32_t ext1, int32_t ext2) argument
191 mCameraJObjectWeak, msgType, ext1, ext2, NULL);
/frameworks/base/services/camera/libcameraservice/
H A DCameraHardwareInterface.h36 int32_t ext2,
445 int32_t ext2, void *user)
450 __this->mNotifyCb(msg_type, ext1, ext2, __this->mCbUser);
444 __notify_cb(int32_t msg_type, int32_t ext1, int32_t ext2, void *user) argument
H A DCameraService.cpp965 int32_t ext2, void* user) {
978 client->handleGenericNotify(msgType, ext1, ext2);
1135 int32_t ext1, int32_t ext2) {
1139 c->notifyCallback(msgType, ext1, ext2);
964 notifyCallback(int32_t msgType, int32_t ext1, int32_t ext2, void* user) argument
1134 handleGenericNotify(int32_t msgType, int32_t ext1, int32_t ext2) argument
/frameworks/base/services/camera/tests/CameraServiceTest/
H A DCameraServiceTest.cpp170 virtual void notifyCallback(int32_t msgType, int32_t ext1, int32_t ext2);
243 void MCameraClient::notifyCallback(int32_t msgType, int32_t ext1, int32_t ext2) { argument
/frameworks/base/media/libmediaplayerservice/
H A DMediaPlayerService.cpp1071 void* cookie, int msg, int ext1, int ext2, const Parcel *obj)
1077 const media::Metadata::Type metadata_type = ext2;
1087 LOGV("[%d] notify (%p, %d, %d, %d)", client->mConnId, cookie, msg, ext1, ext2);
1088 client->mClient->notify(msg, ext1, ext2, obj);
1680 void* cookie, int msg, int ext1, int ext2, const Parcel *obj)
1682 LOGV("notify(%p, %d, %d, %d)", cookie, msg, ext1, ext2);
1689 LOGE("Error %d, %d occurred", ext1, ext2);
1070 notify( void* cookie, int msg, int ext1, int ext2, const Parcel *obj) argument
1679 notify( void* cookie, int msg, int ext1, int ext2, const Parcel *obj) argument

Completed in 2847 milliseconds