Searched refs:streamInfo (Results 1 - 2 of 2) 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/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 657 milliseconds