Searched defs:ext1 (Results 1 - 25 of 28) sorted by relevance

12

/frameworks/av/media/libmedia/
H A DIMediaPlayerClient.cpp38 virtual void notify(int msg, int ext1, int ext2, const Parcel *obj) argument
43 data.writeInt32(ext1);
63 int ext1 = data.readInt32(); local
70 notify(msg, ext1, ext2, &obj);
H A DIMediaRecorderClient.cpp38 virtual void notify(int msg, int ext1, int ext2) argument
43 data.writeInt32(ext1);
60 int ext1 = data.readInt32(); local
62 notify(msg, ext1, ext2);
H A DIHDCP.cpp42 int msg, int ext1, int ext2, const Parcel *obj) {
46 data.writeInt32(ext1);
121 int ext1 = data.readInt32(); local
132 notify(msg, ext1, ext2, &obj);
41 notify( int msg, int ext1, int ext2, const Parcel *obj) argument
H A Dmediarecorder.cpp659 void MediaRecorder::notify(int msg, int ext1, int ext2) argument
661 ALOGV("message received msg=%d, ext1=%d, ext2=%d", msg, ext1, ext2);
671 listener->notify(msg, ext1, ext2);
H A Dmediaplayer.cpp647 void MediaPlayer::notify(int msg, int ext1, int ext2, const Parcel *obj) argument
649 ALOGV("message received msg=%d, ext1=%d, ext2=%d", msg, ext1, ext2);
668 ALOGV("notify(%d, %d, %d) callback on disconnected mediaplayer", msg, ext1, ext2);
697 // ext1: Media framework error code.
699 ALOGE("error (%d, %d)", ext1, ext2);
705 mPrepareStatus = ext1;
711 // ext1: Media framework error code.
713 if (ext1 != MEDIA_INFO_VIDEO_TRACK_LAGGING) {
714 ALOGW("info/warning (%d, %d)", ext1, ext
[all...]
/frameworks/av/camera/
H A DICameraClient.cpp42 void notifyCallback(int32_t msgType, int32_t ext1, int32_t ext2) argument
48 data.writeInt32(ext1);
94 int32_t ext1 = data.readInt32(); local
96 notifyCallback(msgType, ext1, ext2);
H A DCamera.cpp351 void Camera::notifyCallback(int32_t msgType, int32_t ext1, int32_t ext2) argument
359 listener->notify(msgType, ext1, ext2);
/frameworks/av/include/media/stagefright/
H A DMediaWriter.h57 void notify(int msg, int ext1, int ext2) { argument
59 mListener->notify(msg, ext1, ext2);
/frameworks/av/media/libmediaplayerservice/
H A DHDCP.cpp114 void HDCP::ObserveWrapper(void *me, int msg, int ext1, int ext2) { argument
115 static_cast<HDCP *>(me)->observe(msg, ext1, ext2);
118 void HDCP::observe(int msg, int ext1, int ext2) { argument
122 mObserver->notify(msg, ext1, ext2, NULL /* obj */);
/frameworks/av/include/media/
H A DMediaPlayerInterface.h68 int msg, int ext1, int ext2, const Parcel *obj);
191 void sendEvent(int msg, int ext1=0, int ext2=0, argument
194 if (mNotify) mNotify(mCookie, msg, ext1, ext2, obj);
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DNuPlayerDriver.cpp351 void NuPlayerDriver::notifyListener(int msg, int ext1, int ext2) { argument
356 sendEvent(msg, ext1, ext2);
H A DNuPlayer.cpp894 void NuPlayer::notifyListener(int msg, int ext1, int ext2) { argument
905 driver->notifyListener(msg, ext1, ext2);
/frameworks/av/media/libstagefright/wifi-display/sink/
H A DTunnelRenderer.cpp40 virtual void notify(int msg, int ext1, int ext2, const Parcel *obj) { argument
41 ALOGI("notify %d, %d, %d", msg, ext1, ext2);
/frameworks/wilhelm/src/android/
H A Dandroid_GenericMediaPlayer.cpp81 // Map a media_error_type enum (the ext1 of a MEDIA_ERROR event) to a string or NULL
95 // Map a media_info_type enum (the ext1 of a MEDIA_INFO event) to a string or NULL
116 void MediaPlayerNotificationClient::notify(int msg, int ext1, int ext2, const Parcel *obj) { argument
117 SL_LOGV("MediaPlayerNotificationClient::notify(msg=%s (%d), ext1=%d, ext2=%d)",
118 media_event_type_to_string((enum media_event_type) msg), msg, ext1, ext2);
146 if (genericMediaPlayer->mHasVideo && (ext1 != 0 || ext2 != 0)) {
148 (int32_t)ext1 /*width*/, (int32_t)ext2 /*height*/, true /*async*/);
162 if (ext1 < 0) {
163 SL_LOGE("MEDIA_BUFFERING_UPDATE %d%% < 0", ext1);
164 ext1
[all...]
/frameworks/av/cmds/stagefright/
H A Dstream.cpp268 virtual void notify(int msg, int ext1, int ext2, const Parcel *obj) { argument
/frameworks/av/libvideoeditor/lvpp/
H A DVideoEditorPreviewController.cpp1154 void* cookie, int msg, int ext1, int ext2)
1219 int err_val = ext1;
1221 // ext1: Media framework error code.
1223 ALOGE("MEDIA_ERROR; error (%d, %d)", ext1, ext2);
1233 // ext1: Media framework error code.
1235 //ALOGW("MEDIA_INFO; info/warning (%d, %d)", ext1, ext2);
1246 ALOGV("MEDIA_BUFFERING_UPDATE; buffering %d", ext1);
1249 ALOGV("MEDIA_SET_VIDEO_SIZE; New video size %d x %d", ext1, ext2);
1278 //ext1 = 1; start the overlay display
1284 if (ext1
1153 notify( void* cookie, int msg, int ext1, int ext2) argument
[all...]
H A DPreviewPlayer.cpp1636 void PreviewPlayer::notifyListener_l(int msg, int ext1, int ext2) { argument
1641 listener->sendEvent(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.cpp70 virtual void notify(int msg, int ext1, int ext2, const Parcel *obj = NULL);
103 void JNIMediaPlayerListener::notify(int msg, int ext1, int ext2, const Parcel *obj) argument
112 msg, ext1, ext2, jParcel);
116 msg, ext1, ext2, NULL);
/frameworks/av/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 ALOGV("notify(%d, %d, %d)", msgType, ext1, ext2);
/frameworks/av/media/libstagefright/wifi-display/source/
H A DWifiDisplaySource.cpp387 int32_t msgCode, ext1, ext2; local
389 CHECK(msg->findInt32("ext1", &ext1));
392 ALOGI("Saw HDCP notification code %d, ext1 %d, ext2 %d",
393 msgCode, ext1, ext2);
1435 int msg, int ext1, int ext2, const Parcel *obj);
1449 int msg, int ext1, int ext2, const Parcel *obj) {
1452 notify->setInt32("ext1", ext1);
1448 notify( int msg, int ext1, int ext2, const Parcel *obj) argument
/frameworks/av/services/camera/libcameraservice/
H A DCameraClient.cpp686 void CameraClient::notifyCallback(int32_t msgType, int32_t ext1, argument
702 // ext1 is the dimension of the yuv picture.
706 client->handleGenericNotify(msgType, ext1, ext2);
874 int32_t ext1, int32_t ext2) {
878 c->notifyCallback(msgType, ext1, ext2);
873 handleGenericNotify(int32_t msgType, int32_t ext1, int32_t ext2) argument
H A DCameraHardwareInterface.h33 int32_t ext1,
442 static void __notify_cb(int32_t msg_type, int32_t ext1, argument
448 __this->mNotifyCb(msg_type, ext1, ext2, __this->mCbUser);
/frameworks/av/services/camera/tests/CameraServiceTest/
H A DCameraServiceTest.cpp169 virtual void notifyCallback(int32_t msgType, int32_t ext1, int32_t ext2);
242 void MCameraClient::notifyCallback(int32_t msgType, int32_t ext1, int32_t ext2) { argument
/frameworks/base/core/jni/
H A Dandroid_hardware_Camera.cpp63 virtual void notify(int32_t msgType, int32_t ext1, int32_t ext2);
171 void JNICameraContext::notify(int32_t msgType, int32_t ext1, int32_t ext2) argument
193 mCameraJObjectWeak, msgType, ext1, ext2, NULL);

Completed in 513 milliseconds

12