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
|
/*
* MOC - music on console
* Copyright (C) 2005 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.
*
*/
/* The code is based on libxmms-flac written by Josh Coalson. */
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <string.h>
#include <FLAC/all.h>
#include <stdlib.h>
#include <strings.h>
/*#define DEBUG*/
#include "common.h"
#include "audio.h"
#include "decoder.h"
#include "server.h"
#include "log.h"
#include "io.h"
#define MAX_SUPPORTED_CHANNELS 2
#define SAMPLES_PER_WRITE 512
#define SAMPLE_BUFFER_SIZE ((FLAC__MAX_BLOCK_SIZE + SAMPLES_PER_WRITE) * MAX_SUPPORTED_CHANNELS * (32/8))
struct flac_data
{
FLAC__StreamDecoder *decoder;
struct io_stream *stream;
int bitrate;
int avg_bitrate;
int abort; /* abort playing (due to an error) */
unsigned int length;
FLAC__uint64 total_samples;
FLAC__byte sample_buffer[SAMPLE_BUFFER_SIZE];
unsigned int sample_buffer_fill;
/* sound parameters */
unsigned int bits_per_sample;
unsigned int sample_rate;
unsigned int channels;
FLAC__uint64 last_decode_position;
int ok; /* was this stream successfully opened? */
struct decoder_error error;
};
/* Convert FLAC big-endian data into PCM little-endian. */
static size_t pack_pcm_signed (FLAC__byte *data,
const FLAC__int32 * const input[], unsigned int wide_samples,
unsigned int channels, unsigned int bps)
{
FLAC__byte * const start = data;
FLAC__int32 sample;
const FLAC__int32 *input_;
unsigned int samples, channel;
unsigned int bytes_per_sample;
unsigned int incr;
if (bps == 24)
bps = 32; /* we encode to 32-bit words */
bytes_per_sample = bps / 8;
incr = bytes_per_sample * channels;
for (channel = 0; channel < channels; channel++) {
samples = wide_samples;
data = start + bytes_per_sample * channel;
input_ = input[channel];
while(samples--) {
sample = *input_++;
switch(bps) {
case 8:
data[0] = sample;
break;
case 16:
data[1] = (FLAC__byte)(sample >> 8);
data[0] = (FLAC__byte)sample;
break;
case 32:
data[3] = (FLAC__byte)(sample >> 16);
data[2] = (FLAC__byte)(sample >> 8);
data[1] = (FLAC__byte)sample;
data[0] = 0;
break;
}
data += incr;
}
}
debug ("Converted %u bytes", wide_samples * channels * bytes_per_sample);
return wide_samples * channels * bytes_per_sample;
}
static FLAC__StreamDecoderWriteStatus write_cb (
const FLAC__StreamDecoder *unused ATTR_UNUSED,
const FLAC__Frame *frame,
const FLAC__int32 * const buffer[], void *client_data)
{
struct flac_data *data = (struct flac_data *)client_data;
const unsigned int wide_samples = frame->header.blocksize;
if (data->abort)
return FLAC__STREAM_DECODER_WRITE_STATUS_ABORT;
data->sample_buffer_fill = pack_pcm_signed (
data->sample_buffer, buffer, wide_samples,
data->channels, data->bits_per_sample);
return FLAC__STREAM_DECODER_WRITE_STATUS_CONTINUE;
}
static void metadata_cb (
const FLAC__StreamDecoder *unused ATTR_UNUSED,
const FLAC__StreamMetadata *metadata, void *client_data)
{
struct flac_data *data = (struct flac_data *)client_data;
if (metadata->type == FLAC__METADATA_TYPE_STREAMINFO) {
debug ("Got metadata info");
data->total_samples = metadata->data.stream_info.total_samples;
data->bits_per_sample = metadata->data.stream_info.bits_per_sample;
data->channels = metadata->data.stream_info.channels;
data->sample_rate = metadata->data.stream_info.sample_rate;
if (data->total_samples > 0)
data->length = data->total_samples / data->sample_rate;
}
}
static void error_cb (
const FLAC__StreamDecoder *unused ATTR_UNUSED,
FLAC__StreamDecoderErrorStatus status, void *client_data)
{
struct flac_data *data = (struct flac_data *)client_data;
if (status != FLAC__STREAM_DECODER_ERROR_STATUS_LOST_SYNC) {
debug ("Aborting due to error");
data->abort = 1;
}
else
decoder_error (&data->error, ERROR_FATAL, 0, "FLAC: lost sync");
}
static FLAC__StreamDecoderReadStatus read_cb (
const FLAC__StreamDecoder *unused ATTR_UNUSED,
FLAC__byte buffer[], size_t *bytes, void *client_data)
{
struct flac_data *data = (struct flac_data *)client_data;
ssize_t res;
res = io_read (data->stream, buffer, *bytes);
if (res > 0) {
*bytes = res;
return FLAC__STREAM_DECODER_READ_STATUS_CONTINUE;
}
if (res == 0) {
*bytes = 0;
/* not sure why this works, but if it ain't broke... */
return FLAC__STREAM_DECODER_READ_STATUS_END_OF_STREAM;
}
error ("read error: %s", io_strerror(data->stream));
return FLAC__STREAM_DECODER_READ_STATUS_ABORT;
}
static FLAC__StreamDecoderSeekStatus seek_cb (
const FLAC__StreamDecoder *unused ATTR_UNUSED,
FLAC__uint64 absolute_byte_offset, void *client_data)
{
struct flac_data *data = (struct flac_data *)client_data;
return io_seek(data->stream, absolute_byte_offset, SEEK_SET) >= 0
? FLAC__STREAM_DECODER_SEEK_STATUS_OK
: FLAC__STREAM_DECODER_SEEK_STATUS_ERROR;
}
static FLAC__StreamDecoderTellStatus tell_cb (
const FLAC__StreamDecoder *unused ATTR_UNUSED,
FLAC__uint64 *absolute_byte_offset, void *client_data)
{
struct flac_data *data = (struct flac_data *)client_data;
*absolute_byte_offset = io_tell (data->stream);
return FLAC__STREAM_DECODER_TELL_STATUS_OK;
}
static FLAC__StreamDecoderLengthStatus length_cb (
const FLAC__StreamDecoder *unused ATTR_UNUSED,
FLAC__uint64 *stream_length, void *client_data)
{
off_t file_size;
struct flac_data *data = (struct flac_data *)client_data;
file_size = io_file_size (data->stream);
if (file_size == -1)
return FLAC__STREAM_DECODER_LENGTH_STATUS_ERROR;
*stream_length = file_size;
return FLAC__STREAM_DECODER_LENGTH_STATUS_OK;
}
static FLAC__bool eof_cb (
const FLAC__StreamDecoder *unused ATTR_UNUSED,
void *client_data)
{
struct flac_data *data = (struct flac_data *)client_data;
return io_eof (data->stream);
}
static void *flac_open_internal (const char *file, const int buffered)
{
struct flac_data *data;
data = (struct flac_data *)xmalloc (sizeof(struct flac_data));
decoder_error_init (&data->error);
data->decoder = NULL;
data->bitrate = -1;
data->avg_bitrate = -1;
data->abort = 0;
data->sample_buffer_fill = 0;
data->last_decode_position = 0;
data->length = -1;
data->ok = 0;
data->stream = io_open (file, buffered);
if (!io_ok(data->stream)) {
decoder_error (&data->error, ERROR_FATAL, 0,
"Can't load file: %s", io_strerror(data->stream));
return data;
}
if (!(data->decoder = FLAC__stream_decoder_new())) {
decoder_error (&data->error, ERROR_FATAL, 0,
"FLAC__stream_decoder_new() failed");
return data;
}
FLAC__stream_decoder_set_md5_checking (data->decoder, false);
FLAC__stream_decoder_set_metadata_ignore_all (data->decoder);
FLAC__stream_decoder_set_metadata_respond (data->decoder,
FLAC__METADATA_TYPE_STREAMINFO);
if (FLAC__stream_decoder_init_stream(data->decoder, read_cb, seek_cb, tell_cb, length_cb, eof_cb, write_cb, metadata_cb, error_cb, data)
!= FLAC__STREAM_DECODER_INIT_STATUS_OK) {
decoder_error (&data->error, ERROR_FATAL, 0,
"FLAC__stream_decoder_init() failed");
return data;
}
if (!FLAC__stream_decoder_process_until_end_of_metadata(data->decoder)) {
decoder_error (&data->error, ERROR_FATAL, 0,
"FLAC__stream_decoder_process_until_end_of_metadata() failed.");
return data;
}
data->ok = 1;
if (data->length > 0) {
off_t data_size = io_file_size (data->stream);
if (data_size > 0) {
FLAC__uint64 pos;
if (FLAC__stream_decoder_get_decode_position (data->decoder, &pos))
data_size -= pos;
data->avg_bitrate = data_size * 8 / data->length;
}
}
return data;
}
static void *flac_open (const char *file)
{
return flac_open_internal (file, 1);
}
static void flac_close (void *void_data)
{
struct flac_data *data = (struct flac_data *)void_data;
if (data->decoder) {
FLAC__stream_decoder_finish (data->decoder);
FLAC__stream_decoder_delete (data->decoder);
}
io_close (data->stream);
decoder_error_clear (&data->error);
free (data);
}
static void fill_tag (FLAC__StreamMetadata_VorbisComment_Entry *comm,
struct file_tags *tags)
{
char *name, *value;
FLAC__byte *eq;
int value_length;
eq = memchr (comm->entry, '=', comm->length);
if (!eq)
return;
name = (char *)xmalloc (sizeof(char) * (eq - comm->entry + 1));
strncpy (name, (char *)comm->entry, eq - comm->entry);
name[eq - comm->entry] = 0;
value_length = comm->length - (eq - comm->entry + 1);
if (value_length == 0) {
free (name);
return;
}
value = (char *)xmalloc (sizeof(char) * (value_length + 1));
strncpy (value, (char *)(eq + 1), value_length);
value[value_length] = 0;
if (!strcasecmp(name, "title"))
tags->title = value;
else if (!strcasecmp(name, "artist"))
tags->artist = value;
else if (!strcasecmp(name, "album"))
tags->album = value;
else if (!strcasecmp(name, "tracknumber")
|| !strcasecmp(name, "track")) {
tags->track = atoi (value);
free (value);
}
else
free (value);
free (name);
}
static void get_vorbiscomments (const char *filename, struct file_tags *tags)
{
FLAC__Metadata_SimpleIterator *iterator
= FLAC__metadata_simple_iterator_new();
FLAC__bool got_vorbis_comments = false;
debug ("Reading comments for %s", filename);
if (!iterator) {
logit ("FLAC__metadata_simple_iterator_new() failed.");
return;
}
if (!FLAC__metadata_simple_iterator_init(iterator, filename, true,
true)) {
logit ("FLAC__metadata_simple_iterator_init failed.");
FLAC__metadata_simple_iterator_delete(iterator);
return;
}
do {
if (FLAC__metadata_simple_iterator_get_block_type(iterator)
== FLAC__METADATA_TYPE_VORBIS_COMMENT) {
FLAC__StreamMetadata *block;
block = FLAC__metadata_simple_iterator_get_block (
iterator);
if (block) {
unsigned int i;
const FLAC__StreamMetadata_VorbisComment *vc
= &block->data.vorbis_comment;
for (i = 0; i < vc->num_comments; i++)
fill_tag (&vc->comments[i], tags);
FLAC__metadata_object_delete (block);
got_vorbis_comments = true;
}
}
} while (!got_vorbis_comments
&& FLAC__metadata_simple_iterator_next(iterator));
FLAC__metadata_simple_iterator_delete(iterator);
}
static void flac_info (const char *file_name, struct file_tags *info,
const int tags_sel)
{
if (tags_sel & TAGS_TIME) {
struct flac_data *data;
data = flac_open_internal (file_name, 0);
if (data->ok)
info->time = data->length;
flac_close (data);
}
if (tags_sel & TAGS_COMMENTS)
get_vorbiscomments (file_name, info);
}
static int flac_seek (void *void_data, int sec)
{
struct flac_data *data = (struct flac_data *)void_data;
FLAC__uint64 target_sample;
if ((unsigned int)sec > data->length)
return -1;
target_sample = (FLAC__uint64)(((double)sec / (double)data->length) *
(double)data->total_samples);
if (FLAC__stream_decoder_seek_absolute(data->decoder, target_sample))
return sec;
logit ("FLAC__stream_decoder_seek_absolute() failed.");
return -1;
}
static int flac_decode (void *void_data, char *buf, int buf_len,
struct sound_params *sound_params)
{
struct flac_data *data = (struct flac_data *)void_data;
unsigned int to_copy;
int bytes_per_sample;
FLAC__uint64 decode_position;
bytes_per_sample = data->bits_per_sample / 8;
switch (bytes_per_sample) {
case 1:
sound_params->fmt = SFMT_S8;
break;
case 2:
sound_params->fmt = SFMT_S16 | SFMT_LE;
break;
case 3:
sound_params->fmt = SFMT_S32 | SFMT_LE;
break;
}
sound_params->rate = data->sample_rate;
sound_params->channels = data->channels;
decoder_error_clear (&data->error);
if (!data->sample_buffer_fill) {
debug ("decoding...");
if (FLAC__stream_decoder_get_state(data->decoder) == FLAC__STREAM_DECODER_END_OF_STREAM) {
logit ("EOF");
return 0;
}
if (!FLAC__stream_decoder_process_single(data->decoder)) {
decoder_error (&data->error, ERROR_FATAL, 0,
"Read error processing frame.");
return 0;
}
/* Count the bitrate */
if(!FLAC__stream_decoder_get_decode_position(data->decoder, &decode_position))
decode_position = 0;
if (decode_position > data->last_decode_position) {
int bytes_per_sec = bytes_per_sample * data->sample_rate
* data->channels;
data->bitrate = (decode_position
- data->last_decode_position) * 8.0
/ (data->sample_buffer_fill
/ (float)bytes_per_sec)
/ 1000;
}
data->last_decode_position = decode_position;
}
else
debug ("Some date remain in the buffer.");
debug ("Decoded %d bytes", data->sample_buffer_fill);
to_copy = MIN((unsigned int)buf_len, data->sample_buffer_fill);
memcpy (buf, data->sample_buffer, to_copy);
memmove (data->sample_buffer, data->sample_buffer + to_copy,
data->sample_buffer_fill - to_copy);
data->sample_buffer_fill -= to_copy;
return to_copy;
}
static int flac_get_bitrate (void *void_data)
{
struct flac_data *data = (struct flac_data *)void_data;
return data->bitrate;
}
static int flac_get_avg_bitrate (void *void_data)
{
struct flac_data *data = (struct flac_data *)void_data;
return data->avg_bitrate / 1000;
}
static int flac_get_duration (void *void_data)
{
int result = -1;
struct flac_data *data = (struct flac_data *)void_data;
if (data->ok)
result = data->length;
return result;
}
static void flac_get_name (const char *unused ATTR_UNUSED, char buf[4])
{
strcpy (buf, "FLC");
}
static int flac_our_format_ext (const char *ext)
{
return !strcasecmp (ext, "flac") || !strcasecmp (ext, "fla");
}
static int flac_our_format_mime (const char *mime)
{
return !strcasecmp (mime, "audio/flac") ||
!strncasecmp (mime, "audio/flac;", 11) ||
!strcasecmp (mime, "audio/x-flac") ||
!strncasecmp (mime, "audio/x-flac;", 13);
}
static void flac_get_error (void *prv_data, struct decoder_error *error)
{
struct flac_data *data = (struct flac_data *)prv_data;
decoder_error_copy (error, &data->error);
}
static struct decoder flac_decoder = {
DECODER_API_VERSION,
NULL,
NULL,
flac_open,
NULL,
NULL,
flac_close,
flac_decode,
flac_seek,
flac_info,
flac_get_bitrate,
flac_get_duration,
flac_get_error,
flac_our_format_ext,
flac_our_format_mime,
flac_get_name,
NULL,
NULL,
flac_get_avg_bitrate
};
struct decoder *plugin_init ()
{
return &flac_decoder;
}
|