Searched defs:option (Results 1 - 9 of 9) sorted by relevance

/frameworks/base/include/media/
H A DMediaMetadataRetrieverInterface.h35 virtual VideoFrame* getFrameAtTime(int64_t timeUs, int option) = 0;
47 virtual VideoFrame* getFrameAtTime(int64_t timeUs, int option) { return NULL; } argument
/frameworks/base/media/libmedia/
H A Dmediametadataretriever.cpp126 sp<IMemory> MediaMetadataRetriever::getFrameAtTime(int64_t timeUs, int option) argument
128 LOGV("getFrameAtTime: time(%lld us) option(%d)", timeUs, option);
134 return mRetriever->getFrameAtTime(timeUs, option);
H A DIMediaMetadataRetriever.cpp125 sp<IMemory> getFrameAtTime(int64_t timeUs, int option) argument
127 LOGV("getTimeAtTime: time(%lld us) and option(%d)", timeUs, option);
131 data.writeInt32(option);
205 int option = data.readInt32(); local
206 LOGV("getTimeAtTime: time(%lld us) and option(%d)", timeUs, option);
210 sp<IMemory> bitmap = getFrameAtTime(timeUs, option);
/frameworks/base/media/libmediaplayerservice/
H A DMetadataRetrieverClient.cpp185 sp<IMemory> MetadataRetrieverClient::getFrameAtTime(int64_t timeUs, int option) argument
187 LOGV("getFrameAtTime: time(%lld us) option(%d)", timeUs, option);
194 VideoFrame *frame = mRetriever->getFrameAtTime(timeUs, option);
/frameworks/base/media/java/android/media/
H A DMediaMetadataRetriever.java165 * the given option if possible, and returns it as a bitmap. This is
173 * negative, time position and option will ignored, and any frame
176 * @param option a hint on how the frame is found. Use
191 public Bitmap getFrameAtTime(long timeUs, int option) { argument
192 if (option < OPTION_PREVIOUS_SYNC ||
193 option > OPTION_CLOSEST) {
194 throw new IllegalArgumentException("Unsupported option: " + option);
197 return _getFrameAtTime(timeUs, option);
212 * negative, time position and option wil
242 _getFrameAtTime(long timeUs, int option) argument
[all...]
/frameworks/base/media/jni/
H A Dandroid_media_MediaMetadataRetriever.cpp134 static jobject android_media_MediaMetadataRetriever_getFrameAtTime(JNIEnv *env, jobject thiz, jlong timeUs, jint option) argument
136 LOGV("getFrameAtTime: %lld us option: %d", timeUs, option);
145 sp<IMemory> frameMemory = retriever->getFrameAtTime(timeUs, option);
/frameworks/base/media/libdrm/mobile1/src/objmng/
H A Ddrm_rights_manager.c151 int32_t drm_readFromUidTxt(uint8_t* Uid, int32_t* id, int32_t option) argument
199 if (option == GET_UID) {
213 if (option == GET_ID) {
251 int32_t drm_writeOrReadInfo(int32_t id, T_DRM_Rights* Ro, int32_t* RoAmount, int32_t option) argument
276 if (GET_ALL_RO == option || GET_A_RO == option)
279 if (GET_ROAMOUNT == option) {
291 switch(option) {
/frameworks/base/media/libstagefright/
H A DStagefrightMetadataRetriever.cpp244 int64_t timeUs, int option) {
246 LOGV("getFrameAtTime: %lld us option: %d", timeUs, option);
284 timeUs, option);
291 timeUs, option);
243 getFrameAtTime( int64_t timeUs, int option) argument
/frameworks/base/tools/aapt/
H A DCommand.cpp405 fprintf(stderr, "ERROR: no dump option specified\n");
414 const char* option = bundle->getFileSpecEntry(0); local
430 if (strcmp("resources", option) == 0) {
433 } else if (strcmp("xmltree", option) == 0) {
460 } else if (strcmp("xmlstrings", option) == 0) {
501 if (strcmp("permissions", option) == 0) {
541 } else if (strcmp("badging", option) == 0) {
1198 } else if (strcmp("configurations", option) == 0) {
1206 fprintf(stderr, "ERROR: unknown dump option '%s'\n", option);
[all...]

Completed in 129 milliseconds