OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:StreamInfo
(Results
1 - 11
of
11
) sorted by null
/frameworks/av/media/libstagefright/rtsp/
ARTPConnection.h
69
struct
StreamInfo
;
70
List<
StreamInfo
> mStreams;
81
status_t receive(
StreamInfo
*info, bool receiveRTP);
83
status_t parseRTP(
StreamInfo
*info, const sp<ABuffer> &buffer);
84
status_t parseRTCP(
StreamInfo
*info, const sp<ABuffer> &buffer);
85
status_t parseSR(
StreamInfo
*info, const uint8_t *data, size_t size);
86
status_t parseBYE(
StreamInfo
*info, const uint8_t *data, size_t size);
88
sp<ARTPSource> findSource(
StreamInfo
*info, uint32_t id);
ARTPConnection.cpp
55
struct ARTPConnection::
StreamInfo
{
183
mStreams.push_back(
StreamInfo
());
184
StreamInfo
*info = &*--mStreams.end();
218
List<
StreamInfo
>::iterator it = mStreams.begin();
257
for (List<
StreamInfo
>::iterator it = mStreams.begin();
281
List<
StreamInfo
>::iterator it = mStreams.begin();
312
List<
StreamInfo
>::iterator it = mStreams.begin();
314
StreamInfo
*s = &*it;
373
status_t ARTPConnection::receive(
StreamInfo
*s, bool receiveRTP) {
413
status_t ARTPConnection::parseRTP(
StreamInfo
*s, const sp<ABuffer> &buffer)
[
all
...]
/frameworks/av/include/camera/
ProCamera.h
281
struct
StreamInfo
283
StreamInfo
(int streamId) {
289
StreamInfo
() {
306
KeyedVector<int,
StreamInfo
> mStreams;
312
StreamInfo
& getStreamInfo(int streamId);
/external/chromium_org/net/http/
http_pipelined_connection_impl.h
184
struct
StreamInfo
{
185
StreamInfo
();
186
~
StreamInfo
();
195
typedef std::map<int,
StreamInfo
> StreamInfoMap;
http_pipelined_connection_impl.cc
122
stream_info_map_.insert(std::make_pair(pipeline_id,
StreamInfo
()));
838
HttpPipelinedConnectionImpl::
StreamInfo
::
StreamInfo
()
842
HttpPipelinedConnectionImpl::
StreamInfo
::~
StreamInfo
() {
/frameworks/wilhelm/src/itf/
IStreamInformation.c
115
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
[
all
...]
/frameworks/av/camera/
ProCamera.cpp
219
StreamInfo
s(*streamId);
315
StreamInfo
& stream = getStreamInfo(streamId);
333
StreamInfo
& si = getStreamInfo(streamId);
362
StreamInfo
& si = getStreamInfo(streamId);
429
ProCamera::
StreamInfo
& ProCamera::getStreamInfo(int streamId) {
/frameworks/wilhelm/src/
data.h
112
}
StreamInfo
;
itfstruct.h
610
android::Vector<
StreamInfo
> mStreamInfoTable;
/frameworks/av/media/libstagefright/mpeg2ts/
ATSParser.cpp
237
struct
StreamInfo
{
278
Vector<
StreamInfo
> infos;
323
StreamInfo
info;
336
StreamInfo
&info = infos.editItemAt(i);
358
StreamInfo
&info = infos.editItemAt(i);
370
const
StreamInfo
&info1 = infos.itemAt(0);
371
const
StreamInfo
&info2 = infos.itemAt(1);
405
StreamInfo
&info = infos.editItemAt(i);
[
all
...]
/frameworks/wilhelm/src/android/
MediaPlayer_to_android.cpp
115
StreamInfo
streamInfo
;
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;
123
StreamInfo
&contInfo = mp->mStreamInfo.mStreamInfoTable.editItemAt(0)
[
all
...]
Completed in 206 milliseconds