/* * Copyright (C) 2019 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #ifndef ANDROID_C2_SOFT_GAV1_DEC_H_ #define ANDROID_C2_SOFT_GAV1_DEC_H_ #include #include "libgav1/src/gav1/decoder.h" #include "libgav1/src/gav1/decoder_settings.h" #define GETTIME(a, b) gettimeofday(a, b); #define TIME_DIFF(start, end, diff) \ diff = (((end).tv_sec - (start).tv_sec) * 1000000) + \ ((end).tv_usec - (start).tv_usec); namespace android { struct C2SoftGav1Dec : public SimpleC2Component { class IntfImpl; C2SoftGav1Dec(const char* name, c2_node_id_t id, const std::shared_ptr& intfImpl); ~C2SoftGav1Dec(); // Begin SimpleC2Component overrides. c2_status_t onInit() override; c2_status_t onStop() override; void onReset() override; void onRelease() override; c2_status_t onFlush_sm() override; void process(const std::unique_ptr& work, const std::shared_ptr& pool) override; c2_status_t drain(uint32_t drainMode, const std::shared_ptr& pool) override; // End SimpleC2Component overrides. private: std::shared_ptr mIntf; std::unique_ptr mCodecCtx; uint32_t mWidth; uint32_t mHeight; bool mSignalledOutputEos; bool mSignalledError; struct timeval mTimeStart; // Time at the start of decode() struct timeval mTimeEnd; // Time at the end of decode() bool initDecoder(); void destroyDecoder(); void finishWork(uint64_t index, const std::unique_ptr& work, const std::shared_ptr& block); bool outputBuffer(const std::shared_ptr& pool, const std::unique_ptr& work); c2_status_t drainInternal(uint32_t drainMode, const std::shared_ptr& pool, const std::unique_ptr& work); C2_DO_NOT_COPY(C2SoftGav1Dec); }; } // namespace android #endif // ANDROID_C2_SOFT_GAV1_DEC_H_