/frameworks/wilhelm/src/android/ |
D | android_GenericMediaPlayer.cpp | 116 void MediaPlayerNotificationClient::notify(int msg, int ext1, int ext2, const Parcel *obj) { in notify() argument 119 media_event_type_to_string((enum media_event_type) msg), msg, ext1, ext2); in notify() 147 if (genericMediaPlayer->mHasVideo && (ext1 != 0 || ext2 != 0)) { in notify() 149 (int32_t)ext1 /*width*/, (int32_t)ext2 /*height*/, true /*async*/); in notify() 163 if (ext1 < 0) { in notify() 164 SL_LOGE("MEDIA_BUFFERING_UPDATE %d%% < 0", ext1); in notify() 165 ext1 = 0; in notify() 166 } else if (ext1 > 100) { in notify() 167 SL_LOGE("MEDIA_BUFFERING_UPDATE %d%% > 100", ext1); in notify() 168 ext1 = 100; in notify() [all …]
|
D | android_GenericMediaPlayer.h | 36 virtual void notify(int msg, int ext1, int ext2, const Parcel *obj);
|
/frameworks/av/media/libmedia/ |
D | IMediaRecorderClient.cpp | 38 virtual void notify(int msg, int ext1, int ext2) in notify() argument 43 data.writeInt32(ext1); in notify() 60 int ext1 = data.readInt32(); in onTransact() local 62 notify(msg, ext1, ext2); in onTransact()
|
D | IMediaPlayerClient.cpp | 38 virtual void notify(int msg, int ext1, int ext2, const Parcel *obj) in notify() argument 43 data.writeInt32(ext1); in notify() 63 int ext1 = data.readInt32(); in onTransact() local 70 notify(msg, ext1, ext2, &obj); in onTransact()
|
D | mediaplayer.cpp | 798 void MediaPlayer::notify(int msg, int ext1, int ext2, const Parcel *obj) in notify() argument 800 ALOGV("message received msg=%d, ext1=%d, ext2=%d", msg, ext1, ext2); in notify() 819 ALOGV("notify(%d, %d, %d) callback on disconnected mediaplayer", msg, ext1, ext2); in notify() 850 ALOGE("error (%d, %d)", ext1, ext2); in notify() 856 mPrepareStatus = ext1; in notify() 864 if (ext1 != MEDIA_INFO_VIDEO_TRACK_LAGGING) { in notify() 865 ALOGW("info/warning (%d, %d)", ext1, ext2); in notify() 881 ALOGV("buffering %d", ext1); in notify() 884 ALOGV("New video size %d x %d", ext1, ext2); in notify() 885 mVideoWidth = ext1; in notify() [all …]
|
D | IHDCP.cpp | 45 int msg, int ext1, int ext2, const Parcel *obj) { in notify() 49 data.writeInt32(ext1); in notify() 179 int ext1 = data.readInt32(); in onTransact() local 190 notify(msg, ext1, ext2, &obj); in onTransact()
|
D | mediarecorder.cpp | 724 void MediaRecorder::notify(int msg, int ext1, int ext2) in notify() argument 726 ALOGV("message received msg=%d, ext1=%d, ext2=%d", msg, ext1, ext2); in notify() 736 listener->notify(msg, ext1, ext2); in notify()
|
/frameworks/av/media/libmediaplayerservice/ |
D | HDCP.cpp | 162 void HDCP::ObserveWrapper(void *me, int msg, int ext1, int ext2) { in ObserveWrapper() argument 163 static_cast<HDCP *>(me)->observe(msg, ext1, ext2); in ObserveWrapper() 166 void HDCP::observe(int msg, int ext1, int ext2) { in observe() argument 170 mObserver->notify(msg, ext1, ext2, NULL /* obj */); in observe()
|
D | HDCP.h | 57 static void ObserveWrapper(void *me, int msg, int ext1, int ext2); 58 void observe(int msg, int ext1, int ext2);
|
/frameworks/av/camera/ |
D | ICameraClient.cpp | 46 void notifyCallback(int32_t msgType, int32_t ext1, int32_t ext2) in notifyCallback() argument 52 data.writeInt32(ext1); in notifyCallback() 108 int32_t ext1 = data.readInt32(); in onTransact() local 110 notifyCallback(msgType, ext1, ext2); in onTransact()
|
D | CameraBase.cpp | 192 int32_t ext1, in notifyCallback() argument 201 listener->notify(msgType, ext1, ext2); in notifyCallback()
|
/frameworks/av/include/media/stagefright/ |
D | MediaWriter.h | 60 void notify(int msg, int ext1, int ext2) { in notify() 62 mListener->notify(msg, ext1, ext2); in notify()
|
/frameworks/av/include/media/ |
D | MediaPlayerInterface.h | 70 int msg, int ext1, int ext2, const Parcel *obj); 255 void sendEvent(int msg, int ext1=0, int ext2=0, 265 if (notifyCB) notifyCB(cookie, msg, ext1, ext2, obj);
|
D | mediarecorder.h | 210 virtual void notify(int msg, int ext1, int ext2) = 0; 246 void notify(int msg, int ext1, int ext2);
|
D | mediaplayer.h | 198 virtual void notify(int msg, int ext1, int ext2, const Parcel *obj) = 0; 245 void notify(int msg, int ext1, int ext2, const Parcel *obj = NULL);
|
D | IMediaRecorderClient.h | 31 virtual void notify(int msg, int ext1, int ext2) = 0;
|
D | IMediaPlayerClient.h | 31 virtual void notify(int msg, int ext1, int ext2, const Parcel *obj) = 0;
|
D | IHDCP.h | 28 int msg, int ext1, int ext2, const Parcel *obj) = 0;
|
/frameworks/av/media/libmediaplayerservice/nuplayer/ |
D | NuPlayerDriver.h | 79 void notifyListener(int msg, int ext1 = 0, int ext2 = 0, const Parcel *in = NULL); 127 void notifyListener_l(int msg, int ext1 = 0, int ext2 = 0, const Parcel *in = NULL);
|
D | NuPlayerDriver.cpp | 711 int msg, int ext1, int ext2, const Parcel *in) { in notifyListener() argument 713 notifyListener_l(msg, ext1, ext2, in); in notifyListener() 717 int msg, int ext1, int ext2, const Parcel *in) { in notifyListener_l() argument 719 this, msg, ext1, ext2, mAutoLoop, mLooping); in notifyListener_l() 762 sendEvent(msg, ext1, ext2, in); in notifyListener_l()
|
/frameworks/av/services/camera/libcameraservice/api1/ |
D | CameraClient.h | 102 static void notifyCallback(int32_t msgType, int32_t ext1, int32_t ext2, void* user); 113 void handleGenericNotify(int32_t msgType, int32_t ext1, int32_t ext2);
|
D | CameraClient.cpp | 766 void CameraClient::notifyCallback(int32_t msgType, int32_t ext1, in notifyCallback() argument 781 client->handleGenericNotify(msgType, ext1, ext2); in notifyCallback() 945 int32_t ext1, int32_t ext2) { in handleGenericNotify() argument 949 c->notifyCallback(msgType, ext1, ext2); in handleGenericNotify()
|
/frameworks/av/include/camera/android/hardware/ |
D | ICameraClient.h | 35 virtual void notifyCallback(int32_t msgType, int32_t ext1, int32_t ext2) = 0;
|
/frameworks/native/include/media/hardware/ |
D | HDCPAPI.h | 29 typedef void (*ObserverFunc)(void *cookie, int msg, int ext1, int ext2);
|
/frameworks/base/media/jni/ |
D | android_media_MediaRecorder.cpp | 71 void notify(int msg, int ext1, int ext2); 104 void JNIMediaRecorderListener::notify(int msg, int ext1, int ext2) in notify() argument 109 env->CallStaticVoidMethod(mClass, fields.post_event, mObject, msg, ext1, ext2, NULL); in notify()
|