HomeSort by relevance Sort by last modified time
    Searched refs:streamIndex (Results 1 - 25 of 47) sorted by null

1 2

  /external/lzma/CPP/7zip/Archive/Common/
CoderMixer2.h 80 UInt32 streamIndex = 0;
82 streamIndex += Coders[i].NumInStreams;
83 return streamIndex;
88 UInt32 streamIndex = 0;
90 streamIndex += Coders[i].NumOutStreams;
91 return streamIndex;
95 void FindInStream(UInt32 streamIndex, UInt32 &coderIndex,
101 if (streamIndex < curSize)
103 coderStreamIndex = streamIndex;
106 streamIndex -= curSize;
    [all...]
  /frameworks/wilhelm/src/itf/
IStreamInformation.c 52 XAuint32 streamIndex, /* [in] */
65 if (0 == streamIndex) {
76 if (streamIndex <= nbStreams) {
78 *domain = thiz->mStreamInfoTable.itemAt(streamIndex).domain;
81 streamIndex, nbStreams);
94 XAuint32 streamIndex, /* [in] */
113 if (streamIndex <= nbStreams) {
115 const StreamInfo& streamInfo = thiz->mStreamInfoTable.itemAt((size_t)streamIndex);
141 "unknown domain %u", streamIndex, streamInfo.domain);
148 streamIndex, nbStreams)
    [all...]
  /frameworks/wilhelm/tests/sandbox/
xaplay.c 75 XAuint32 streamIndex, void *pEventData, void *pContext)
81 printf("XA_STREAMCBEVENT_PROPERTYCHANGE on stream index %u, pEventData %p\n", streamIndex,
622 XAuint32 streamIndex;
623 for (streamIndex = 0; streamIndex <= mediaContainerInformation.numStreams; ++streamIndex) {
627 printf("stream[%u]:\n", streamIndex);
628 if (streamIndex == 0) {
630 streamIndex, &domain);
633 streamIndex, &mediaContainerInformation)
    [all...]
  /external/lzma/CPP/7zip/Compress/
LzmaDecoder.h 61 STDMETHOD(SetInBufSize)(UInt32 streamIndex, UInt32 size);
62 STDMETHOD(SetOutBufSize)(UInt32 streamIndex, UInt32 size);
Bcj2Coder.h 108 STDMETHOD(SetInBufSize)(UInt32 streamIndex, UInt32 size);
109 STDMETHOD(SetOutBufSize)(UInt32 streamIndex, UInt32 size);
Bcj2Coder.cpp 268 STDMETHODIMP CDecoder::SetInBufSize(UInt32 streamIndex, UInt32 size) { _inBufSizes[streamIndex] = size; return S_OK; }
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
TreeWizard.cs 554 protected void fillReverseIndex( object node, int streamIndex )
556 //System.out.println("revIndex "+node+"@"+streamIndex);
576 indexes.Add( streamIndex ); // not there yet, add
581 if ( !indexes.Contains( streamIndex ) )
583 indexes.Add( streamIndex ); // not there yet, add
646 int streamIndex = indexes[i];
647 object n = get( streamIndex );
651 return streamIndex; // found it!
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
TreeWizard.cs 631 protected void fillReverseIndex( object node, int streamIndex )
633 //System.out.println("revIndex "+node+"@"+streamIndex);
653 indexes.Add( streamIndex ); // not there yet, add
658 if ( !indexes.Contains( streamIndex ) )
660 indexes.Add( streamIndex ); // not there yet, add
723 int streamIndex = indexes[i];
724 object n = get( streamIndex );
728 return streamIndex; // found it!
  /external/lzma/CPP/7zip/
ICoder.h 112 STDMETHOD(SetInBufSize)(UInt32 streamIndex, UInt32 size) PURE;
113 STDMETHOD(SetOutBufSize)(UInt32 streamIndex, UInt32 size) PURE;
  /frameworks/av/media/libstagefright/webm/
WebmWriter.cpp 386 size_t streamIndex;
388 streamIndex = kVideoIndex;
390 streamIndex = kAudioIndex;
397 if (mStreams[streamIndex].mTrackEntry != NULL) {
398 ALOGE("%s track already exists", mStreams[streamIndex].mName);
404 mStreams[streamIndex].mSource = source;
405 mStreams[streamIndex].mTrackEntry = mStreams[streamIndex].mMakeTrack(source->getFormat());
  /external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/d3d9/
SwapChain9.cpp 277 for (UINT streamIndex = 0; streamIndex < gl::MAX_VERTEX_ATTRIBS; streamIndex++)
279 device->SetStreamSourceFreq(streamIndex, 1);
  /cts/tests/tests/mediastress/jni/
native-media-jni.cpp 200 XAuint32 streamIndex,
204 ALOGV("StreamChangeCallback called for stream %u", streamIndex);
211 The streamIndex parameter identifies the stream with the property change.
216 res = (*caller)->QueryStreamType(caller, streamIndex, &domain);
221 res = (*caller)->QueryStreamInformation(caller, streamIndex, &videoInfo);
  /development/ndk/platforms/android-14/samples/native-media/jni/
native-media-jni.c 204 XAuint32 streamIndex,
208 LOGV("StreamChangeCallback called for stream %u", streamIndex);
215 The streamIndex parameter identifies the stream with the property change.
221 res = (*caller)->QueryStreamType(caller, streamIndex, &domain);
226 res = (*caller)->QueryStreamInformation(caller, streamIndex, &videoInfo);
  /frameworks/wilhelm/tests/native-media/jni/
native-media-jni.c 227 XAuint32 streamIndex,
231 ALOGV("StreamChangeCallback called for stream %u", streamIndex);
238 The streamIndex parameter identifies the stream with the property change.
244 res = (*caller)->QueryStreamType(caller, streamIndex, &domain);
249 res = (*caller)->QueryStreamInformation(caller, streamIndex, &videoInfo);
  /external/lzma/CPP/7zip/Archive/7z/
7zIn.h 84 UInt64 GetFolderPackStreamSize(int folderIndex, int streamIndex) const
86 return PackSizes[FolderStartPackStreamIndex[folderIndex] + streamIndex];
  /device/generic/goldfish/camera/
EmulatedFakeCamera2.cpp 494 ssize_t streamIndex = mStreams.indexOfKey(stream_id);
495 if (streamIndex < 0) {
500 Stream &stream = mStreams.editValueAt(streamIndex);
513 ssize_t streamIndex = mStreams.indexOfKey(stream_id);
514 if (streamIndex < 0) {
525 switch(mStreams.valueAt(streamIndex).format) {
537 mStreams.removeItemsAt(streamIndex);
592 ssize_t streamIndex = mReprocessStreams.indexOfKey(stream_id);
593 if (streamIndex < 0) {
605 mReprocessStreams.removeItemsAt(streamIndex);
    [all...]
  /development/ndk/platforms/android-14/include/OMXAL/
OpenMAXAL.h     [all...]
  /frameworks/wilhelm/include/OMXAL/
OpenMAXAL.h     [all...]
  /prebuilts/ndk/7/platforms/android-14/arch-arm/usr/include/OMXAL/
OpenMAXAL.h     [all...]