Lines Matching defs:codec

262     explicit BaseState(ACodec *codec, const sp<AState> &parentState = NULL);
340 explicit UninitializedState(ACodec *codec);
358 explicit LoadedState(ACodec *codec);
381 explicit LoadedToIdleState(ACodec *codec);
397 explicit IdleToExecutingState(ACodec *codec);
411 explicit ExecutingState(ACodec *codec);
441 explicit OutputPortSettingsChangedState(ACodec *codec);
458 explicit ExecutingToIdleState(ACodec *codec);
480 explicit IdleToLoadedState(ACodec *codec);
495 explicit FlushingState(ACodec *codec);
727 // if we have not yet started the codec, we can simply set the native window
997 // otherwise, reuse codec buffer
1897 ALOGI("codec does not support requested auto-frc (err %d)", temp);
2359 ALOGI("codec does not support config priority (err %d)", temp);
2387 ALOGI("codec does not support config operating rate (err %d)", err);
2751 // enable both modes -> the codec will decide which mode should be used
3064 // NOTE: we will also verify this via readback, in case codec ignores these fields
3116 // substitute back flexible color format to codec supported format
3457 "[%s] setting color aspects failed even though codec advertises support",
3480 // communicate color aspects to codec
3501 ALOGW("[%s] getting color aspects failed even though codec advertises support",
3513 // we only set encoder input aspects if codec supports them
3524 // request dataspace guidance from codec.
3608 // communicate color aspects to codec, but do not allow change of the platform aspects
3638 // communicate HDR static Info to codec
3659 // communicate color aspects to codec, but do not allow any change
3682 // update input format with codec supported color aspects (basically set unsupported
3702 // we only set decodec output HDRStaticInfo if codec supports them
3733 "[%s] setting HDRStaticInfo failed even though codec advertises support",
3745 "[%s] getting HDRStaticInfo failed even though codec advertises support",
5461 ACodec::BaseState::BaseState(ACodec *codec, const sp<AState> &parentState)
5463 mCodec(codec) {
5542 ALOGI("[%s] forcing the release of codec",
5545 ALOGE_IF("[%s] failed to release codec instance: err=%d",
5568 // codec that we have already destroyed
5849 ALOGV("[%s] is legacy VP9 decoder. Ignore %u codec specific data",
5884 ALOGV("[%s] calling emptyBuffer %u w/ codec specific data",
6358 ACodec::UninitializedState::UninitializedState(ACodec *codec)
6359 : BaseState(codec) {
6461 ALOGE("Unexpected nullptr for codec information");
6489 ALOGE("Unable to instantiate codec '%s' with err %#x.", componentName.c_str(), err);
6525 ACodec::LoadedState::LoadedState(ACodec *codec)
6526 : BaseState(codec) {
6840 ACodec::LoadedToIdleState::LoadedToIdleState(ACodec *codec)
6841 : BaseState(codec) {
6952 ACodec::IdleToExecutingState::IdleToExecutingState(ACodec *codec)
6953 : BaseState(codec) {
7020 ACodec::ExecutingState::ExecutingState(ACodec *codec)
7021 : BaseState(codec),
7031 // submit as many buffers as there are input buffers with the codec
7155 "(codec owns %zu/%zu input, %zu/%zu output).",
7825 ACodec *codec)
7826 : BaseState(codec) {
7962 ACodec::ExecutingToIdleState::ExecutingToIdleState(ACodec *codec)
7963 : BaseState(codec),
8080 ACodec::IdleToLoadedState::IdleToLoadedState(ACodec *codec)
8081 : BaseState(codec) {
8141 ACodec::FlushingState::FlushingState(ACodec *codec)
8142 : BaseState(codec) {