summaryrefslogtreecommitdiffstats
path: root/xbmc/cdrip/Encoder.h
diff options
context:
space:
mode:
Diffstat (limited to 'xbmc/cdrip/Encoder.h')
-rw-r--r--xbmc/cdrip/Encoder.h67
1 files changed, 67 insertions, 0 deletions
diff --git a/xbmc/cdrip/Encoder.h b/xbmc/cdrip/Encoder.h
new file mode 100644
index 0000000..644296d
--- /dev/null
+++ b/xbmc/cdrip/Encoder.h
@@ -0,0 +1,67 @@
+/*
+ * Copyright (C) 2005-2018 Team Kodi
+ * This file is part of Kodi - https://kodi.tv
+ *
+ * SPDX-License-Identifier: GPL-2.0-or-later
+ * See LICENSES/README.md for more information.
+ */
+
+#pragma once
+
+#include "IEncoder.h"
+
+#include <memory>
+#include <stdint.h>
+#include <stdio.h>
+#include <string>
+
+namespace XFILE
+{
+class CFile;
+}
+
+namespace KODI
+{
+namespace CDRIP
+{
+
+constexpr size_t WRITEBUFFER_SIZE = 131072; // 128k buffer
+
+class CEncoder : public IEncoder
+{
+public:
+ CEncoder();
+ virtual ~CEncoder();
+
+ bool EncoderInit(const std::string& strFile, int iInChannels, int iInRate, int iInBits);
+ ssize_t EncoderEncode(uint8_t* pbtStream, size_t nNumBytesRead);
+ bool EncoderClose();
+
+ void SetComment(const std::string& str) { m_strComment = str; }
+ void SetArtist(const std::string& str) { m_strArtist = str; }
+ void SetTitle(const std::string& str) { m_strTitle = str; }
+ void SetAlbum(const std::string& str) { m_strAlbum = str; }
+ void SetAlbumArtist(const std::string& str) { m_strAlbumArtist = str; }
+ void SetGenre(const std::string& str) { m_strGenre = str; }
+ void SetTrack(const std::string& str) { m_strTrack = str; }
+ void SetTrackLength(int length) { m_iTrackLength = length; }
+ void SetYear(const std::string& str) { m_strYear = str; }
+
+protected:
+ virtual ssize_t Write(const uint8_t* pBuffer, size_t iBytes);
+ virtual ssize_t Seek(ssize_t iFilePosition, int iWhence);
+
+private:
+ bool FileCreate(const std::string& filename);
+ bool FileClose();
+ ssize_t FileWrite(const uint8_t* pBuffer, size_t iBytes);
+ ssize_t FlushStream();
+
+ std::unique_ptr<XFILE::CFile> m_file;
+
+ uint8_t m_btWriteBuffer[WRITEBUFFER_SIZE]; // 128k buffer for writing to disc
+ size_t m_dwWriteBufferPointer{0};
+};
+
+} /* namespace CDRIP */
+} /* namespace KODI */