Searched refs:mCodecLooper (Results 1 – 10 of 10) sorted by relevance
/frameworks/av/cmds/stagefright/ |
D | SimplePlayer.cpp | 285 if (mCodecLooper == NULL) { in onPrepare() 286 mCodecLooper = new ALooper; in onPrepare() 287 mCodecLooper->start(); in onPrepare() 319 mCodecLooper, mime.c_str(), false /* encoder */); in onPrepare() 410 mCodecLooper.clear(); in onReset()
|
D | SimplePlayer.h | 91 sp<ALooper> mCodecLooper; member
|
/frameworks/av/media/libstagefright/ |
D | MediaCodecSource.cpp | 486 mCodecLooper->stop(); in ~MediaCodecSource() 505 mCodecLooper = new ALooper; in initEncoder() 506 mCodecLooper->setName("codec_looper"); in initEncoder() 507 mCodecLooper->start(); in initEncoder() 520 mEncoder = MediaCodec::CreateByComponentName(mCodecLooper, name); in initEncoder() 539 mCodecLooper, matchingCodecs[ix]); in initEncoder()
|
D | MediaCodec.cpp | 1652 if (mCodecLooper == NULL) { in init() 1654 mCodecLooper = new ALooper; in init() 1655 mCodecLooper->setName("CodecLooper"); in init() 1656 err = mCodecLooper->start(false, false, ANDROID_PRIORITY_AUDIO); in init() 1663 mCodecLooper->registerHandler(mCodec); in init() 2631 if (mCodecLooper != NULL) { in reset() 2632 mCodecLooper->unregisterHandler(mCodec->id()); in reset()
|
/frameworks/av/media/libstagefright/include/media/stagefright/ |
D | MediaCodecSource.h | 124 sp<ALooper> mCodecLooper; member
|
D | MediaCodec.h | 416 sp<ALooper> mCodecLooper; member
|
/frameworks/av/media/libmediaplayerservice/nuplayer/include/nuplayer/ |
D | NuPlayerDecoder.h | 79 sp<ALooper> mCodecLooper; member
|
/frameworks/av/media/libmediaplayerservice/nuplayer/ |
D | NuPlayerDecoder.cpp | 93 mCodecLooper = new ALooper; in Decoder() 94 mCodecLooper->setName("NPDecoder-CL"); in Decoder() 95 mCodecLooper->start(false, false, ANDROID_PRIORITY_AUDIO); in Decoder() 304 mCodecLooper, mime.c_str(), false /* encoder */, NULL /* err */, mPid, mUid, format); in onConfigure() 313 mCodecLooper, mComponentName.c_str(), NULL /* err */, mPid, mUid); in onConfigure()
|
/frameworks/av/services/camera/libcameraservice/api2/ |
D | HeicCompositeStream.cpp | 1288 mCodecLooper = new ALooper; in initializeCodec() 1289 mCodecLooper->setName("Camera3-HeicComposite-MediaCodecLooper"); in initializeCodec() 1290 status_t res = mCodecLooper->start( in initializeCodec() 1302 mCodec = MediaCodec::CreateByType(mCodecLooper, desiredMime, true /*encoder*/); in initializeCodec() 1304 mCodec = MediaCodec::CreateByComponentName(mCodecLooper, hevcName); in initializeCodec() 1407 if (mCodecLooper != nullptr) { in deinitCodec() 1408 mCodecLooper->stop(); in deinitCodec() 1409 mCodecLooper.clear(); in deinitCodec()
|
D | HeicCompositeStream.h | 122 sp<ALooper> mCodecLooper, mCallbackLooper; variable
|