Searched defs:type (Results 1 - 25 of 457) sorted by path

1234567891011>>

/frameworks/av/camera/
H A DCameraMetadata.cpp163 ALOGE("Mismatched tag type when updating entry %s (%d) of type %s; "
164 "got type %s data instead ",
271 int type = get_camera_metadata_tag_type(tag); local
272 if (type == -1) {
276 size_t data_size = calculate_camera_metadata_entry_data_size(type,
/frameworks/av/cmds/stagefright/
H A Dsf2.cpp297 uint32_t type; local
300 if (meta->findData(kKeyAVCC, &type, &data, &size)) {
377 } else if (meta->findData(kKeyESDS, &type, &data, &size)) {
393 } else if (meta->findData(kKeyVorbisInfo, &type, &data, &size)) {
400 CHECK(meta->findData(kKeyVorbisBooks, &type, &data, &size));
H A Dstagefright.cpp119 uint32_t type; local
122 if (meta->findData(kKeyAVCC, &type, &data, &size)) {
628 printf("type '%s':\n", kMimeTypes[k]);
/frameworks/av/drm/common/
H A DIDrmServiceListener.cpp49 int type = data.readInt32(); local
52 status_t status = notify(DrmInfoEvent(uniqueId, type, message));
/frameworks/av/drm/libdrmframework/plugins/common/util/src/
H A DMimeTypeUtil.cpp41 int type; // Audio, video,.. use the enum values member in struct:android::MimeGroup
47 int type; member in struct:android::MimeTypeList
137 while (MIMETYPE_LAST != pGroup->type) {
145 if (MIMETYPE_LAST != pGroup->type) {
148 while (MIMETYPE_LAST != pMimeItem->type) {
149 if ((pGroup->type == pMimeItem->type) &&
/frameworks/av/include/media/
H A DIOMX.h141 } type; member in struct:android::omx_message
146 // if type == EVENT
153 // if type == EMPTY_BUFFER_DONE
158 // if type == FILL_BUFFER_DONE
/frameworks/av/libvideoeditor/lvpp/
H A DPreviewPlayer.cpp1169 //If file type is .rgb, then no need to check for Extractor
1386 M4VSS3GPP_VideoEffectType type, M4OSA_Bool enable) {
1391 switch(type) {
1385 setVideoPostProcessingNode( M4VSS3GPP_VideoEffectType type, M4OSA_Bool enable) argument
H A DVideoEditorPreviewController.cpp324 ALOGE("loadEffectsSettings: wrong RGB type");
1304 M4VSS3GPP_VideoEffectType type, M4OSA_Bool enable) {
1309 switch(type) {
1303 setVideoEffectType( M4VSS3GPP_VideoEffectType type, M4OSA_Bool enable) argument
/frameworks/av/libvideoeditor/vss/stagefrightshells/src/
H A DVideoEditor3gpReader.cpp1420 uint32_t type; local
1465 ALOGV("VideoEditor3gpReader_getNextStreamHandler: stream type: %d ",
1540 if (meta->findData(kKeyD263, &type, &data, &size)) {
1575 if(meta->findData(kKeyAVCC, &type, &data, &size)) {
1610 if (meta->findData(kKeyESDS, &type, &data, &size)) {
1723 if (meta->findData(kKeyESDS, &type, &data, &size)) {
1770 if (meta->findData(kKeyESDS, &type, &data, &size)) {
H A DVideoEditorMp3Reader.cpp437 M4OSA_UInt8 type, temp; local
H A DVideoEditorUtils.cpp54 uint32_t type; local
86 if (meta->findData(kKeyESDS, &type, &data, &size)) {
87 LOG1("displayMetaData kKeyESDS type=%d size=%d", type, size);
89 if (meta->findData(kKeyAVCC, &type, &data, &size)) {
90 LOG1("displayMetaData kKeyAVCC data=0x%X type=%d size=%d",
91 *((unsigned int*)data), type, size);
93 if (meta->findData(kKeyVorbisInfo, &type, &data, &size)) {
94 LOG1("displayMetaData kKeyVorbisInfo type=%d size=%d", type, siz
219 parseParamSet(AVCCodecSpecificContext* pC, const uint8_t *data, size_t length, int type, size_t *paramSetLen) argument
304 uint8_t type = kNalUnitTypeSeqParamSet; local
[all...]
/frameworks/av/media/libeffects/downmix/
H A DEffectDownmix.h40 downmix_type_t type; member in struct:__anon338
/frameworks/av/media/libeffects/factory/
H A DEffectsFactory.c56 static int findEffect(const effect_uuid_t *type,
631 int findEffect(const effect_uuid_t *type, argument
647 if (type != NULL && memcmp(&d->type, type, sizeof(effect_uuid_t)) == 0) {
680 uuidToString(&desc->type, s, 256);
/frameworks/av/media/libeffects/testlibs/
H A DAudioShelvingFilter.cpp49 AudioShelvingFilter::AudioShelvingFilter(ShelfType type, int nChannels, argument
51 : mType(type),
/frameworks/av/media/libmedia/
H A DAudioEffect.cpp44 AudioEffect::AudioEffect(const effect_uuid_t *type, argument
54 mStatus = set(type, uuid, priority, cbf, user, sessionId, io);
67 effect_uuid_t type; local
72 ALOGV("Constructor string\n - type: %s\n - uuid: %s", typeStr, uuidStr);
75 if (stringToGuid(typeStr, &type) == NO_ERROR) {
76 pType = &type;
89 status_t AudioEffect::set(const effect_uuid_t *type, argument
101 ALOGV("set %p mUserData: %p uuid: %p timeLow %08x", this, user, type, type ? type
[all...]
H A DMediaScanner.cpp190 int type = entry->d_type; local
191 if (type == DT_UNKNOWN) {
192 // If the type is unknown, stat() the file instead.
197 type = DT_REG;
199 type = DT_DIR;
205 if (type == DT_DIR) {
228 } else if (type == DT_REG) {
H A Dmediaplayer.cpp517 status_t MediaPlayer::setAudioStreamType(audio_stream_type_t type) argument
521 if (mStreamType == type) return NO_ERROR;
524 // Can't change the stream type after prepare
529 mStreamType = type;
/frameworks/av/media/libmediaplayerservice/
H A DMediaPlayerFactory.cpp41 player_type type) {
43 ALOGE("Failed to register MediaPlayerFactory of type %d, factory is"
44 " NULL.", type);
48 if (sFactoryMap.indexOfKey(type) >= 0) {
49 ALOGE("Failed to register MediaPlayerFactory of type %d, type is"
50 " already registered.", type);
54 if (sFactoryMap.add(type, factory) < 0) {
55 ALOGE("Failed to register MediaPlayerFactory of type %d, failed to add"
56 " to map.", type);
40 registerFactory_l(IFactory* factory, player_type type) argument
73 registerFactory(IFactory* factory, player_type type) argument
79 unregisterFactory(player_type type) argument
[all...]
H A DMediaPlayerService.cpp101 // | metadata type 1 |
103 // | metadata type 2 |
107 // | metadata type n |
111 // @param[out] filter On exit contains the list of metadata type to be
171 // @param filter Of metadata type.
341 snprintf(buffer, 255, " stream type(%d), left - right volume(%f, %f)\n",
464 result.append(" unexpected type for ");
562 // determine if we have the right player type
582 ALOGV("player type = %d", playerType);
584 // create the right type o
961 setAudioStreamType(audio_stream_type_t type) argument
[all...]
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DHTTPLiveSource.cpp93 ATSParser::SourceType type = local
97 static_cast<AnotherPacketSource *>(mTSParser->getSource(type).get());
133 uint8_t type = buffer[1]; local
137 if (type & 2) {
145 ((type & 1) == 0)
169 ATSParser::SourceType type = local
173 static_cast<AnotherPacketSource *>(mTSParser->getSource(type).get());
H A DNuPlayer.cpp861 int32_t type; local
862 CHECK(accessUnit->meta()->findInt32("discontinuity", &type));
866 (type & ATSParser::DISCONTINUITY_AUDIO_FORMAT))
868 (type & ATSParser::DISCONTINUITY_VIDEO_FORMAT));
870 bool timeChange = (type & ATSParser::DISCONTINUITY_TIME) != 0;
H A DStreamingSource.cpp83 int32_t type = ATSParser::DISCONTINUITY_SEEK; local
90 ALOGE("Client specified an illegal discontinuity type.");
94 type = mask;
98 (ATSParser::DiscontinuityType)type, extra);
110 uint8_t type = buffer[1]; local
112 if (type & 2) {
120 ((type & 1) == 0)
142 ATSParser::SourceType type = local
146 static_cast<AnotherPacketSource *>(mTSParser->getSource(type).get());
157 ATSParser::SourceType type local
[all...]
/frameworks/av/media/libstagefright/
H A DACodec.cpp64 msg->setInt32("type", omx_msg.type);
67 switch (omx_msg.type) {
2664 int32_t type; local
2665 CHECK(msg->findInt32("type", &type));
2671 switch (type) {
3358 ALOGE("Unable to instantiate a decoder for type '%s'.",
4285 msg->setInt32("type", omx_message::EVENT);
H A DAVIExtractor.cpp607 uint32_t type = U32_AT(data); local
621 if (type == FOURCC('v', 'i', 'd', 's')) {
637 } else if (type == FOURCC('a', 'u', 'd', 's')) {
1092 uint32_t type; local
1095 CHECK(meta->findData(kKeyAVCC, &type, &csd, &csdSize));
1099 track->mMeta->setData(kKeyAVCC, type, csd, csdSize);
H A DDRMExtractor.cpp86 uint32_t type; local
89 CHECK(getFormat()->findData(kKeyAVCC, &type, &data, &size));

Completed in 378 milliseconds

1234567891011>>