mirror of
https://github.com/Team-Resurgent/XBMC4Xbox.git
synced 2026-08-15 11:18:13 -07:00
If ever adding the XBMC4Xbox source to GitHub use "git add -f -A" or it wont add all the files.
146 lines
3.6 KiB
C++
146 lines
3.6 KiB
C++
/*
|
|
* Copyright (C) 2005-2013 Team XBMC
|
|
* http://xbmc.org
|
|
*
|
|
* This Program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2, or (at your option)
|
|
* any later version.
|
|
*
|
|
* This Program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with XBMC; see the file COPYING. If not, see
|
|
* <http://www.gnu.org/licenses/>.
|
|
*
|
|
*/
|
|
|
|
#include "utils/log.h"
|
|
#include "Encoder.h"
|
|
#include "FileSystem/File.h"
|
|
|
|
CEncoder::CEncoder()
|
|
{
|
|
m_file = NULL;
|
|
m_dwWriteBufferPointer = 0;
|
|
m_iInChannels = 0;
|
|
m_iInSampleRate = 0;
|
|
m_iInBitsPerSample = 0;
|
|
}
|
|
|
|
CEncoder::~CEncoder()
|
|
{
|
|
FileClose();
|
|
}
|
|
|
|
bool CEncoder::Init(const char* strFile, int iInChannels, int iInRate, int iInBits)
|
|
{
|
|
if (strFile == NULL) return false;
|
|
|
|
m_dwWriteBufferPointer = 0;
|
|
m_strFile = strFile;
|
|
|
|
m_iInChannels = iInChannels;
|
|
m_iInSampleRate = iInRate;
|
|
m_iInBitsPerSample = iInBits;
|
|
|
|
if (!FileCreate(strFile))
|
|
{
|
|
CLog::Log(LOGERROR, "Error: Cannot open file: %s", strFile);
|
|
return false;
|
|
}
|
|
return true;
|
|
}
|
|
|
|
bool CEncoder::FileCreate(const char* filename)
|
|
{
|
|
delete m_file;
|
|
|
|
m_file = new XFILE::CFile;
|
|
if (m_file)
|
|
return m_file->OpenForWrite(filename, true);
|
|
return false;
|
|
}
|
|
|
|
bool CEncoder::FileClose()
|
|
{
|
|
if (m_file)
|
|
{
|
|
m_file->Close();
|
|
delete m_file;
|
|
m_file = NULL;
|
|
}
|
|
return true;
|
|
}
|
|
|
|
// return total bytes written, or -1 on error
|
|
int CEncoder::FileWrite(LPCVOID pBuffer, DWORD iBytes)
|
|
{
|
|
if (!m_file)
|
|
return -1;
|
|
|
|
DWORD dwBytesWritten = m_file->Write(pBuffer, iBytes);
|
|
if (!dwBytesWritten)
|
|
return -1;
|
|
|
|
return dwBytesWritten;
|
|
}
|
|
|
|
// write the stream to our writebuffer, and write the buffer to disk if it's full
|
|
int CEncoder::WriteStream(LPCVOID pBuffer, DWORD iBytes)
|
|
{
|
|
if ((WRITEBUFFER_SIZE - m_dwWriteBufferPointer) > iBytes)
|
|
{
|
|
// writebuffer is big enough to fit data
|
|
memcpy(m_btWriteBuffer + m_dwWriteBufferPointer, pBuffer, iBytes);
|
|
m_dwWriteBufferPointer += iBytes;
|
|
return iBytes;
|
|
}
|
|
else
|
|
{
|
|
// buffer is not big enough to fit data
|
|
if (m_dwWriteBufferPointer == 0)
|
|
{
|
|
// nothing in our buffer, just write the entire pBuffer to disk
|
|
return FileWrite(pBuffer, iBytes);
|
|
}
|
|
|
|
DWORD dwBytesRemaining = iBytes - (WRITEBUFFER_SIZE - m_dwWriteBufferPointer);
|
|
// fill up our write buffer and write it to disk
|
|
memcpy(m_btWriteBuffer + m_dwWriteBufferPointer, pBuffer, (WRITEBUFFER_SIZE - m_dwWriteBufferPointer));
|
|
FileWrite(m_btWriteBuffer, WRITEBUFFER_SIZE);
|
|
m_dwWriteBufferPointer = 0;
|
|
|
|
// pbtRemaining = pBuffer + bytesWritten
|
|
BYTE* pbtRemaining = (BYTE*)pBuffer + (iBytes - dwBytesRemaining);
|
|
if (dwBytesRemaining > WRITEBUFFER_SIZE)
|
|
{
|
|
// data is not going to fit in our buffer, just write it to disk
|
|
if (FileWrite(pbtRemaining, dwBytesRemaining) == -1) return -1;
|
|
return iBytes;
|
|
}
|
|
else
|
|
{
|
|
// copy remaining bytes to our currently empty writebuffer
|
|
memcpy(m_btWriteBuffer, pbtRemaining, dwBytesRemaining);
|
|
m_dwWriteBufferPointer = dwBytesRemaining;
|
|
return iBytes;
|
|
}
|
|
}
|
|
}
|
|
|
|
// flush the contents of our writebuffer
|
|
int CEncoder::FlushStream()
|
|
{
|
|
int iResult;
|
|
if (m_dwWriteBufferPointer == 0) return 0;
|
|
|
|
iResult = FileWrite(m_btWriteBuffer, m_dwWriteBufferPointer);
|
|
m_dwWriteBufferPointer = 0;
|
|
|
|
return iResult;
|
|
}
|