Home
last modified time | relevance | path

Searched refs:streamInfo (Results 1 – 2 of 2) sorted by relevance

/frameworks/wilhelm/src/itf/
DIStreamInformation.c115 const StreamInfo& streamInfo = thiz->mStreamInfoTable.itemAt((size_t)streamIndex); in IStreamInformation_QueryStreamInformation()
117 switch (streamInfo.domain) { in IStreamInformation_QueryStreamInformation()
119 *(XAMediaContainerInformation *)info = streamInfo.containerInfo; in IStreamInformation_QueryStreamInformation()
122 *(XAAudioStreamInformation *)info = streamInfo.audioInfo; in IStreamInformation_QueryStreamInformation()
125 *(XAVideoStreamInformation *)info = streamInfo.videoInfo; in IStreamInformation_QueryStreamInformation()
128 *(XAImageStreamInformation *)info = streamInfo.imageInfo; in IStreamInformation_QueryStreamInformation()
131 *(XATimedTextStreamInformation *)info = streamInfo.textInfo; in IStreamInformation_QueryStreamInformation()
134 *(XAMIDIStreamInformation *)info = streamInfo.midiInfo; in IStreamInformation_QueryStreamInformation()
137 *(XAVendorStreamInformation *)info = streamInfo.vendorInfo; in IStreamInformation_QueryStreamInformation()
141 "unknown domain %u", streamIndex, streamInfo.domain); in IStreamInformation_QueryStreamInformation()
/frameworks/wilhelm/src/android/
DMediaPlayer_to_android.cpp115 StreamInfo streamInfo; in player_handleMediaPlayerEventNotifications() local
116 streamInfo.domain = XA_DOMAINTYPE_VIDEO; in player_handleMediaPlayerEventNotifications()
117 streamInfo.videoInfo.codecId = 0;// unknown, we don't have that info FIXME in player_handleMediaPlayerEventNotifications()
118 streamInfo.videoInfo.width = (XAuint32)data1; in player_handleMediaPlayerEventNotifications()
119 streamInfo.videoInfo.height = (XAuint32)data2; in player_handleMediaPlayerEventNotifications()
120 streamInfo.videoInfo.bitRate = 0;// unknown, we don't have that info FIXME in player_handleMediaPlayerEventNotifications()
121 streamInfo.videoInfo.frameRate = 0; in player_handleMediaPlayerEventNotifications()
122 streamInfo.videoInfo.duration = XA_TIME_UNKNOWN; in player_handleMediaPlayerEventNotifications()
125 ssize_t index = mp->mStreamInfo.mStreamInfoTable.add(streamInfo); in player_handleMediaPlayerEventNotifications()