/usr/include/ptclib/pwavfile.h is in libpt-dev 2.10.10~dfsg-4.1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 | /*
* pwavfile.h
*
* WAV file I/O channel class.
*
* Portable Tools Library
*
* Copyright (c) 2001 Equivalence Pty. Ltd.
*
* The contents of this file are subject to the Mozilla Public License
* Version 1.0 (the "License"); you may not use this file except in
* compliance with the License. You may obtain a copy of the License at
* http://www.mozilla.org/MPL/
*
* Software distributed under the License is distributed on an "AS IS"
* basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
* the License for the specific language governing rights and limitations
* under the License.
*
* The Original Code is Portable Windows Library.
*
* The Initial Developer of the Original Code is
* Roger Hardiman <roger@freebsd.org>
* and Shawn Pai-Hsiang Hsiao <shawn@eecs.harvard.edu>
*
* All Rights Reserved.
*
* Contributor(s): ______________________________________.
*
* $Revision: 27139 $
* $Author: rjongbloed $
* $Date: 2012-03-06 21:51:15 -0600 (Tue, 06 Mar 2012) $
*/
#ifndef PTLIB_PWAVFILE_H
#define PTLIB_PWAVFILE_H
//#ifdef P_USE_PRAGMA
//#pragma interface
//#endif
#include <ptlib/pfactory.h>
class PWAVFile;
namespace PWAV {
#ifdef __GNUC__
#define P_PACKED __attribute__ ((packed));
#else
#define P_PACKED
#pragma pack(1)
#endif
struct ChunkHeader
{
char tag[4];
PInt32l len P_PACKED;
};
struct RIFFChunkHeader
{
ChunkHeader hdr;
char tag[4];
};
struct FMTChunk
{
ChunkHeader hdr; ///< chunk header (already packed)
PUInt16l format P_PACKED; ///< Format
PUInt16l numChannels P_PACKED; ///< Channels 0x01 = mono, 0x02 = stereo
PUInt32l sampleRate P_PACKED; ///< Sample Rate in Hz
PUInt32l bytesPerSec P_PACKED; ///< Average bytes Per Second
PUInt16l bytesPerSample P_PACKED; ///< Bytes Per Sample, eg 2
PUInt16l bitsPerSample P_PACKED; ///< Bits Per Sample, eg 16
};
}; // namespace PWAV
#ifdef __GNUC__
#undef P_PACKED
#else
#pragma pack()
#endif
/**Abstract factory class for handling WAV files formats.
*/
class PWAVFileFormat
{
public:
virtual ~PWAVFileFormat() { }
/**Return a PWAVFile format code.
*/
virtual unsigned GetFormat() const = 0;
/**Return a string that can be used as a media format.
*/
virtual PString GetFormatString() const = 0;
/**Return a string that can be used as a text description.
*/
virtual PString GetDescription() const = 0;
/// Check that this format can be set to the number of channels
virtual bool CanSetChannels(unsigned channels) const = 0;
/**Populate the header with the correct values.
*/
virtual void CreateHeader(PWAV::FMTChunk & header, PBYTEArray & extendedHeader) = 0;
/**Populate the header with the correct values after initial parameters are set.
*/
virtual void UpdateHeader(PWAV::FMTChunk & /*header*/, PBYTEArray & /*extendedHeader*/)
{ }
/**Write any extra headers after the FORMAT chunk.
*/
virtual PBoolean WriteExtraChunks(PWAVFile & /*file*/)
{ return true; }
/**Read any extra headers after the FORMAT chunk.
*/
virtual PBoolean ReadExtraChunks(PWAVFile & /*file*/)
{ return true; }
/**Called before the reading/writing starts.
*/
virtual void OnStart()
{ }
/**Called after the reading/writing stops.
*/
virtual void OnStop()
{ }
/**Write data to the file.
*/
virtual PBoolean Read(PWAVFile & file, void * buf, PINDEX & len);
/**Read data from the file.
*/
virtual PBoolean Write(PWAVFile & file, const void * buf, PINDEX & len);
};
typedef PFactory<PWAVFileFormat, PCaselessString> PWAVFileFormatByFormatFactory;
typedef PFactory<PWAVFileFormat, unsigned> PWAVFileFormatByIDFactory;
PFACTORY_LOAD(PWAVFileFormatPCM);
/**Abstract factory class for autoconversion of WAV files to/from PCM-16.
*/
class PWAVFileConverter
{
public:
virtual ~PWAVFileConverter() { }
virtual unsigned GetFormat (const PWAVFile & file) const = 0;
virtual off_t GetPosition (const PWAVFile & file) const = 0;
virtual PBoolean SetPosition (PWAVFile & file, off_t pos, PFile::FilePositionOrigin origin) = 0;
virtual unsigned GetSampleSize(const PWAVFile & file) const = 0;
virtual off_t GetDataLength (PWAVFile & file) = 0;
virtual PBoolean Read (PWAVFile & file, void * buf, PINDEX len) = 0;
virtual PBoolean Write (PWAVFile & file, const void * buf, PINDEX len) = 0;
};
typedef PFactory<PWAVFileConverter, unsigned> PWAVFileConverterFactory;
/**A class representing a WAV audio file.
*/
class PWAVFile : public PFile
{
PCLASSINFO(PWAVFile, PFile);
public:
/**@name Construction */
//@{
/**When a file is opened for writing, we can specify if this is a PCM
wav file or a G.723.1 wav file.
*/
enum WaveType {
fmt_PCM = 1, ///< PCM, 8kHz, 16 bit, mono
fmt_MSADPCM = 2, ///< MS-ADPCM, 8kHz, mono
fmt_ALaw = 6, ///< A-Law 8kHz
fmt_uLaw = 7, ///< u-Law 8kHz
fmt_VOXADPCM = 0x10, ///< OKI ADPCM
fmt_IMAADPCM = 0x11, ///< IMA-ADPCM, 8kHz mono
fmt_GSM = 0x31, ///< GSM
fmt_G728 = 0x41, ///< RFC2361
fmt_G723 = 0x42, ///< RFC2361
fmt_MSG7231 = 0x42, ///< Microsoft G.723.1
fmt_G726 = 0x64, ///< RFC2361
fmt_G722 = 0x65, ///< RFC2361
fmt_G729 = 0x83, ///< RFC2361
fmt_VivoG7231 = 0x111, ///< VivoActive G.723.1
// For backward compatibility
PCM_WavFile = fmt_PCM,
G7231_WavFile = fmt_VivoG7231,
// allow opening files without knowing the format
fmt_NotKnown = 0x10000
};
/**Create a WAV file object but do not open it. It does not
initially have a valid file name. However, an attempt to open the file
using the <code>PFile::Open()</code> function will generate a unique
temporary file.
If a WAV file is being created, the type parameter can be used
to create a PCM Wave file or a G.723.1 Wave file by using
<code>WaveType</code> enum.
*/
PWAVFile(
unsigned format = fmt_PCM ///< Type of WAV File to create
);
/**Create a unique temporary file name, and open the file in the specified
mode and using the specified options. Note that opening a new, unique,
temporary file name in ReadOnly mode will always fail. This would only
be usefull in a mode and options that will create the file.
If a WAV file is being created, the type parameter can be used
to create a PCM Wave file or a G.723.1 Wave file by using
<code>WaveType</code> enum.
The <code>PChannel::IsOpen()</code> function may be used after object
construction to determine if the file was successfully opened.
*/
PWAVFile(
OpenMode mode, ///< Mode in which to open the file.
int opts = ModeDefault, ///< <code>OpenOptions</code> enum for open operation.
unsigned format = fmt_PCM ///< Type of WAV File to create
);
/**Create a WAV file object with the specified name and open it in
the specified mode and with the specified options.
If a WAV file is being created, the type parameter can be used
to create a PCM Wave file or a G.723.1 Wave file by using
<code>WaveType</code> enum.
The <code>PChannel::IsOpen()</code> function may be used after object
construction to determine if the file was successfully opened.
*/
PWAVFile(
const PFilePath & name, ///< Name of file to open.
OpenMode mode = ReadWrite, ///< Mode in which to open the file.
int opts = ModeDefault, ///< <code>OpenOptions</code> enum for open operation.
unsigned format = fmt_PCM ///< Type of WAV File to create
);
PWAVFile(
const PString & format, ///< Type of WAV File to create
const PFilePath & name, ///< Name of file to open.
OpenMode mode = PFile::ReadWrite, ///< Mode in which to open the file.
int opts = PFile::ModeDefault ///< <code>OpenOptions</code> enum for open operation.
);
/**Close the file before destruction.
*/
~PWAVFile();
//@}
/**@name Overrides from class PFile */
//@{
/**Call PFile::Read() to read in audio data and perform necessary
processing such as byte-order swaping.
@return
true indicates that at least one character was read from the channel.
false means no bytes were read due to timeout or some other I/O error.
*/
virtual PBoolean Read(
void * buf, ///< Pointer to a block of memory to receive the read bytes.
PINDEX len ///< Maximum number of bytes to read into the buffer.
);
/**Call PFile::Write() to write out audio data and perform necessary
processing such as byte-order swaping.
@return
true indicates that at least one character was written to the channel.
false means no bytes were written due to timeout or some other I/O error.
*/
virtual PBoolean Write(
const void * buf, ///< Pointer to a block of memory to receive the write bytes.
PINDEX len ///< Maximum number of bytes to write to the channel.
);
/**Open the current file in the specified mode and with
the specified options. If the file object already has an open file then
it is closed.
If there has not been a filename attached to the file object
(via <code>SetFilePath()</code>, the \p name parameter in the constructor
or a previous open) then a new unique temporary filename is
generated.
@return
true if the file was successfully opened.
*/
virtual PBoolean Open(
OpenMode mode = ReadWrite, ///< Mode in which to open the file.
int opts = ModeDefault ///< Options for open operation.
);
/**Open the specified WAV file name in the specified mode and with
the specified options. If the file object already has an open file then
it is closed.
This reads (and validates) the header for existing files.
For new files, it creates a new file (and header) using the type of
WAV file specified in the class constructor.
Note: if \p mode is StandardInput, StandardOutput or StandardError,
then the \p name parameter is ignored.
@return
true if the file was successfully opened.
*/
virtual PBoolean Open(
const PFilePath & name, ///< Name of file to open.
OpenMode mode = ReadWrite, ///< Mode in which to open the file.
int opts = ModeDefault ///< <code>OpenOptions</code> enum for open operation.
);
/** Close the file channel.
If a WAV file has been written to, this will update the header
to contain the correct size information.
@return true if close was OK.
*/
virtual PBoolean Close();
/**Set the current active position in the file for the next read or write
operation. The \p pos variable is a signed number which is
added to the specified origin. For \p origin == PFile::Start
only positive values for \p pos are meaningful. For
\p origin == PFile::End only negative values for
\p pos are meaningful.
Note that for a WAV file, the origin of the file is right after
the header. That is, the WAV header is not included when
perform SetPosition().
@return
true if the new file position was set.
*/
virtual PBoolean SetPosition(
off_t pos, ///< New position to set.
FilePositionOrigin origin = Start ///< Origin for position change.
);
/**Get the current active position in the file for the next read
or write operation. The WAV header is excluded from calculation
the position.
@return
current file position relative to the end of the WAV header.
*/
virtual off_t GetPosition() const;
//@}
/**@name Member variable access */
//@{
/**Find out the format of the WAV file. Eg 0x01 for PCM, 0x42 or 0x111 for G.723.1.
*/
virtual PBoolean SetFormat(unsigned fmt);
virtual PBoolean SetFormat(const PString & format);
/**Find out the format of the WAV file. Eg 0x01 for PCM, 0x42 or 0x111 for G.723.1.
*/
virtual unsigned GetFormat() const;
virtual PString GetFormatAsString() const;
/**Find out the number of channels the WAV file has. Typically this is 1 for
mono and 2 for stereo.
*/
virtual unsigned GetChannels() const;
virtual void SetChannels(unsigned v);
/**Find out the sample rate of the WAV file in Hz.
*/
virtual unsigned GetSampleRate() const;
virtual void SetSampleRate(unsigned v);
/**Find out how may bits there are per sample, eg 8 or 16.
*/
virtual unsigned GetSampleSize() const;
virtual void SetSampleSize(unsigned v);
/**Find out how may bytes there are per second
*/
virtual unsigned GetBytesPerSecond() const;
virtual void SetBytesPerSecond(unsigned v);
/**Find out the size of WAV header presented in the file.
*/
off_t GetHeaderLength() const;
/**Find out how many bytes of audio data there are.
*/
virtual off_t GetDataLength();
/**Determine if the WAV file is a valid wave file.
@return
true indicates that the WAV file is valid
false indicates that the WAV file is invalid
*/
PBoolean IsValid() const { return isValidWAV; }
/**Return a string that describes the WAV format
*/
PString GetFormatString() const
{ if (formatHandler == NULL) return PString("N/A"); else return formatHandler->GetFormatString(); }
/**Enable autoconversion between PCM-16 and the native format.
*/
void SetAutoconvert();
//@}
PBoolean RawRead(void * buf, PINDEX len);
PBoolean RawWrite(const void * buf, PINDEX len);
PBoolean FileRead(void * buf, PINDEX len);
PBoolean FileWrite(const void * buf, PINDEX len);
off_t RawGetPosition() const;
PBoolean RawSetPosition(off_t pos, FilePositionOrigin origin);
off_t RawGetDataLength();
void SetLastReadCount(PINDEX v) { lastReadCount = v; }
void SetLastWriteCount(PINDEX v) { lastWriteCount = v; }
// Restored for backward compatibility reasons
static PWAVFile * format(const PString & format);
static PWAVFile * format(const PString & format, PFile::OpenMode mode, int opts = PFile::ModeDefault);
protected:
void Construct();
bool SelectFormat(unsigned fmt);
bool SelectFormat(const PString & format);
PBoolean ProcessHeader();
PBoolean GenerateHeader();
PBoolean UpdateHeader();
PBYTEArray wavHeaderData;
PWAV::FMTChunk wavFmtChunk;
PBYTEArray extendedHeader;
bool isValidWAV;
unsigned int origFmt;
PWAVFileFormat * formatHandler;
PBoolean autoConvert;
PWAVFileConverter * autoConverter;
off_t lenHeader;
off_t lenData;
bool header_needs_updating;
friend class PWAVFileConverter;
};
#endif // PTLIB_PWAVFILE_H
// End Of File ///////////////////////////////////////////////////////////////
|