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 | 470 mCodecLooper->stop(); in ~MediaCodecSource() 489 mCodecLooper = new ALooper; in initEncoder() 490 mCodecLooper->setName("codec_looper"); in initEncoder() 491 mCodecLooper->start(); in initEncoder() 504 mEncoder = MediaCodec::CreateByComponentName(mCodecLooper, name); in initEncoder() 523 mCodecLooper, matchingCodecs[ix]); in initEncoder()
|
D | MediaCodec.cpp | 935 if (mCodecLooper == NULL) { in init() 936 mCodecLooper = new ALooper; in init() 937 mCodecLooper->setName("CodecLooper"); in init() 938 mCodecLooper->start(false, false, ANDROID_PRIORITY_AUDIO); in init() 941 mCodecLooper->registerHandler(mCodec); in init() 1314 if (mCodecLooper != NULL) { in reset() 1315 mCodecLooper->unregisterHandler(mCodec->id()); in reset()
|
/frameworks/av/media/libstagefright/include/media/stagefright/ |
D | MediaCodecSource.h | 121 sp<ALooper> mCodecLooper; member
|
D | MediaCodec.h | 313 sp<ALooper> mCodecLooper; member
|
/frameworks/av/services/camera/libcameraservice/api2/ |
D | HeicCompositeStream.cpp | 1129 mCodecLooper = new ALooper; in initializeCodec() 1130 mCodecLooper->setName("Camera3-HeicComposite-MediaCodecLooper"); in initializeCodec() 1131 status_t res = mCodecLooper->start( in initializeCodec() 1143 mCodec = MediaCodec::CreateByType(mCodecLooper, desiredMime, true /*encoder*/); in initializeCodec() 1145 mCodec = MediaCodec::CreateByComponentName(mCodecLooper, hevcName); in initializeCodec() 1246 if (mCodecLooper != nullptr) { in deinitCodec() 1247 mCodecLooper->stop(); in deinitCodec() 1248 mCodecLooper.clear(); in deinitCodec()
|
D | HeicCompositeStream.h | 116 sp<ALooper> mCodecLooper, mCallbackLooper; variable
|
/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() 304 mCodecLooper, mime.c_str(), false /* encoder */, NULL /* err */, mPid, mUid); in onConfigure() 313 mCodecLooper, mComponentName.c_str(), NULL /* err */, mPid, mUid); in onConfigure()
|