1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
/***************************************************************************
encoder_pcm.cpp
-------------------
begin : Sat Aug 20 2005
copyright : (C) 2005 by Martin Witte
email : witte@kawo1.rwth-aachen.de
***************************************************************************/
/***************************************************************************
* *
* 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 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
#include "encoder_pcm.h"
#include <klocale.h>
RecordingEncodingPCM::RecordingEncodingPCM(TQObject *parent, SoundStreamID ssid,
const RecordingConfig &cfg, const RadioStation *rs,
const TQString &filename)
: RecordingEncoding(parent, ssid, cfg, rs, filename),
m_output(NULL)
{
m_config.m_SoundFormat.m_Encoding = "raw";
openOutput(filename);
}
RecordingEncodingPCM::~RecordingEncodingPCM()
{
closeOutput();
}
void RecordingEncodingPCM::encode(const char *buffer, size_t buffer_size, char *&export_buffer, size_t &export_buffer_size)
{
if (m_error)
return;
m_encodedSize += buffer_size;
export_buffer = const_cast<char*>(buffer);
export_buffer_size = buffer_size;
int err = sf_write_raw(m_output, const_cast<char*>(buffer), buffer_size);
if (err != (int)buffer_size) {
m_error = true;
m_errorString += i18n("Error %1 writing output. ").arg(TQString().setNum(err));
}
}
bool RecordingEncodingPCM::openOutput(const TQString &output)
{
SF_INFO sinfo;
m_config.getSoundFileInfo(sinfo, false);
m_output = sf_open(output.ascii(), SFM_WRITE, &sinfo);
if (!m_output) {
m_error = true;
m_errorString += i18n("Cannot open output file %1. ").arg(output);
}
return !m_error;
}
void RecordingEncodingPCM::closeOutput()
{
if (m_output) sf_close (m_output);
m_output = NULL;
}
|