Searched refs:mCodecLooper (Results 1 – 10 of 10) sorted by relevance
/aosp12/frameworks/av/cmds/stagefright/ |
H A 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()
|
H A D | SimplePlayer.h | 91 sp<ALooper> mCodecLooper; member
|
/aosp12/frameworks/av/media/libstagefright/ |
H A 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()
|
H A D | MediaCodec.cpp | 1410 if (mCodecLooper == NULL) { in init() 1411 mCodecLooper = new ALooper; in init() 1412 mCodecLooper->setName("CodecLooper"); in init() 1413 mCodecLooper->start(false, false, ANDROID_PRIORITY_AUDIO); in init() 1416 mCodecLooper->registerHandler(mCodec); in init() 2364 if (mCodecLooper != NULL) { in reset() 2365 mCodecLooper->unregisterHandler(mCodec->id()); in reset()
|
/aosp12/frameworks/av/media/libmediaplayerservice/nuplayer/ |
H A 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, format); in onConfigure() 314 mCodecLooper, mComponentName.c_str(), NULL /* err */, mPid, mUid); in onConfigure()
|
H A D | NuPlayerDecoder.h | 79 sp<ALooper> mCodecLooper; member
|
/aosp12/frameworks/av/services/camera/libcameraservice/api2/ |
H A D | HeicCompositeStream.cpp | 1280 mCodecLooper = new ALooper; in initializeCodec() 1281 mCodecLooper->setName("Camera3-HeicComposite-MediaCodecLooper"); in initializeCodec() 1282 status_t res = mCodecLooper->start( in initializeCodec() 1294 mCodec = MediaCodec::CreateByType(mCodecLooper, desiredMime, true /*encoder*/); in initializeCodec() 1296 mCodec = MediaCodec::CreateByComponentName(mCodecLooper, hevcName); in initializeCodec() 1399 if (mCodecLooper != nullptr) { in deinitCodec() 1400 mCodecLooper->stop(); in deinitCodec() 1401 mCodecLooper.clear(); in deinitCodec()
|
H A D | HeicCompositeStream.h | 122 sp<ALooper> mCodecLooper, mCallbackLooper; variable
|
/aosp12/frameworks/av/media/libstagefright/include/media/stagefright/ |
H A D | MediaCodecSource.h | 124 sp<ALooper> mCodecLooper; member
|
H A D | MediaCodec.h | 407 sp<ALooper> mCodecLooper; member
|