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 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632
|
/*
* MOC - music on console
* Copyright (C) 2005, 2006 Damian Pietras <daper@daper.net>
*
* 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.
*
* This code is based on CMUS aac plugin Copyright 2006 dnk <dnk@bjum.net>
*
*/
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include <stdio.h>
#include <stdint.h>
#include <string.h>
#include <strings.h>
#include <assert.h>
#include <neaacdec.h>
#include <id3tag.h>
#define DEBUG
#include "common.h"
#include "decoder.h"
#include "io.h"
#include "log.h"
#include "files.h"
/* FAAD_MIN_STREAMSIZE == 768, 6 == # of channels */
#define BUFFER_SIZE (FAAD_MIN_STREAMSIZE * 6 * 4)
struct aac_data
{
struct io_stream *stream;
char rbuf[BUFFER_SIZE];
int rbuf_len;
int rbuf_pos;
int channels;
int sample_rate;
char *overflow_buf;
int overflow_buf_len;
NeAACDecHandle decoder; /* typedef void * */
int ok; /* was this stream successfully opened? */
struct decoder_error error;
int bitrate;
int avg_bitrate;
int duration;
};
static int buffer_length (const struct aac_data *data)
{
return data->rbuf_len - data->rbuf_pos;
}
static void *buffer_data (struct aac_data *data)
{
return data->rbuf + data->rbuf_pos;
}
static int buffer_fill (struct aac_data *data)
{
ssize_t n;
if (data->rbuf_pos > 0) {
data->rbuf_len = buffer_length (data);
memmove (data->rbuf, data->rbuf + data->rbuf_pos, data->rbuf_len);
data->rbuf_pos = 0;
}
if (data->rbuf_len == BUFFER_SIZE)
return 1;
n = io_read (data->stream, data->rbuf + data->rbuf_len, BUFFER_SIZE - data->rbuf_len);
if (n == -1)
return -1;
if (n == 0)
return 0;
data->rbuf_len += n;
return 1;
}
static inline void buffer_flush (struct aac_data *data)
{
data->rbuf_len = 0;
data->rbuf_pos = 0;
}
static inline void buffer_consume (struct aac_data *data, int n)
{
assert (n <= buffer_length(data));
data->rbuf_pos += n;
}
static int buffer_fill_min (struct aac_data *data, int len)
{
int rc;
assert (len < BUFFER_SIZE);
while (buffer_length(data) < len) {
rc = buffer_fill (data);
if (rc <= 0)
return rc;
}
return 1;
}
/* 'data' must point to at least 6 bytes of data */
static int parse_frame (const unsigned char data[6])
{
int len;
/* http://wiki.multimedia.cx/index.php?title=ADTS */
/* first 12 bits must be set */
if (data[0] != 0xFF)
return 0;
if ((data[1] & 0xF0) != 0xF0)
return 0;
/* layer is always '00' */
if ((data[1] & 0x06) != 0x00)
return 0;
/* frame length is stored in 13 bits */
len = data[3] << 11; /* ..1100000000000 */
len |= data[4] << 3; /* ..xx11111111xxx */
len |= data[5] >> 5; /* ..xxxxxxxxxx111 */
len &= 0x1FFF; /* 13 bits */
return len;
}
/* scans forward to the next aac frame and makes sure
* the entire frame is in the buffer.
*/
static int buffer_fill_frame(struct aac_data *data)
{
unsigned char *datap;
int rc, n, len;
int max = 32768;
while (1) {
/* need at least 6 bytes of data */
rc = buffer_fill_min(data, 6);
if (rc <= 0)
break;
len = buffer_length(data);
datap = buffer_data(data);
/* scan for a frame */
for (n = 0; n < len - 5; n++) {
/* give up after 32KB */
if (max-- == 0) {
logit ("no frame found!");
/* FIXME: set errno? */
return -1;
}
/* see if there's a frame at this location */
rc = parse_frame(datap + n);
if (rc == 0)
continue;
/* found a frame, consume all data up to the frame */
buffer_consume (data, n);
/* rc == frame length */
rc = buffer_fill_min (data, rc);
if (rc <= 0)
goto end;
return 1;
}
/* consume what we used */
buffer_consume (data, n);
}
end:
return rc;
}
/* This should be called with a unique decoder instance as the seeking
* it does triggers an FAAD bug which results in distorted audio due to
* retained state being corrupted. (One suspects NeAACDecPostSeekReset()
* should resolve the problem but experimentation suggests not and no
* documentation exists describing its use.) */
static int aac_count_time (struct aac_data *data)
{
NeAACDecFrameInfo frame_info;
int samples = 0, bytes = 0, frames = 0;
off_t file_size;
int16_t *sample_buf;
file_size = io_file_size (data->stream);
if (file_size == -1)
return -1;
if (io_seek(data->stream, file_size / 2, SEEK_SET) == -1)
return -1;
buffer_flush (data);
/* Guess track length by decoding the middle 50 frames which have
* more than 25% of non-zero samples having absolute values greater
* than 16. */
while (frames < 50) {
if (buffer_fill_frame (data) <= 0)
break;
sample_buf = NeAACDecDecode (data->decoder, &frame_info,
buffer_data (data), buffer_length (data));
if (frame_info.error == 0 && frame_info.samples > 0) {
unsigned int ix, zeroes = 0;
for (ix = 0; ix < frame_info.samples; ix += 1) {
if (sample_buf[ix] != 0 && RANGE(-16, sample_buf[ix], 16))
zeroes += 1;
}
if (zeroes * 4 < frame_info.samples) {
samples += frame_info.samples;
bytes += frame_info.bytesconsumed;
frames += 1;
}
}
if (frame_info.bytesconsumed == 0)
break;
buffer_consume (data, frame_info.bytesconsumed);
}
if (frames == 0)
return -1;
samples /= frames;
samples /= data->channels;
bytes /= frames;
return ((file_size / bytes) * samples) / data->sample_rate;
}
static struct aac_data *aac_open_internal (struct io_stream *stream,
const char *fname, bool timing_only)
{
struct aac_data *data;
NeAACDecConfigurationPtr neaac_cfg;
unsigned char channels;
unsigned long sample_rate;
int n;
/* init private struct */
data = xcalloc (1, sizeof *data);
data->decoder = NeAACDecOpen();
/* set decoder config */
neaac_cfg = NeAACDecGetCurrentConfiguration(data->decoder);
neaac_cfg->outputFormat = FAAD_FMT_16BIT; /* force 16 bit audio */
neaac_cfg->downMatrix = !timing_only; /* 5.1 -> stereo */
neaac_cfg->dontUpSampleImplicitSBR = 0; /* upsample, please! */
NeAACDecSetConfiguration(data->decoder, neaac_cfg);
if (stream)
data->stream = stream;
else {
data->stream = io_open (fname, 1);
if (!io_ok(data->stream)) {
decoder_error (&data->error, ERROR_FATAL, 0,
"Can't open AAC file: %s", io_strerror(data->stream));
return data;
}
}
/* find a frame */
if (buffer_fill_frame(data) <= 0) {
decoder_error (&data->error, ERROR_FATAL, 0,
"Not a valid (or unsupported) AAC file");
return data;
}
/* in case of a bug, make sure there is at least some data
* in the buffer for NeAACDecInit() to work with.
*/
if (buffer_fill_min(data, 256) <= 0) {
decoder_error (&data->error, ERROR_FATAL, 0,
"AAC file/stream too short");
return data;
}
/* init decoder, returns the length of the header (if any) */
channels = (unsigned char)data->channels;
sample_rate = data->sample_rate;
n = NeAACDecInit (data->decoder, buffer_data(data), buffer_length(data),
&sample_rate, &channels);
data->channels = channels;
data->sample_rate = (int)sample_rate;
if (n < 0) {
decoder_error (&data->error, ERROR_FATAL, 0,
"libfaad can't open this stream");
return data;
}
if (!timing_only) {
if (data->channels == 6) {
logit ("sample rate %dHz, channels %d (downmixed to stereo)",
data->sample_rate, data->channels);
data->channels = 2;
}
else
logit ("sample rate %dHz, channels %d",
data->sample_rate, data->channels);
}
if (!data->sample_rate || !data->channels) {
decoder_error (&data->error, ERROR_FATAL, 0,
"Invalid AAC sound parameters");
return data;
}
/* skip the header */
logit ("skipping header (%d bytes)", n);
buffer_consume (data, n);
/*NeAACDecInitDRM(data->decoder, data->sample_rate, data->channels);*/
data->ok = 1;
return data;
}
static void aac_close (void *prv_data)
{
struct aac_data *data = (struct aac_data *)prv_data;
NeAACDecClose (data->decoder);
io_close (data->stream);
decoder_error_clear (&data->error);
free (data);
}
static void *aac_open (const char *file)
{
struct aac_data *data;
data = aac_open_internal (NULL, file, true);
if (data->ok) {
int duration = -1;
int avg_bitrate = -1;
off_t file_size;
duration = aac_count_time (data);
file_size = io_file_size (data->stream);
if (duration > 0 && file_size != -1)
avg_bitrate = file_size / duration * 8;
aac_close (data);
data = aac_open_internal (NULL, file, false);
data->duration = duration;
data->avg_bitrate = avg_bitrate;
}
return data;
}
static void *aac_open_stream (struct io_stream *stream)
{
assert (stream != NULL);
return aac_open_internal (stream, NULL, false);
}
static char *get_tag (struct id3_tag *tag, const char *what)
{
struct id3_frame *frame;
union id3_field *field;
const id3_ucs4_t *ucs4;
char *comm = NULL;
frame = id3_tag_findframe (tag, what, 0);
if (frame && (field = &frame->fields[1])) {
ucs4 = id3_field_getstrings (field, 0);
if (ucs4)
comm = (char *)id3_ucs4_utf8duplicate (ucs4);
}
return comm;
}
/* Fill info structure with data from aac comments */
static void aac_info (const char *file_name,
struct file_tags *info,
const int tags_sel)
{
if (tags_sel & TAGS_COMMENTS) {
struct id3_tag *tag;
struct id3_file *id3file;
char *track = NULL;
id3file = id3_file_open (file_name, ID3_FILE_MODE_READONLY);
if (!id3file)
return;
tag = id3_file_tag (id3file);
if (tag) {
info->artist = get_tag (tag, ID3_FRAME_ARTIST);
info->title = get_tag (tag, ID3_FRAME_TITLE);
info->album = get_tag (tag, ID3_FRAME_ALBUM);
track = get_tag (tag, ID3_FRAME_TRACK);
if (track) {
char *end;
info->track = strtol (track, &end, 10);
if (end == track)
info->track = -1;
free (track);
}
}
id3_file_close (id3file);
}
if (tags_sel & TAGS_TIME) {
struct aac_data *data;
data = aac_open_internal (NULL, file_name, true);
if (data->ok)
info->time = aac_count_time (data);
else
logit ("%s", decoder_error_text (&data->error));
aac_close (data);
}
}
static int aac_seek (void *unused ATTR_UNUSED, int sec ASSERT_ONLY)
{
assert (sec >= 0);
/* AAC will probably never be able to seek. There is no way of
* relating the time in the audio to the position in the file
* short of pre-processing the file at open and building a seek
* table. Even then, seeking in the file causes audio glitches
* (see aac_count_time()). */
return -1;
}
/* returns -1 on fatal errors
* returns -2 on non-fatal errors
* 0 on eof
* number of bytes put in 'buffer' on success */
static int decode_one_frame (struct aac_data *data, void *buffer, int count)
{
unsigned char *aac_data;
unsigned int aac_data_size;
NeAACDecFrameInfo frame_info;
char *sample_buf;
int bytes, rc;
rc = buffer_fill_frame (data);
if (rc <= 0)
return rc;
aac_data = buffer_data (data);
aac_data_size = buffer_length (data);
/* aac data -> raw pcm */
sample_buf = NeAACDecDecode (data->decoder, &frame_info,
aac_data, aac_data_size);
buffer_consume (data, frame_info.bytesconsumed);
if (!sample_buf || frame_info.bytesconsumed <= 0) {
decoder_error (&data->error, ERROR_FATAL, 0, "%s",
NeAACDecGetErrorMessage (frame_info.error));
return -1;
}
if (frame_info.error != 0) {
decoder_error (&data->error, ERROR_STREAM, 0, "%s",
NeAACDecGetErrorMessage (frame_info.error));
return -2;
}
if (frame_info.samples <= 0)
return -2;
if (frame_info.channels != (unsigned char)data->channels ||
frame_info.samplerate != (unsigned long)data->sample_rate) {
decoder_error (&data->error, ERROR_STREAM, 0, "%s",
"Invalid channel or sample_rate count");
return -2;
}
/* 16-bit samples */
bytes = frame_info.samples * 2;
if (bytes > count) {
/* decoded too much, keep overflow */
data->overflow_buf = sample_buf + count;
data->overflow_buf_len = bytes - count;
memcpy (buffer, sample_buf, count);
return count;
}
memcpy (buffer, sample_buf, bytes);
data->bitrate = frame_info.bytesconsumed * 8 / (bytes / 2.0 /
data->channels / data->sample_rate) / 1000;
return bytes;
}
static int aac_decode (void *prv_data, char *buf, int buf_len,
struct sound_params *sound_params)
{
struct aac_data *data = (struct aac_data *)prv_data;
int rc;
decoder_error_clear (&data->error);
sound_params->channels = data->channels;
sound_params->rate = data->sample_rate;
sound_params->fmt = SFMT_S16 | SFMT_NE;
/* use overflow from previous call (if any) */
if (data->overflow_buf_len) {
int len;
len = MIN(data->overflow_buf_len, buf_len);
memcpy (buf, data->overflow_buf, len);
data->overflow_buf += len;
data->overflow_buf_len -= len;
return len;
}
do {
rc = decode_one_frame (data, buf, buf_len);
} while (rc == -2);
return MAX(rc, 0);
}
static int aac_get_bitrate (void *prv_data)
{
struct aac_data *data = (struct aac_data *)prv_data;
return data->bitrate;
}
static int aac_get_avg_bitrate (void *prv_data)
{
struct aac_data *data = (struct aac_data *)prv_data;
return data->avg_bitrate / 1000;
}
static int aac_get_duration (void *prv_data)
{
struct aac_data *data = (struct aac_data *)prv_data;
return data->duration;
}
static void aac_get_name (const char *unused ATTR_UNUSED, char buf[4])
{
strcpy (buf, "AAC");
}
static int aac_our_format_ext (const char *ext)
{
return !strcasecmp (ext, "aac");
}
static void aac_get_error (void *prv_data, struct decoder_error *error)
{
struct aac_data *data = (struct aac_data *)prv_data;
decoder_error_copy (error, &data->error);
}
static int aac_our_mime (const char *mime)
{
return !strcasecmp (mime, "audio/aac")
|| !strncasecmp (mime, "audio/aac;", 10)
|| !strcasecmp (mime, "audio/aacp")
|| !strncasecmp (mime, "audio/aacp;", 11);
}
static struct decoder aac_decoder = {
DECODER_API_VERSION,
NULL,
NULL,
aac_open,
aac_open_stream,
NULL,
aac_close,
aac_decode,
aac_seek,
aac_info,
aac_get_bitrate,
aac_get_duration,
aac_get_error,
aac_our_format_ext,
aac_our_mime,
aac_get_name,
NULL,
NULL,
aac_get_avg_bitrate
};
struct decoder *plugin_init ()
{
return &aac_decoder;
}
|