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
|
/*******************************************************************************
* Goggles Audio Player Library *
********************************************************************************
* Copyright (C) 2010-2021 by Sander Jansen. All Rights Reserved *
* --- *
* 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 3 of the License, 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 this program. If not, see http://www.gnu.org/licenses. *
********************************************************************************/
#include "ap_defs.h"
#include "ap_packet.h"
#include "ap_event_private.h"
#include "ap_reader_plugin.h"
#include "ap_input_plugin.h"
static FXshort alaw2lpcm(FXuchar value) {
FXshort t;
FXshort seg;
value ^= 0x55;
t = (value & 0xf) << 4;
seg = ((unsigned)value & 0x70) >> 4;
switch (seg) {
case 0:
t += 8;
break;
case 1:
t += 0x108;
break;
default:
t += 0x108;
t <<= seg - 1;
}
return ((value & 0x80) ? t : -t);
}
static FXshort ulaw2lpcm(FXuchar value) {
FXshort t;
value = ~value;
t = ((value & 0xf) << 3) + 0x84;
t <<= ((unsigned)value & 0x70) >> 4;
return ((value & 0x80) ? (0x84 - t) : (t - 0x84));
}
namespace ap {
class WavReader : public ReaderPlugin {
protected:
FXlong datasize; // size of the data section
FXlong input_start;
FXushort wavformat;
protected:
ReadStatus parse();
public:
WavReader(InputContext*);
FXbool init(InputPlugin*) override;
ReadStatus process(Packet*) override;
FXuchar format() const override { return Format::WAV; };
FXbool can_seek() const override;
FXbool seek(FXlong) override;
virtual ~WavReader();
};
enum {
WAV_FORMAT_PCM = 0x0001,
WAV_FORMAT_FLOAT = 0x0003,
WAV_FORMAT_ALAW = 0x0006,
WAV_FORMAT_ULAW = 0x0007,
WAV_FORMAT_EXTENSIBLE = 0xFFFE
};
typedef FXuchar ap_guid_t[16];
const ap_guid_t guid_wav_format_pcm={0x01,0x00,0x00,0x00,0x00,0x00,0x10,0x00,0x80,0x00,0x00,0xaa,0x00,0x38,0x9b,0x71};
const ap_guid_t guid_wav_format_float={0x03,0x00,0x00,0x00,0x00,0x00,0x10,0x00,0x80,0x00,0x00,0xaa,0x00,0x38,0x9b,0x71};
WavReader::WavReader(InputContext*ctx) : ReaderPlugin(ctx),datasize(0),input_start(0) {
}
WavReader::~WavReader(){
}
FXbool WavReader::init(InputPlugin*plugin) {
ReaderPlugin::init(plugin);
datasize=0;
input_start=0;
return true;
}
FXbool WavReader::can_seek() const {
return (datasize>0);
}
FXbool WavReader::seek(FXlong pos){
FXlong offset=input_start + FXCLAMP(0,pos*af.framesize(),datasize);
input->position(offset,FXIO::Begin);
return true;
}
ReadStatus WavReader::process(Packet*packet) {
if (!(flags&FLAG_PARSED)) {
if (parse()!=ReadOk)
return ReadError;
}
packet->af = af;
packet->stream_position = static_cast<FXint>( (input->position()-input_start) / af.framesize());
packet->stream_length = stream_length;
if (wavformat == WAV_FORMAT_ALAW) {
FXint nsamples = (packet->space() / af.framesize());
FXshort * data = packet->s16();
FXuchar value;FXint s;
for (s=0;s<nsamples;s++) {
FXint nread = input->read(&value,1);
if (nread<0) {
packet->unref();
return ReadError;
}
else if (nread==0) {
packet->wroteBytes(s*2);
packet->flags=FLAG_EOS;
context->post_packet(packet);
return ReadDone;
}
data[s] = alaw2lpcm(value);
}
packet->wroteBytes(s*2);
}
else if (wavformat == WAV_FORMAT_ULAW) {
FXint nsamples = (packet->space() / af.framesize());
FXshort * data = packet->s16();
FXuchar value;FXint s;
for (s=0;s<nsamples;s++) {
FXint nread = input->read(&value,1);
if (nread<0) {
packet->unref();
return ReadError;
}
else if (nread==0) {
packet->wroteBytes(s*2);
packet->flags=FLAG_EOS;
context->post_packet(packet);
return ReadDone;
}
data[s] = ulaw2lpcm(value);
}
packet->wroteBytes(s*2);
}
else {
FXint nbytes = (packet->space() / af.framesize()) * af.framesize();
FXint nread = input->read(packet->ptr(),nbytes);
if (nread<0) {
packet->unref();
return ReadError;
}
else if (nread==0){
packet->unref();
return ReadDone;
}
packet->wroteBytes(nread);
}
if (input->eof())
packet->flags=FLAG_EOS;
else
packet->flags=0;
context->post_packet(packet);
return ReadOk;
}
static FXuint get_channel_order(const FXuint wavmask,const FXuint channels){
/*
#define SPEAKER_FRONT_LEFT 0x1
#define SPEAKER_FRONT_RIGHT 0x2
#define SPEAKER_FRONT_CENTER 0x4
#define SPEAKER_LOW_FREQUENCY 0x8
#define SPEAKER_BACK_LEFT 0x10
#define SPEAKER_BACK_RIGHT 0x20
#define SPEAKER_FRONT_LEFT_OF_CENTER 0x40
#define SPEAKER_FRONT_RIGHT_OF_CENTER 0x80
#define SPEAKER_BACK_CENTER 0x100
#define SPEAKER_SIDE_LEFT 0x200
#define SPEAKER_SIDE_RIGHT 0x400
#define SPEAKER_TOP_CENTER 0x800
#define SPEAKER_TOP_FRONT_LEFT 0x1000
#define SPEAKER_TOP_FRONT_CENTER 0x2000
#define SPEAKER_TOP_FRONT_RIGHT 0x4000
#define SPEAKER_TOP_BACK_LEFT 0x8000
#define SPEAKER_TOP_BACK_CENTER 0x10000
#define SPEAKER_TOP_BACK_RIGHT 0x20000
#define SPEAKER_RESERVED 0x80000000
*/
GM_DEBUG_PRINT("[wav_reader] channel mask %u\n",wavmask);
static const FXuint wav_channel_order[]={
Channel::FrontLeft,
Channel::FrontRight,
Channel::FrontCenter,
Channel::LFE,
Channel::BackLeft,
Channel::BackRight,
Channel::None,
Channel::None,
Channel::BackCenter,
Channel::SideLeft,
Channel::SideRight
};
if (channels<1 || channels>8)
return 0;
if (wavmask==0) {
if (channels==1)
return AP_CMAP1(Channel::Mono);
else if (channels==2)
return AP_CMAP2(Channel::FrontLeft,Channel::FrontRight);
else
return 0;
}
FXuint order=0,cpos=0,cbit=0;
while(cpos<channels && cbit<11) {
if ((wavmask>>cbit)&0x1) {
// unsupported channel
if (wav_channel_order[cbit]==Channel::None)
return 0;
order|=wav_channel_order[cbit]<<(cpos<<2);
cpos++;
}
cbit++;
}
return (cpos==channels) ? order : 0;
}
ReadStatus WavReader::parse() {
FXchar chunkid[4];
FXuint chunksize;
FXushort channels;
FXuint rate;
FXuint byterate;
FXushort samplesize;
FXushort block;
ap_guid_t subconfig;
FXushort validbitspersample;
FXuint channelmask = 0;
FXuint channelorder = 0;
FXbool has_fmt=false;
GM_DEBUG_PRINT("parsing wav header\n");
if (input->read(&chunkid,4)!=4)
return ReadError;
if (input->read(&chunksize,4)!=4)
return ReadError;
if (FXString::compare(chunkid,"RIFF",4) && FXString::compare(chunkid,"RF64",4))
return ReadError;
if (input->read(&chunkid,4)!=4 || FXString::compare(chunkid,"WAVE",4))
return ReadError;
while(1) {
if (input->read(&chunkid,4)!=4)
return ReadError;
if (input->read(&chunksize,4)!=4)
return ReadError;
if (FXString::compare(chunkid,"data",4)==0) {
if (has_fmt==false)
return ReadError;
input_start = input->position();
switch(wavformat) {
case WAV_FORMAT_ALAW:
case WAV_FORMAT_ULAW:
{
af.set(AP_FORMAT_S16,rate,channels,channelorder);
} break;
case WAV_FORMAT_PCM :
{
if (samplesize>8)
af.set(Format::Signed|Format::Little,samplesize,samplesize>>3,rate,channels,channelorder);
else
af.set(Format::Unsigned|Format::Little,samplesize,samplesize>>3,rate,channels,channelorder);
} break;
case WAV_FORMAT_FLOAT:
{
if (samplesize!=32) {
GM_DEBUG_PRINT("unsupported float format with samplesize %d\n",samplesize);
return ReadError;
}
af.set(Format::Float|Format::Little,samplesize,samplesize>>3,rate,channels,channelorder);
} break;
case WAV_FORMAT_EXTENSIBLE:
{
if (memcmp(subconfig,guid_wav_format_pcm,16)==0) {
wavformat = WAV_FORMAT_PCM;
if (samplesize>8)
af.set(Format::Signed|Format::Little,validbitspersample,samplesize>>3,rate,channels,channelorder);
else
af.set(Format::Unsigned|Format::Little,validbitspersample,samplesize>>3,rate,channels,channelorder);
}
else if (memcmp(subconfig,guid_wav_format_float,16)==0) {
wavformat = WAV_FORMAT_FLOAT;
if (samplesize!=32) {
GM_DEBUG_PRINT("unsupported float format with samplesize %d\n",samplesize);
return ReadError;
}
af.set(Format::Float|Format::Little,validbitspersample,samplesize>>3,rate,channels,channelorder);
}
else
return ReadError;
} break;
default: return ReadError; break;
}
#ifdef DEBUG
af.debug();
if (block!=af.framesize())
GM_DEBUG_PRINT("[wav_reader] warning: blockalign not the same as framesize\n");
#endif
flags|=FLAG_PARSED;
stream_length=-1;
if (!input->serial()) {
datasize = FXMIN(input->size() - input_start,chunksize);
stream_length = (datasize) / af.framesize();
}
GM_DEBUG_PRINT("[wav_reader] stream_length %ld\n",stream_length);
context->post_configuration(new ConfigureEvent(af,Codec::PCM));
return ReadOk;
}
else if (FXString::compare(chunkid,"ds64",4)==0) {
input->position(chunksize,FXIO::Current);
}
else if (FXString::compare(chunkid,"fmt ",4)==0) {
if (input->read(&wavformat,2)!=2 || !(wavformat==WAV_FORMAT_PCM || wavformat==WAV_FORMAT_FLOAT || wavformat==WAV_FORMAT_ALAW || wavformat==WAV_FORMAT_ULAW || wavformat==WAV_FORMAT_EXTENSIBLE) ) {
GM_DEBUG_PRINT("[wav_reader] unsupported format: %x\n",wavformat);
return ReadError;
}
if (input->read(&channels,2)!=2)
return ReadError;
if (input->read(&rate,4)!=4)
return ReadError;
if (input->read(&byterate,4)!=4)
return ReadError;
if (input->read(&block,2)!=2)
return ReadError;
if (input->read(&samplesize,2)!=2)
return ReadError;
chunksize-=16;
// Require channelmask for channels>2
if (channels>2 && wavformat!=WAV_FORMAT_EXTENSIBLE) {
GM_DEBUG_PRINT("[wav_reader] unsupported %d channels without Extensible Format\n",channels);
return ReadError;
}
if (wavformat==WAV_FORMAT_EXTENSIBLE) {
if (input->read(&validbitspersample,2)!=2)
return ReadError;
if (input->read(&validbitspersample,2)!=2)
return ReadError;
if (input->read(&channelmask,4)!=4)
return ReadError;
if (input->read(&subconfig,16)!=16)
return ReadError;
// Make sure it's PCM or Float
if (memcmp(subconfig,guid_wav_format_pcm,16)!=0 && memcmp(subconfig,guid_wav_format_float,16)!=0)
return ReadError;
chunksize-=24;
}
GM_DEBUG_PRINT("chunksize left: %d\n",chunksize);
input->position(chunksize,FXIO::Current);
// Get the channel order
channelorder = get_channel_order(channelmask,channels);
if (channelorder==Channel::None) {
GM_DEBUG_PRINT("[wav_reader] unknown channel order\n");
return ReadError;
}
has_fmt=true;
}
else {
input->position(chunksize,FXIO::Current);
}
}
return ReadError;
}
ReaderPlugin * ap_wav_reader(InputContext * ctx) {
return new WavReader(ctx);
}
}
|