Home
last modified time | relevance | path

Searched refs:ext1 (Results 1 – 25 of 37) sorted by relevance

12

/frameworks/wilhelm/src/android/
Dandroid_GenericMediaPlayer.cpp116 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 …]
Dandroid_GenericMediaPlayer.h36 virtual void notify(int msg, int ext1, int ext2, const Parcel *obj);
/frameworks/base/mime/java-res/
Dvendor.mime.types18 # mime ext1 ext2 ext3
22 # mimeToExt.putIfAbsent("mime", "ext1");
23 # extToMime.putIfAbsent("ext1", "mime");
30 # mime ext1 ext2 ext3
31 # ?mime ext1 ext2 ext3
32 # mime ?ext1 ext2 ?ext3
33 # ?mime ?ext1 ?ext2 ?ext3
Dandroid.mime.types19 # ?mime ext1 ?ext2 ext3
23 # mimeToExt.putIfAbsent("mime", "ext1");
24 # extToMime.put("ext1", "mime");
/frameworks/av/media/libstagefright/tests/writer/
DWriterListener.h32 virtual void notify(int32_t msg, int32_t ext1, int32_t ext2) { in notify() argument
33 ALOGV("msg : %d, ext1 : %d, ext2 : %d", msg, ext1, ext2); in notify()
34 if (ext1 == MEDIA_RECORDER_INFO_MAX_FILESIZE_REACHED) { in notify()
36 } else if (ext1 == MEDIA_RECORDER_INFO_MAX_DURATION_REACHED) { in notify()
/frameworks/av/media/libmedia/
DIMediaRecorderClient.cpp38 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()
DIMediaPlayerClient.cpp38 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()
Dmediaplayer.cpp848 void MediaPlayer::notify(int msg, int ext1, int ext2, const Parcel *obj) in notify() argument
850 ALOGV("message received msg=%d, ext1=%d, ext2=%d", msg, ext1, ext2); in notify()
869 ALOGV("notify(%d, %d, %d) callback on disconnected mediaplayer", msg, ext1, ext2); in notify()
888 ALOGV("MediaPlayer::notify() MEDIA_DRM_INFO(%d, %d, %d, %p)", msg, ext1, ext2, obj); in notify()
903 ALOGE("error (%d, %d)", ext1, ext2); in notify()
909 mPrepareStatus = ext1; in notify()
917 if (ext1 != MEDIA_INFO_VIDEO_TRACK_LAGGING) { in notify()
918 ALOGW("info/warning (%d, %d)", ext1, ext2); in notify()
936 ALOGV("buffering %d", ext1); in notify()
939 ALOGV("New video size %d x %d", ext1, ext2); in notify()
[all …]
Dmediarecorder.cpp774 void MediaRecorder::notify(int msg, int ext1, int ext2) in notify() argument
776 ALOGV("message received msg=%d, ext1=%d, ext2=%d", msg, ext1, ext2); in notify()
786 listener->notify(msg, ext1, ext2); in notify()
/frameworks/av/media/libstagefright/include/media/stagefright/
DMediaWriter.h63 void notify(int msg, int ext1, int ext2) { in notify()
65 mListener->notify(msg, ext1, ext2); in notify()
/frameworks/av/camera/
DICameraClient.cpp47 void notifyCallback(int32_t msgType, int32_t ext1, int32_t ext2) in notifyCallback() argument
53 data.writeInt32(ext1); in notifyCallback()
132 int32_t ext1 = data.readInt32(); in onTransact() local
134 notifyCallback(msgType, ext1, ext2); in onTransact()
DCameraBase.cpp217 int32_t ext1, in notifyCallback() argument
226 listener->notify(msgType, ext1, ext2); in notifyCallback()
/frameworks/av/media/libmedia/include/media/
Dmediarecorder.h222 virtual void notify(int msg, int ext1, int ext2) = 0;
259 void notify(int msg, int ext1, int ext2);
DIMediaRecorderClient.h31 virtual void notify(int msg, int ext1, int ext2) = 0;
DIMediaPlayerClient.h31 virtual void notify(int msg, int ext1, int ext2, const Parcel *obj) = 0;
Dmediaplayer.h199 virtual void notify(int msg, int ext1, int ext2, const Parcel *obj) = 0;
251 void notify(int msg, int ext1, int ext2, const Parcel *obj = NULL);
/frameworks/av/include/media/
DMediaPlayerInterface.h75 virtual void notify(int msg, int ext1, int ext2, const Parcel *obj) = 0;
281 void sendEvent(int msg, int ext1=0, int ext2=0,
290 listener->notify(msg, ext1, ext2, obj);
/frameworks/av/media/libmediaplayerservice/include/
DMediaPlayerInterface.h75 virtual void notify(int msg, int ext1, int ext2, const Parcel *obj) = 0;
281 void sendEvent(int msg, int ext1=0, int ext2=0,
290 listener->notify(msg, ext1, ext2, obj);
/frameworks/av/media/libmediaplayerservice/nuplayer/
DNuPlayerDriver.h91 void notifyListener(int msg, int ext1 = 0, int ext2 = 0, const Parcel *in = NULL);
157 void notifyListener_l(int msg, int ext1 = 0, int ext2 = 0, const Parcel *in = NULL);
DNuPlayerDriver.cpp962 int msg, int ext1, int ext2, const Parcel *in) { in notifyListener() argument
964 notifyListener_l(msg, ext1, ext2, in); in notifyListener()
968 int msg, int ext1, int ext2, const Parcel *in) { in notifyListener_l() argument
970 this, msg, ext1, ext2, (in == NULL ? -1 : (int)in->dataSize()), mAutoLoop, mLooping); in notifyListener_l()
1011 mAnalyticsItem->setInt32(kPlayerError, ext1); in notifyListener_l()
1026 sendEvent(msg, ext1, ext2, in); in notifyListener_l()
/frameworks/av/services/camera/libcameraservice/api1/
DCameraClient.h106 static void notifyCallback(int32_t msgType, int32_t ext1, int32_t ext2, void* user);
119 void handleGenericNotify(int32_t msgType, int32_t ext1, int32_t ext2);
/frameworks/av/services/camera/libcameraservice/device1/
DCameraHardwareInterface.h36 int32_t ext1,
304 static void sNotifyCb(int32_t msg_type, int32_t ext1,
378 int32_t ext1, int32_t ext2) override;
/frameworks/av/camera/include/camera/android/hardware/
DICameraClient.h35 virtual void notifyCallback(int32_t msgType, int32_t ext1, int32_t ext2) = 0;
/frameworks/native/headers/media_plugin/media/hardware/
DHDCPAPI.h28 typedef void (*ObserverFunc)(void *cookie, int msg, int ext1, int ext2);
/frameworks/av/media/libmediaplayerservice/
DMediaPlayerService.h377 void notify(int msg, int ext1, int ext2, const Parcel *obj);
442 virtual void notify(int msg, int ext1, int ext2, const Parcel *obj) { in notify() argument
445 client->notify(msg, ext1, ext2, obj); in notify()

12