// // Created by Grishka on 12.08.2018. // #ifndef LIBTGVOIP_VIDEORENDERERANDROID_H #define LIBTGVOIP_VIDEORENDERERANDROID_H #include "../../video/VideoRenderer.h" #include "../../MessageThread.h" #include #include "../../BlockingQueue.h" namespace tgvoip{ namespace video{ class VideoRendererAndroid : public VideoRenderer{ public: VideoRendererAndroid(jobject jobj); virtual ~VideoRendererAndroid(); virtual void Reset(uint32_t codec, unsigned int width, unsigned int height, std::vector& csd) override; virtual void DecodeAndDisplay(Buffer frame, uint32_t pts) override; virtual void SetStreamEnabled(bool enabled) override; virtual void SetRotation(uint16_t rotation) override; static jmethodID resetMethod; static jmethodID decodeAndDisplayMethod; static jmethodID setStreamEnabledMethod; static jmethodID setRotationMethod; static std::vector availableDecoders; static int maxResolution; private: struct Request{ enum Type{ DecodeFrame, ResetDecoder, UpdateStreamState, Shutdown }; Buffer buffer; Type type; }; void RunThread(); Thread* thread=NULL; bool running=true; BlockingQueue queue; std::vector csd; int width; int height; bool streamEnabled=true; uint32_t codec; uint16_t rotation=0; jobject jobj; }; } } #endif //LIBTGVOIP_VIDEORENDERERANDROID_H