Searched refs:streamInfo (Results 1 - 5 of 5) sorted by relevance

/frameworks/wilhelm/src/itf/
H A DIStreamInformation.c115 const StreamInfo& streamInfo = thiz->mStreamInfoTable.itemAt((size_t)streamIndex);
117 switch (streamInfo.domain) {
119 *(XAMediaContainerInformation *)info = streamInfo.containerInfo;
122 *(XAAudioStreamInformation *)info = streamInfo.audioInfo;
125 *(XAVideoStreamInformation *)info = streamInfo.videoInfo;
128 *(XAImageStreamInformation *)info = streamInfo.imageInfo;
131 *(XATimedTextStreamInformation *)info = streamInfo.textInfo;
134 *(XAMIDIStreamInformation *)info = streamInfo.midiInfo;
137 *(XAVendorStreamInformation *)info = streamInfo.vendorInfo;
141 "unknown domain %u", streamIndex, streamInfo
[all...]
/frameworks/av/services/camera/libcameraservice/device3/
H A DCamera3BufferManager.cpp47 const StreamInfo& streamInfo) {
50 int streamId = streamInfo.streamId;
51 int streamSetId = streamInfo.streamSetId;
58 if (streamInfo.totalBufferCount > kMaxBufferCount || streamInfo.totalBufferCount == 0) {
60 __FUNCTION__, streamId, streamSetId, streamInfo.totalBufferCount);
63 if (!streamInfo.isConfigured) {
90 mStreamSetMap[i].streamInfoMap[streamIdx].streamSetId != streamInfo.streamSetId) {
114 currentStreamSet.streamInfoMap.add(streamId, streamInfo);
121 if (streamInfo
46 registerStream(wp<Camera3OutputStream>& stream, const StreamInfo& streamInfo) argument
[all...]
H A DCamera3BufferManager.h85 status_t registerStream(wp<Camera3OutputStream>& stream, const StreamInfo &streamInfo);
H A DCamera3OutputStream.cpp449 StreamInfo streamInfo(
455 streamInfo);
/frameworks/wilhelm/src/android/
H A DMediaPlayer_to_android.cpp115 StreamInfo streamInfo; local
116 streamInfo.domain = XA_DOMAINTYPE_VIDEO;
117 streamInfo.videoInfo.codecId = 0;// unknown, we don't have that info FIXME
118 streamInfo.videoInfo.width = (XAuint32)data1;
119 streamInfo.videoInfo.height = (XAuint32)data2;
120 streamInfo.videoInfo.bitRate = 0;// unknown, we don't have that info FIXME
121 streamInfo.videoInfo.frameRate = 0;
122 streamInfo.videoInfo.duration = XA_TIME_UNKNOWN;
125 ssize_t index = mp->mStreamInfo.mStreamInfoTable.add(streamInfo);

Completed in 166 milliseconds