| // 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. |
| |
| #pragma once |
| |
| #include "android/emulation/GoldfishMediaDefs.h" |
| #include "android/emulation/H264PingInfoParser.h" |
| #include "android/emulation/MediaH264DecoderDefault.h" |
| #include "android/emulation/MediaH264DecoderPlugin.h" |
| #include "android/emulation/MediaHostRenderer.h" |
| |
| |
| extern "C" { |
| #include <libavcodec/avcodec.h> // for AVCodecContext, AVPacket |
| #include <libavformat/avio.h> // for avio_open, AVIO_FLAG_... |
| #include <libavutil/avutil.h> // for AVMediaType, AVMEDIA_... |
| #include <libavutil/dict.h> // for AVDictionary |
| #include <libavutil/error.h> // for av_make_error_string |
| #include <libavutil/frame.h> // for AVFrame, av_frame_alloc |
| #include <libavutil/log.h> // for av_log_set_callback |
| #include <libavutil/pixfmt.h> // for AVPixelFormat, AV_PIX... |
| #include <libavutil/rational.h> // for AVRational |
| #include <libavutil/samplefmt.h> // for AVSampleFormat |
| #include <libavutil/timestamp.h> |
| } |
| |
| |
| #include <cstdint> |
| #include <string> |
| #include <vector> |
| |
| #include <stdio.h> |
| #include <string.h> |
| |
| |
| #include <stddef.h> |
| |
| namespace android { |
| namespace emulation { |
| |
| class MediaH264DecoderFfmpeg: public MediaH264DecoderPlugin { |
| public: |
| virtual void reset(void* ptr) override; |
| virtual void initH264Context(void* ptr) override; |
| virtual MediaH264DecoderPlugin* clone() override; |
| virtual void destroyH264Context() override; |
| virtual void decodeFrame(void* ptr) override; |
| virtual void flush(void* ptr) override; |
| virtual void getImage(void* ptr) override; |
| |
| virtual void save(base::Stream* stream) const override; |
| virtual bool load(base::Stream* stream) override; |
| |
| explicit MediaH264DecoderFfmpeg(uint64_t id, H264PingInfoParser parser); |
| virtual ~MediaH264DecoderFfmpeg(); |
| |
| virtual int type() const override { return PLUGIN_TYPE_FFMPEG; } |
| |
| friend MediaH264DecoderDefault; |
| |
| public: |
| void decodeFrameDirect(void* ptr, |
| const uint8_t* frame, |
| size_t szBytes, |
| uint64_t pts); |
| |
| private: |
| void decodeFrameInternal(H264PingInfoParser::DecodeFrameParam& param); |
| |
| void initH264ContextInternal(unsigned int width, |
| unsigned int height, |
| unsigned int outWidth, |
| unsigned int outHeight, |
| PixelFormat pixFmt); |
| uint64_t mId = 0; |
| H264PingInfoParser mParser; |
| MediaHostRenderer mRenderer; |
| // image props |
| int mNumDecodedFrame = 0; |
| bool mImageReady = false; |
| bool mIsSoftwareDecoder = true; |
| bool mIsInFlush = false; |
| bool mFrameFormatChanged = false; |
| static constexpr int kBPP = 2; // YUV420 is 2 bytes per pixel |
| unsigned int mWidth = 0; |
| unsigned int mHeight = 0; |
| unsigned int mOutputHeight = 0; |
| unsigned int mOutputWidth = 0; |
| unsigned int mColorPrimaries = 2; |
| unsigned int mColorRange = 0; |
| unsigned int mColorTransfer = 2; |
| unsigned int mColorSpace = 2; |
| uint64_t mOutputPts = 0; |
| uint64_t mInputPts = 0; |
| unsigned int mSurfaceHeight = 0; |
| unsigned int mBPP = 0; |
| unsigned int mSurfaceWidth = 0; |
| unsigned int mLumaHeight = 0; |
| unsigned int mChromaHeight = 0; |
| PixelFormat mOutPixFmt; |
| unsigned int mOutBufferSize = 0; |
| |
| // right now, decoding command only passes the input address; |
| // and output address is only available in getImage(). |
| // TODO: this should be set to the output address to avoid |
| // extra copying |
| std::vector<uint8_t> mDecodedFrame; |
| |
| // ffmpeg stuff |
| AVCodec *mCodec = nullptr;; |
| AVCodecContext *mCodecCtx = nullptr; |
| AVFrame *mFrame = nullptr; |
| AVPacket mPacket; |
| |
| private: |
| mutable SnapshotState mSnapshotState; |
| |
| private: |
| void copyFrame(); |
| void resetDecoder(); |
| bool checkWhetherConfigChanged(const uint8_t* frame, size_t szBytes); |
| |
| void oneShotDecode(std::vector<uint8_t>& data, uint64_t pts); |
| }; // MediaH264DecoderFfmpeg |
| |
| |
| } // namespace emulation |
| } // namespace android |