67 lines
		
	
	
	
		
			2 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			67 lines
		
	
	
	
		
			2 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
 | |
| */
 | |
| #include "media/media_audio_loader.h"
 | |
| 
 | |
| AudioPlayerLoader::AudioPlayerLoader(const FileLocation &file, const QByteArray &data, bytes::vector &&buffer)
 | |
| : _file(file)
 | |
| , _data(data)
 | |
| , _bytes(std::move(buffer)) {
 | |
| }
 | |
| 
 | |
| AudioPlayerLoader::~AudioPlayerLoader() {
 | |
| 	if (_access) {
 | |
| 		_file.accessDisable();
 | |
| 		_access = false;
 | |
| 	}
 | |
| }
 | |
| 
 | |
| bool AudioPlayerLoader::check(const FileLocation &file, const QByteArray &data) {
 | |
| 	return this->_file == file && this->_data.size() == data.size();
 | |
| }
 | |
| 
 | |
| void AudioPlayerLoader::saveDecodedSamples(QByteArray *samples, int64 *samplesCount) {
 | |
| 	Assert(_savedSamplesCount == 0);
 | |
| 	Assert(_savedSamples.isEmpty());
 | |
| 	Assert(!_holdsSavedSamples);
 | |
| 	samples->swap(_savedSamples);
 | |
| 	std::swap(*samplesCount, _savedSamplesCount);
 | |
| 	_holdsSavedSamples = true;
 | |
| }
 | |
| 
 | |
| void AudioPlayerLoader::takeSavedDecodedSamples(QByteArray *samples, int64 *samplesCount) {
 | |
| 	Assert(*samplesCount == 0);
 | |
| 	Assert(samples->isEmpty());
 | |
| 	Assert(_holdsSavedSamples);
 | |
| 	samples->swap(_savedSamples);
 | |
| 	std::swap(*samplesCount, _savedSamplesCount);
 | |
| 	_holdsSavedSamples = false;
 | |
| }
 | |
| 
 | |
| bool AudioPlayerLoader::holdsSavedDecodedSamples() const {
 | |
| 	return _holdsSavedSamples;
 | |
| }
 | |
| 
 | |
| bool AudioPlayerLoader::openFile() {
 | |
| 	if (_data.isEmpty() && _bytes.empty()) {
 | |
| 		if (_f.isOpen()) _f.close();
 | |
| 		if (!_access) {
 | |
| 			if (!_file.accessEnable()) {
 | |
| 				LOG(("Audio Error: could not open file access '%1', data size '%2', error %3, %4").arg(_file.name()).arg(_data.size()).arg(_f.error()).arg(_f.errorString()));
 | |
| 				return false;
 | |
| 			}
 | |
| 			_access = true;
 | |
| 		}
 | |
| 		_f.setFileName(_file.name());
 | |
| 		if (!_f.open(QIODevice::ReadOnly)) {
 | |
| 			LOG(("Audio Error: could not open file '%1', data size '%2', error %3, %4").arg(_file.name()).arg(_data.size()).arg(_f.error()).arg(_f.errorString()));
 | |
| 			return false;
 | |
| 		}
 | |
| 	}
 | |
| 	_dataPos = 0;
 | |
| 	return true;
 | |
| }
 | 
