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 | 471 mCodecLooper->stop(); in ~MediaCodecSource() 490 mCodecLooper = new ALooper; in initEncoder() 491 mCodecLooper->setName("codec_looper"); in initEncoder() 492 mCodecLooper->start(); in initEncoder() 505 mEncoder = MediaCodec::CreateByComponentName(mCodecLooper, name); in initEncoder() 524 mCodecLooper, matchingCodecs[ix]); in initEncoder()
|
D | MediaCodec.cpp | 1126 if (mCodecLooper == NULL) { in init() 1127 mCodecLooper = new ALooper; in init() 1128 mCodecLooper->setName("CodecLooper"); in init() 1129 mCodecLooper->start(false, false, ANDROID_PRIORITY_AUDIO); in init() 1132 mCodecLooper->registerHandler(mCodec); in init() 1501 if (mCodecLooper != NULL) { in reset() 1502 mCodecLooper->unregisterHandler(mCodec->id()); in reset()
|
/frameworks/av/media/libstagefright/include/media/stagefright/ |
D | MediaCodecSource.h | 121 sp<ALooper> mCodecLooper; member
|
D | MediaCodec.h | 363 sp<ALooper> mCodecLooper; member
|
/frameworks/av/media/libmediaplayerservice/nuplayer/ |
D | NuPlayerDecoder.h | 79 sp<ALooper> mCodecLooper; member
|
D | NuPlayerDecoder.cpp | 94 mCodecLooper = new ALooper; in Decoder() 95 mCodecLooper->setName("NPDecoder-CL"); in Decoder() 96 mCodecLooper->start(false, false, ANDROID_PRIORITY_AUDIO); in Decoder() 305 mCodecLooper, mime.c_str(), false /* encoder */, NULL /* err */, mPid, mUid); in onConfigure() 314 mCodecLooper, mComponentName.c_str(), NULL /* err */, mPid, mUid); in onConfigure()
|
/frameworks/av/services/camera/libcameraservice/api2/ |
D | HeicCompositeStream.cpp | 1283 mCodecLooper = new ALooper; in initializeCodec() 1284 mCodecLooper->setName("Camera3-HeicComposite-MediaCodecLooper"); in initializeCodec() 1285 status_t res = mCodecLooper->start( in initializeCodec() 1297 mCodec = MediaCodec::CreateByType(mCodecLooper, desiredMime, true /*encoder*/); in initializeCodec() 1299 mCodec = MediaCodec::CreateByComponentName(mCodecLooper, hevcName); in initializeCodec() 1400 if (mCodecLooper != nullptr) { in deinitCodec() 1401 mCodecLooper->stop(); in deinitCodec() 1402 mCodecLooper.clear(); in deinitCodec()
|
D | HeicCompositeStream.h | 120 sp<ALooper> mCodecLooper, mCallbackLooper; variable
|