Lines Matching refs:ext1
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()
172 genericMediaPlayer->bufferingUpdate(ext1 * 10 /*fillLevelPerMille*/); in notify()
179 media_error_type_to_string((media_error_type) ext1), ext1, ext2); in notify()
186 genericMediaPlayer->notify(PLAYEREVENT_ERRORAFTERPREPARE, ext1, true /*async*/); in notify()
198 media_info_type_to_string((media_info_type) ext1), ext1, ext2); in notify()
199 switch (ext1) { in notify()
201 SL_LOGV("MEDIA_INFO_VIDEO_TRACK_LAGGING by %d ms", ext1); in notify()