Home
last modified time | relevance | path

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

123

/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 …]
/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 …]
/frameworks/av/media/libstagefright/include/media/stagefright/
DMediaWriter.h59 void notify(int msg, int ext1, int ext2) { in notify()
61 mListener->notify(msg, ext1, ext2); in notify()
/frameworks/av/media/libmediaplayer2/
Dmediaplayer2.cpp59 virtual void notify(int64_t srcId, int msg, int ext1, int ext2, in notify() argument
63 player->notify(srcId, msg, ext1, ext2, obj); in notify()
1001 void MediaPlayer2::notify(int64_t srcId, int msg, int ext1, int ext2, const PlayerMessage *obj) { in notify() argument
1003 (long long)srcId, msg, ext1, ext2); in notify()
1024 (long long)srcId, msg, ext1, ext2); in notify()
1040 (long long)srcId, msg, ext1, ext2, obj); in notify()
1055 ALOGE("error (%d, %d)", ext1, ext2); in notify()
1061 if (ext1 != MEDIA2_INFO_VIDEO_TRACK_LAGGING) { in notify()
1062 ALOGW("info/warning (%d, %d)", ext1, ext2); in notify()
1064 if (ext1 == MEDIA2_INFO_DATA_SOURCE_START && srcId == mSrcId && mTransitionToNext) { in notify()
[all …]
/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()
/frameworks/av/media/libmediaplayer2/nuplayer2/
DNuPlayer2Driver.cpp799 int32_t ext1 = 0; in onMessageReceived() local
803 msg->findInt32("ext1", &ext1); in onMessageReceived()
810 sendEvent(srcId, msgId, ext1, ext2, (in == NULL ? NULL : in->getPlayerMessage())); in onMessageReceived()
819 int64_t srcId, int msg, int ext1, int ext2, const PlayerMessage *in) { in notifyListener() argument
821 notifyListener_l(srcId, msg, ext1, ext2, in); in notifyListener()
825 int64_t srcId, int msg, int ext1, int ext2, const PlayerMessage *in) { in notifyListener_l() argument
827 this, (long long)srcId, msg, ext1, ext2, in notifyListener_l()
875 mediametrics_setInt32(mMetricsHandle, kPlayerError, ext1); in notifyListener_l()
893 notify->setInt32("ext1", ext1); in notifyListener_l()
DNuPlayer2Driver.h79 void notifyListener(int64_t srcId, int msg, int ext1 = 0, int ext2 = 0,
148 void notifyListener_l(int64_t srcId, int msg, int ext1 = 0, int ext2 = 0,
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/python/google/protobuf/internal/
Dmessage_factory_test.py125 ext1 = factory_msg1._extensions_by_name[
129 msg1.Extensions[ext1] = 'test1'
131 self.assertEqual('test1', msg1.Extensions[ext1])
Dtext_format_test.py607 ext1 = unittest_mset_pb2.TestMessageSetExtension1.message_set_extension
609 message.message_set.Extensions[ext1].i = 23
633 ext1 = unittest_mset_pb2.TestMessageSetExtension1.message_set_extension
635 message.message_set.Extensions[ext1].i = 23
650 ext1 = unittest_mset_pb2.TestMessageSetExtension1.message_set_extension
652 message.message_set.Extensions[ext1].i = 23
682 ext1 = unittest_mset_pb2.TestMessageSetExtension1.message_set_extension
684 self.assertEqual(23, message.message_set.Extensions[ext1].i)
704 ext1 = unittest_mset_pb2.TestMessageSetExtension1.message_set_extension
706 self.assertEqual(23, message.message_set.Extensions[ext1].i)
[all …]
/frameworks/av/media/libmediaplayer2/include/mediaplayer2/
DMediaPlayer2Interface.h63 virtual void notify(int64_t srcId, int msg, int ext1, int ext2,
233 void sendEvent(int64_t srcId, int msg, int ext1=0, int ext2=0, const PlayerMessage *obj=NULL) {
241 listener->notify(srcId, msg, ext1, ext2, obj);
Dmediaplayer2.h48 virtual void notify(int64_t srcId, int msg, int ext1, int ext2,
95 void notify(int64_t srcId, int msg, int ext1, int ext2,
/frameworks/av/include/media/
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;
Dmediarecorder.h222 virtual void notify(int msg, int ext1, int ext2) = 0;
259 void notify(int msg, int ext1, int ext2);
DMediaPlayerInterface.h76 virtual void notify(int msg, int ext1, int ext2, const Parcel *obj) = 0;
282 void sendEvent(int msg, int ext1=0, int ext2=0,
291 listener->notify(msg, ext1, ext2, obj);
/frameworks/av/media/libmedia/include/media/
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;
Dmediarecorder.h222 virtual void notify(int msg, int ext1, int ext2) = 0;
259 void notify(int msg, int ext1, int ext2);
/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);
/frameworks/av/media/libmediaplayerservice/include/
DMediaPlayerInterface.h76 virtual void notify(int msg, int ext1, int ext2, const Parcel *obj) = 0;
282 void sendEvent(int msg, int ext1=0, int ext2=0,
291 listener->notify(msg, ext1, ext2, obj);
/frameworks/av/camera/include/camera/android/hardware/
DICameraClient.h35 virtual void notifyCallback(int32_t msgType, int32_t ext1, int32_t ext2) = 0;
/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/native/headers/media_plugin/media/hardware/
DHDCPAPI.h28 typedef void (*ObserverFunc)(void *cookie, int msg, int ext1, int ext2);

123