mirror of https://github.com/procxx/kepka.git
				
				
				
			
		
			
				
	
	
		
			117 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			C++
		
	
	
	
			
		
		
	
	
			117 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			C++
		
	
	
	
/*
 | 
						|
This file is part of Telegram Desktop,
 | 
						|
the official desktop application for the Telegram messaging service.
 | 
						|
 | 
						|
For license and copyright information please follow this link:
 | 
						|
https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
 | 
						|
*/
 | 
						|
#pragma once
 | 
						|
 | 
						|
extern "C" {
 | 
						|
 | 
						|
#include <libswscale/swscale.h>
 | 
						|
 | 
						|
} // extern "C"
 | 
						|
 | 
						|
#include "media/clip/media_clip_implementation.h"
 | 
						|
#include "media/audio/media_child_ffmpeg_loader.h"
 | 
						|
#include "media/streaming/media_streaming_utility.h"
 | 
						|
 | 
						|
namespace Media {
 | 
						|
namespace Clip {
 | 
						|
namespace internal {
 | 
						|
 | 
						|
class FFMpegReaderImplementation : public ReaderImplementation {
 | 
						|
public:
 | 
						|
	FFMpegReaderImplementation(FileLocation *location, QByteArray *data, const AudioMsgId &audio);
 | 
						|
 | 
						|
	ReadResult readFramesTill(crl::time frameMs, crl::time systemMs) override;
 | 
						|
 | 
						|
	crl::time frameRealTime() const override;
 | 
						|
	crl::time framePresentationTime() const override;
 | 
						|
 | 
						|
	bool renderFrame(QImage &to, bool &hasAlpha, const QSize &size) override;
 | 
						|
 | 
						|
	crl::time durationMs() const override;
 | 
						|
	bool hasAudio() const override {
 | 
						|
		return (_audioStreamId >= 0);
 | 
						|
	}
 | 
						|
 | 
						|
	bool start(Mode mode, crl::time &positionMs) override;
 | 
						|
	bool inspectAt(crl::time &positionMs);
 | 
						|
 | 
						|
	QString logData() const;
 | 
						|
 | 
						|
	bool isGifv() const;
 | 
						|
 | 
						|
	~FFMpegReaderImplementation();
 | 
						|
 | 
						|
private:
 | 
						|
	ReadResult readNextFrame();
 | 
						|
	void processReadFrame();
 | 
						|
 | 
						|
	enum class PacketResult {
 | 
						|
		Ok,
 | 
						|
		EndOfFile,
 | 
						|
		Error,
 | 
						|
	};
 | 
						|
	PacketResult readPacket(FFmpeg::Packet &packet);
 | 
						|
	void processPacket(FFmpeg::Packet &&packet);
 | 
						|
	crl::time countPacketMs(const FFmpeg::Packet &packet) const;
 | 
						|
	PacketResult readAndProcessPacket();
 | 
						|
 | 
						|
	enum class Rotation {
 | 
						|
		None,
 | 
						|
		Degrees90,
 | 
						|
		Degrees180,
 | 
						|
		Degrees270,
 | 
						|
	};
 | 
						|
	Rotation rotationFromDegrees(int degrees) const;
 | 
						|
	bool rotationSwapWidthHeight() const {
 | 
						|
		return (_rotation == Rotation::Degrees90) || (_rotation == Rotation::Degrees270);
 | 
						|
	}
 | 
						|
 | 
						|
	static int _read(void *opaque, uint8_t *buf, int buf_size);
 | 
						|
	static int64_t _seek(void *opaque, int64_t offset, int whence);
 | 
						|
 | 
						|
	Mode _mode = Mode::Normal;
 | 
						|
 | 
						|
	Rotation _rotation = Rotation::None;
 | 
						|
 | 
						|
	uchar *_ioBuffer = nullptr;
 | 
						|
	AVIOContext *_ioContext = nullptr;
 | 
						|
	AVFormatContext *_fmtContext = nullptr;
 | 
						|
	AVCodecContext *_codecContext = nullptr;
 | 
						|
	int _streamId = 0;
 | 
						|
	FFmpeg::FramePointer _frame;
 | 
						|
	bool _opened = false;
 | 
						|
	bool _hadFrame = false;
 | 
						|
	bool _frameRead = false;
 | 
						|
	int _skippedInvalidDataPackets = 0;
 | 
						|
 | 
						|
	bool _hasAudioStream = false;
 | 
						|
	int _audioStreamId = -1;
 | 
						|
	AudioMsgId _audioMsgId;
 | 
						|
	crl::time _lastReadVideoMs = 0;
 | 
						|
	crl::time _lastReadAudioMs = 0;
 | 
						|
 | 
						|
	std::deque<FFmpeg::Packet> _packetQueue;
 | 
						|
 | 
						|
	int _width = 0;
 | 
						|
	int _height = 0;
 | 
						|
	SwsContext *_swsContext = nullptr;
 | 
						|
	QSize _swsSize;
 | 
						|
 | 
						|
	crl::time _frameMs = 0;
 | 
						|
	int _nextFrameDelay = 0;
 | 
						|
	int _currentFrameDelay = 0;
 | 
						|
 | 
						|
	crl::time _frameTime = 0;
 | 
						|
	crl::time _frameTimeCorrection = 0;
 | 
						|
 | 
						|
};
 | 
						|
 | 
						|
} // namespace internal
 | 
						|
} // namespace Clip
 | 
						|
} // namespace Media
 |