HomeSort by relevance Sort by last modified time
    Searched refs:mDecoder (Results 1 - 6 of 6) sorted by null

  /frameworks/opt/net/voip/src/jni/rtp/
AmrCodec.cpp 39 if (GSMInitDecode(&mDecoder, (Word8 *)"RTP")) {
40 mDecoder = NULL;
48 if (mDecoder) {
49 GSMDecodeFrameExit(&mDecoder);
60 void *mDecoder;
97 return (sampleRate == 8000 && mEncoder && mDecoder) ? 160 : -1;
169 if (AMRDecode(mDecoder, type, bytes, samples, MIME_IETF) != length) {
197 if (GSMInitDecode(&mDecoder, (Word8 *)"RTP")) {
198 mDecoder = NULL;
206 if (mDecoder) {
    [all...]
  /packages/apps/Gallery2/src/com/android/photos/
BitmapRegionTileSource.java 30 BitmapRegionDecoder mDecoder;
35 mDecoder = BitmapRegionDecoder.newInstance(path, true);
48 return mDecoder.getWidth();
53 return mDecoder.getHeight();
75 bitmap = mDecoder.decodeRegion(wantRegion, options);
  /frameworks/base/media/tests/omxjpegdecoder/
SkOmxPixelRef.cpp 27 mDecoder = decoder;
35 CHECK_EQ(mDecoder->stop(), (status_t)OK);
SkOmxPixelRef.h 44 sp<MediaSource> mDecoder;
  /frameworks/av/media/libstagefright/
FLACExtractor.cpp 128 FLAC__StreamDecoder *mDecoder;
475 mDecoder(NULL),
493 if (mDecoder != NULL) {
494 FLAC__stream_decoder_delete(mDecoder);
495 mDecoder = NULL;
502 mDecoder = FLAC__stream_decoder_new();
503 if (mDecoder == NULL) {
510 FLAC__stream_decoder_set_md5_checking(mDecoder, false);
511 FLAC__stream_decoder_set_metadata_ignore_all(mDecoder);
513 mDecoder, FLAC__METADATA_TYPE_STREAMINFO)
    [all...]
  /frameworks/av/libvideoeditor/vss/stagefrightshells/src/
VideoEditorAudioDecoder.cpp 100 sp<MediaSource> mDecoder;
407 if( M4OSA_NULL != pDecoderContext->mDecoder.get() ) {
408 pDecoderContext->mDecoder->stop();
413 pDecoderContext->mDecoder.clear();
558 pDecoderContext->mDecoder = OMXCodec::Create(pDecoderContext->\
562 VIDEOEDITOR_CHECK(NULL != pDecoderContext->mDecoder.get(), M4ERR_STATE);
565 pDecoderContext->mDecoder->getFormat()->findInt32(kKeyChannelCount,
571 result = pDecoderContext->mDecoder->start();
734 result = pDecoderContext->mDecoder->read(&outputBuffer, NULL);
739 sp<MetaData> meta = pDecoderContext->mDecoder->getFormat()
    [all...]

Completed in 409 milliseconds