Searched refs:portIndex (Results 1 - 25 of 46) sorted by path

12

/frameworks/av/include/media/stagefright/
H A DACodec.h187 status_t allocateBuffersOnPort(OMX_U32 portIndex);
188 status_t freeBuffersOnPort(OMX_U32 portIndex);
189 status_t freeBuffer(OMX_U32 portIndex, size_t i);
197 uint32_t portIndex, IOMX::buffer_id bufferID,
204 OMX_U32 portIndex,
217 OMX_U32 portIndex,
227 OMX_U32 portIndex, OMX_AUDIO_CODINGTYPE desiredFormat);
236 OMX_U32 portIndex, int32_t sampleRate, int32_t numChannels);
238 status_t setMinBufferSize(OMX_U32 portIndex, size_t size);
256 bool allYourBuffersAreBelongToUs(OMX_U32 portIndex);
[all...]
H A DMediaCodec.h211 void returnBuffersToCodecOnPort(int32_t portIndex);
212 size_t updateBuffers(int32_t portIndex, const sp<AMessage> &msg);
215 ssize_t dequeuePortBuffer(int32_t portIndex);
H A DOMXCodec.h254 OMX_U32 portIndex,
270 OMX_COLOR_FORMATTYPE colorFormat, int portIndex);
287 void setMinBufferSize(OMX_U32 portIndex, OMX_U32 size);
290 OMX_U32 portIndex, int32_t sampleRate, int32_t numChannels);
293 status_t allocateBuffersOnPort(OMX_U32 portIndex);
302 OMX_U32 portIndex, bool onlyThoseWeOwn = false);
304 status_t freeBuffer(OMX_U32 portIndex, size_t bufIndex);
323 bool flushPortAsync(OMX_U32 portIndex);
325 void disablePortAsync(OMX_U32 portIndex);
326 status_t enablePortAsync(OMX_U32 portIndex);
[all...]
/frameworks/av/media/libstagefright/
H A DACodec.cpp137 virtual PortMode getPortMode(OMX_U32 portIndex);
246 virtual PortMode getPortMode(OMX_U32 portIndex);
264 virtual PortMode getPortMode(OMX_U32 portIndex);
412 status_t ACodec::allocateBuffersOnPort(OMX_U32 portIndex) { argument
413 CHECK(portIndex == kPortIndexInput || portIndex == kPortIndexOutput);
415 CHECK(mDealer[portIndex] == NULL);
416 CHECK(mBuffers[portIndex].isEmpty());
419 if (mNativeWindow != NULL && portIndex == kPortIndexOutput) {
424 def.nPortIndex = portIndex;
700 freeBuffersOnPort(OMX_U32 portIndex) argument
728 freeBuffer(OMX_U32 portIndex, size_t i) argument
748 findBufferByID( uint32_t portIndex, IOMX::buffer_id bufferID, ssize_t *index) argument
1013 setMinBufferSize(OMX_U32 portIndex, size_t size) argument
1050 selectAudioPortFormat( OMX_U32 portIndex, OMX_AUDIO_CODINGTYPE desiredFormat) argument
1287 setupRawAudioFormat( OMX_U32 portIndex, int32_t sampleRate, int32_t numChannels) argument
1335 setVideoPortFormatType( OMX_U32 portIndex, OMX_VIDEO_CODINGTYPE compressionFormat, OMX_COLOR_FORMATTYPE colorFormat) argument
1974 setVideoFormatOnPort( OMX_U32 portIndex, int32_t width, int32_t height, OMX_VIDEO_CODINGTYPE compressionFormat) argument
2035 allYourBuffersAreBelongToUs( OMX_U32 portIndex) argument
2381 getPortMode(OMX_U32 portIndex) argument
3371 getPortMode( OMX_U32 portIndex) argument
3543 getPortMode( OMX_U32 portIndex) argument
[all...]
H A DMediaCodec.cpp307 msg->setInt32("portIndex", kPortIndexInput);
316 msg->setInt32("portIndex", kPortIndexOutput);
567 int32_t portIndex; local
568 CHECK(msg->findInt32("portIndex", &portIndex));
571 portIndex == kPortIndexInput ? "input" : "output");
573 CHECK(portIndex == kPortIndexInput
574 || portIndex == kPortIndexOutput);
576 mPortBuffers[portIndex].clear();
578 Vector<BufferInfo> *buffers = &mPortBuffers[portIndex];
1096 int32_t portIndex; local
1253 returnBuffersToCodecOnPort(int32_t portIndex) argument
1276 updateBuffers( int32_t portIndex, const sp<AMessage> &msg) argument
1456 dequeuePortBuffer(int32_t portIndex) argument
[all...]
H A DOMXCodec.cpp607 void OMXCodec::setMinBufferSize(OMX_U32 portIndex, OMX_U32 size) { argument
610 def.nPortIndex = portIndex;
616 if ((portIndex == kPortIndexInput && (mQuirks & kInputBufferSizesAreBogus))
630 if (portIndex == kPortIndexInput
639 OMX_U32 portIndex,
644 format.nPortIndex = portIndex;
663 CODEC_LOGV("portIndex: %ld, index: %ld, eCompressionFormat=%d eColorFormat=%d",
664 portIndex,
737 OMX_COLOR_FORMATTYPE colorFormat, int portIndex) {
745 portFormat.nPortIndex = portIndex;
638 setVideoPortFormatType( OMX_U32 portIndex, OMX_VIDEO_CODINGTYPE compressionFormat, OMX_COLOR_FORMATTYPE colorFormat) argument
736 isColorFormatSupported( OMX_COLOR_FORMATTYPE colorFormat, int portIndex) argument
1506 allocateBuffersOnPort(OMX_U32 portIndex) argument
2477 OMX_U32 portIndex = data; local
2522 OMX_U32 portIndex = data; local
2542 OMX_U32 portIndex = data; local
2725 freeBuffersOnPort( OMX_U32 portIndex, bool onlyThoseWeOwn) argument
2756 freeBuffer(OMX_U32 portIndex, size_t bufIndex) argument
2787 onPortSettingsChanged(OMX_U32 portIndex) argument
2811 flushPortAsync(OMX_U32 portIndex) argument
2838 disablePortAsync(OMX_U32 portIndex) argument
2852 enablePortAsync(OMX_U32 portIndex) argument
3272 setRawAudioFormat( OMX_U32 portIndex, int32_t sampleRate, int32_t numChannels) argument
3357 OMX_U32 portIndex = mIsEncoder ? kPortIndexOutput : kPortIndexInput; local
4162 dumpPortStatus(OMX_U32 portIndex) argument
[all...]
/frameworks/av/media/libstagefright/codecs/aacdec/
H A DSoftAAC2.cpp300 void SoftAAC2::onQueueFilled(OMX_U32 portIndex) { argument
312 if (portIndex == 0 && mInputBufferCount == 0) {
588 void SoftAAC2::onPortFlushCompleted(OMX_U32 portIndex) { argument
589 if (portIndex == 0) {
597 void SoftAAC2::onPortEnableCompleted(OMX_U32 portIndex, bool enabled) { argument
598 if (portIndex != 1) {
H A DSoftAAC2.h41 virtual void onQueueFilled(OMX_U32 portIndex);
42 virtual void onPortFlushCompleted(OMX_U32 portIndex);
43 virtual void onPortEnableCompleted(OMX_U32 portIndex, bool enabled);
/frameworks/av/media/libstagefright/codecs/aacenc/
H A DSoftAACEncoder.cpp379 void SoftAACEncoder::onQueueFilled(OMX_U32 portIndex) { argument
H A DSoftAACEncoder.h44 virtual void onQueueFilled(OMX_U32 portIndex);
H A DSoftAACEncoder2.cpp337 void SoftAACEncoder2::onQueueFilled(OMX_U32 portIndex) { argument
H A DSoftAACEncoder2.h43 virtual void onQueueFilled(OMX_U32 portIndex);
/frameworks/av/media/libstagefright/codecs/amrnb/dec/
H A DSoftAMR.cpp277 void SoftAMR::onQueueFilled(OMX_U32 portIndex) { argument
431 void SoftAMR::onPortFlushCompleted(OMX_U32 portIndex) { argument
434 void SoftAMR::onPortEnableCompleted(OMX_U32 portIndex, bool enabled) { argument
435 if (portIndex != 1) {
H A DSoftAMR.h40 virtual void onQueueFilled(OMX_U32 portIndex);
41 virtual void onPortFlushCompleted(OMX_U32 portIndex);
42 virtual void onPortEnableCompleted(OMX_U32 portIndex, bool enabled);
/frameworks/av/media/libstagefright/codecs/amrnb/enc/
H A DSoftAMRNBEncoder.cpp273 void SoftAMRNBEncoder::onQueueFilled(OMX_U32 portIndex) { argument
H A DSoftAMRNBEncoder.h41 virtual void onQueueFilled(OMX_U32 portIndex);
/frameworks/av/media/libstagefright/codecs/amrwbenc/
H A DSoftAMRWBEncoder.cpp320 void SoftAMRWBEncoder::onQueueFilled(OMX_U32 portIndex) { argument
H A DSoftAMRWBEncoder.h46 virtual void onQueueFilled(OMX_U32 portIndex);
/frameworks/av/media/libstagefright/codecs/avc/enc/
H A DSoftAVCEncoder.cpp714 void SoftAVCEncoder::onQueueFilled(OMX_U32 portIndex) { argument
H A DSoftAVCEncoder.h46 virtual void onQueueFilled(OMX_U32 portIndex);
/frameworks/av/media/libstagefright/codecs/flac/enc/
H A DSoftFlacEncoder.cpp243 void SoftFlacEncoder::onQueueFilled(OMX_U32 portIndex) { argument
245 ALOGV("SoftFlacEncoder::onQueueFilled(portIndex=%ld)", portIndex);
H A DSoftFlacEncoder.h48 virtual void onQueueFilled(OMX_U32 portIndex);
/frameworks/av/media/libstagefright/codecs/g711/dec/
H A DSoftG711.cpp185 void SoftG711::onQueueFilled(OMX_U32 portIndex) { argument
H A DSoftG711.h40 virtual void onQueueFilled(OMX_U32 portIndex);
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/
H A DSoftMPEG4.cpp312 void SoftMPEG4::onQueueFilled(OMX_U32 portIndex) { argument
538 void SoftMPEG4::onPortFlushCompleted(OMX_U32 portIndex) { argument
539 if (portIndex == 0 && mInitialized) {
544 void SoftMPEG4::onPortEnableCompleted(OMX_U32 portIndex, bool enabled) { argument
545 if (portIndex != 1) {

Completed in 774 milliseconds

12