Searched refs:ext1 (Results 1 - 25 of 41) 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.cpp45 int msg, int ext1, int ext2, const Parcel *obj) {
49 data.writeInt32(ext1);
179 int ext1 = data.readInt32(); local
190 notify(msg, ext1, ext2, &obj);
44 notify( int msg, int ext1, int ext2, const Parcel *obj) argument
H A Dmediaplayer.cpp802 void MediaPlayer::notify(int msg, int ext1, int ext2, const Parcel *obj) argument
804 ALOGV("message received msg=%d, ext1=%d, ext2=%d", msg, ext1, ext2);
823 ALOGV("notify(%d, %d, %d) callback on disconnected mediaplayer", msg, ext1, ext2);
852 // ext1: Media framework error code.
854 ALOGE("error (%d, %d)", ext1, ext2);
860 mPrepareStatus = ext1;
866 // ext1: Media framework error code.
868 if (ext1 != MEDIA_INFO_VIDEO_TRACK_LAGGING) {
869 ALOGW("info/warning (%d, %d)", ext1, ext
[all...]
H A Dmediarecorder.cpp679 void MediaRecorder::notify(int msg, int ext1, int ext2) argument
681 ALOGV("message received msg=%d, ext1=%d, ext2=%d", msg, ext1, ext2);
691 listener->notify(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...]
H A Dandroid_GenericMediaPlayer.h36 virtual void notify(int msg, int ext1, int ext2, const Parcel *obj);
/frameworks/av/include/media/
H A DIMediaPlayerClient.h31 virtual void notify(int msg, int ext1, int ext2, const Parcel *obj) = 0;
H A DIMediaRecorderClient.h31 virtual void notify(int msg, int ext1, int ext2) = 0;
H A DIHDCP.h28 int msg, int ext1, int ext2, const Parcel *obj) = 0;
H A Dmediarecorder.h206 virtual void notify(int msg, int ext1, int ext2) = 0;
239 void notify(int msg, int ext1, int ext2);
H A DMediaPlayerInterface.h70 int msg, int ext1, int ext2, const Parcel *obj);
253 void sendEvent(int msg, int ext1=0, int ext2=0, argument
263 if (notifyCB) notifyCB(cookie, msg, ext1, ext2, obj);
H A Dmediaplayer.h66 // 'ext1' should be a value from the enum media_error_type.
96 // 'ext1' should be a value from the enum media_info_type.
198 virtual void notify(int msg, int ext1, int ext2, const Parcel *obj) = 0;
246 void notify(int msg, int ext1, int ext2, const Parcel *obj = NULL);
/frameworks/av/include/media/stagefright/
H A DMediaWriter.h60 void notify(int msg, int ext1, int ext2) { argument
62 mListener->notify(msg, ext1, ext2);
/frameworks/av/media/libmediaplayerservice/
H A DHDCP.h57 static void ObserveWrapper(void *me, int msg, int ext1, int ext2);
58 void observe(int msg, int ext1, int ext2);
H A DHDCP.cpp162 void HDCP::ObserveWrapper(void *me, int msg, int ext1, int ext2) { argument
163 static_cast<HDCP *>(me)->observe(msg, ext1, ext2);
166 void HDCP::observe(int msg, int ext1, int ext2) { argument
170 mObserver->notify(msg, ext1, ext2, NULL /* obj */);
/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 DCameraBase.cpp170 int32_t ext1,
179 listener->notify(msgType, ext1, ext2);
169 notifyCallback(int32_t msgType, int32_t ext1, int32_t ext2) argument
H A DCamera.cpp297 void Camera::notifyCallback(int32_t msgType, int32_t ext1, int32_t ext2) argument
299 return CameraBaseT::notifyCallback(msgType, ext1, ext2);
/frameworks/av/include/camera/
H A DICameraClient.h37 virtual void notifyCallback(int32_t msgType, int32_t ext1, int32_t ext2) = 0;
H A DCamera.h40 virtual void notify(int32_t msgType, int32_t ext1, int32_t ext2) = 0;
/frameworks/native/include/media/hardware/
H A DHDCPAPI.h29 typedef void (*ObserverFunc)(void *cookie, int msg, int ext1, int ext2);
37 // ext1 should be a suitable error code (status_t), ext2 is
44 // ext1 should be a suitable error code, ext2 is unused.
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DNuPlayerDriver.h79 void notifyListener(int msg, int ext1 = 0, int ext2 = 0, const Parcel *in = NULL);
128 void notifyListener_l(int msg, int ext1 = 0, int ext2 = 0, const Parcel *in = NULL);
H A DNuPlayerDriver.cpp721 int msg, int ext1, int ext2, const Parcel *in) {
723 notifyListener_l(msg, ext1, ext2, in);
727 int msg, int ext1, int ext2, const Parcel *in) {
728 ALOGD("notifyListener_l(%p), (%d, %d, %d)", this, msg, ext1, ext2);
770 sendEvent(msg, ext1, ext2, in);
720 notifyListener( int msg, int ext1, int ext2, const Parcel *in) argument
726 notifyListener_l( int msg, int ext1, int ext2, const Parcel *in) argument
/frameworks/av/services/camera/libcameraservice/api1/
H A DCameraClient.h98 static void notifyCallback(int32_t msgType, int32_t ext1, int32_t ext2, void* user);
109 void handleGenericNotify(int32_t msgType, int32_t ext1, int32_t ext2);

Completed in 280 milliseconds

12