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 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886
|
/*****************************************************************
* gmerlin-avdecoder - a general purpose multimedia decoding library
*
* Copyright (c) 2001 - 2012 Members of the Gmerlin project
* gmerlin-general@lists.sourceforge.net
* http://gmerlin.sourceforge.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 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 <limits.h>
#include <stdlib.h>
#include <string.h>
#include <vorbis/codec.h>
#include <vorbis/vorbisenc.h>
#include <config.h>
#include <avdec_private.h>
#include <codecs.h>
#include <vorbis_comment.h>
#include <stdio.h>
#define LOG_DOMAIN "vorbis"
// #define DUMP_OUTPUT
// #define DUMP_PACKET
typedef struct
{
ogg_sync_state dec_oy; /* sync and verify incoming physical bitstream */
ogg_stream_state dec_os; /* take physical pages, weld into a logical
stream of packets */
ogg_page dec_og; /* one Ogg bitstream page. Vorbis packets are inside */
ogg_packet dec_op; /* one raw packet of data for decode */
vorbis_info dec_vi; /* struct that stores all the static vorbis bitstream
settings */
vorbis_comment dec_vc; /* struct that stores all the bitstream user comments */
vorbis_dsp_state dec_vd; /* central working state for the packet->PCM decoder */
vorbis_block dec_vb; /* local working space for packet->PCM decode */
int stream_initialized;
bgav_packet_t p;
uint8_t * packet_ptr;
int64_t packetno;
} vorbis_audio_priv;
/*
* The following function comes at the very end, because it's
* not that nice :-)
* (Ported from the Vorbis ACM codec)
*/
static char * get_default_vorbis_header(bgav_stream_t * stream, int *len);
/* Put raw streams into the sync engine */
static gavl_source_status_t read_data(bgav_stream_t * s)
{
gavl_source_status_t st;
char * buffer;
bgav_packet_t * p;
vorbis_audio_priv * priv;
priv = s->decoder_priv;
if((st = bgav_stream_get_packet_read(s, &p)) != GAVL_SOURCE_OK)
return st;
buffer = ogg_sync_buffer(&priv->dec_oy, p->data_size);
memcpy(buffer, p->data, p->data_size);
ogg_sync_wrote(&priv->dec_oy, p->data_size);
bgav_stream_done_packet_read(s, p);
return GAVL_SOURCE_OK;
}
static gavl_source_status_t next_page(bgav_stream_t * s)
{
gavl_source_status_t st;
int result = 0;
vorbis_audio_priv * priv;
priv = s->decoder_priv;
while(result < 1)
{
result = ogg_sync_pageout(&priv->dec_oy, &priv->dec_og);
if(result == 0)
{
if((st = read_data(s)) != GAVL_SOURCE_OK)
return st;
}
else
{
/* Initialitze stream state */
if(!priv->stream_initialized)
{
ogg_stream_init(&priv->dec_os, ogg_page_serialno(&priv->dec_og));
priv->stream_initialized = 1;
}
ogg_stream_pagein(&priv->dec_os, &priv->dec_og);
}
}
return GAVL_SOURCE_OK;
}
static gavl_source_status_t next_packet(bgav_stream_t * s)
{
gavl_source_status_t st;
int result = 0;
vorbis_audio_priv * priv;
priv = s->decoder_priv;
if(s->fourcc == BGAV_VORBIS)
{
if(!priv->dec_op.bytes)
{
bgav_packet_t * p = NULL;
if((st = bgav_stream_get_packet_read(s, &p)) != GAVL_SOURCE_OK)
return st;
#ifdef DUMP_PACKET
bgav_dprintf("vorbis: Got packet: %p ", p);
bgav_packet_dump(p);
#endif
bgav_packet_reset(&priv->p);
bgav_packet_copy(&priv->p, p);
memset(&priv->dec_op, 0, sizeof(priv->dec_op));
priv->dec_op.bytes = priv->p.data_size;
priv->dec_op.packet = priv->p.data;
priv->dec_op.granulepos = priv->p.pts + priv->p.duration;
priv->dec_op.packetno = priv->packetno++;
priv->dec_op.e_o_s = 0;
priv->packetno++;
bgav_stream_done_packet_read(s, p);
}
st = bgav_stream_peek_packet_read(s, NULL, 1);
switch(st)
{
case GAVL_SOURCE_AGAIN:
return GAVL_SOURCE_AGAIN;
break;
case GAVL_SOURCE_EOF:
priv->dec_op.e_o_s = 1;
case GAVL_SOURCE_OK: // Fall through
return GAVL_SOURCE_OK;
break;
}
}
else
{
while(result < 1)
{
result = ogg_stream_packetout(&priv->dec_os, &priv->dec_op);
if(result == 0)
{
if((st = next_page(s)) != GAVL_SOURCE_OK)
return st;
}
}
}
return GAVL_SOURCE_OK;
}
static int init_vorbis(bgav_stream_t * s)
{
uint8_t * ptr;
char * buffer;
char * default_header;
int default_header_len;
uint32_t header_sizes[3];
uint32_t len;
uint32_t fourcc;
vorbis_audio_priv * priv;
priv = calloc(1, sizeof(*priv));
ogg_sync_init(&priv->dec_oy);
vorbis_info_init(&priv->dec_vi);
vorbis_comment_init(&priv->dec_vc);
s->decoder_priv = priv;
/* Heroine Virtual way:
The 3 header packets are in the first audio chunk */
if((s->fourcc == BGAV_MK_FOURCC('O','g', 'g', 'S')) ||
(s->fourcc == BGAV_WAVID_2_FOURCC(0x674f)) || /* mode 1 */
(s->fourcc == BGAV_WAVID_2_FOURCC(0x676f))) /* mode 1+ */
{
if(!next_page(s))
return 0;
if(!next_packet(s))
return 0;
/* Initialize vorbis */
if(vorbis_synthesis_headerin(&priv->dec_vi, &priv->dec_vc,
&priv->dec_op) < 0)
{
gavl_log(GAVL_LOG_ERROR, LOG_DOMAIN, "decode: vorbis_synthesis_headerin: not a vorbis header");
return 0;
}
if(!next_packet(s))
return 0;
vorbis_synthesis_headerin(&priv->dec_vi, &priv->dec_vc, &priv->dec_op);
if(!next_packet(s))
return 0;
vorbis_synthesis_headerin(&priv->dec_vi, &priv->dec_vc, &priv->dec_op);
}
/*
* AVI way:
* Header packets are in extradata:
* starting with byte 22 if ext_data, we first have
* 3 uint32_ts for the packet sizes, followed by the raw
* packets
*/
else if(s->fourcc == BGAV_MK_FOURCC('V', 'O', 'R', 'B'))
{
if(s->ci.global_header_len < 3 * sizeof(uint32_t))
{
gavl_log(GAVL_LOG_ERROR, LOG_DOMAIN, "Vorbis decoder: Init data too small (%d bytes)", s->ci.global_header_len);
return 0;
}
// gavl_hexdump(s->ext_data, s->ci.global_header_len, 16);
ptr = s->ci.global_header;
header_sizes[0] = GAVL_PTR_2_32LE(ptr);ptr+=4;
header_sizes[1] = GAVL_PTR_2_32LE(ptr);ptr+=4;
header_sizes[2] = GAVL_PTR_2_32LE(ptr);ptr+=4;
priv->dec_op.packet = ptr;
priv->dec_op.b_o_s = 1;
priv->dec_op.bytes = header_sizes[0];
if(vorbis_synthesis_headerin(&priv->dec_vi, &priv->dec_vc,
&priv->dec_op) < 0)
{
gavl_log(GAVL_LOG_ERROR, LOG_DOMAIN, "decode: vorbis_synthesis_headerin: not a vorbis header");
return 1;
}
ptr += header_sizes[0];
priv->dec_op.packet = ptr;
priv->dec_op.b_o_s = 0;
priv->dec_op.bytes = header_sizes[1];
vorbis_synthesis_headerin(&priv->dec_vi, &priv->dec_vc,
&priv->dec_op);
ptr += header_sizes[1];
priv->dec_op.packet = ptr;
priv->dec_op.b_o_s = 0;
priv->dec_op.bytes = header_sizes[2];
vorbis_synthesis_headerin(&priv->dec_vi, &priv->dec_vc,
&priv->dec_op);
// ptr += header_sizes[1];
}
/* AVI Vorbis mode 2: Codec data in extradata starting with byte 8 */
/* (bytes 0 - 7 are acm version and libvorbis version, both 32 bit) */
else if((s->fourcc == BGAV_WAVID_2_FOURCC(0x6750)) ||
(s->fourcc == BGAV_WAVID_2_FOURCC(0x6770)))
{
if(s->ci.global_header_len <= 8)
{
gavl_log(GAVL_LOG_ERROR, LOG_DOMAIN, "ext size too small");
return 0;
}
buffer = ogg_sync_buffer(&priv->dec_oy, s->ci.global_header_len - 8);
memcpy(buffer, s->ci.global_header + 8, s->ci.global_header_len - 8);
ogg_sync_wrote(&priv->dec_oy, s->ci.global_header_len - 8);
if(!next_page(s))
return 0;
if(!next_packet(s))
return 0;
/* Initialize vorbis */
if(vorbis_synthesis_headerin(&priv->dec_vi, &priv->dec_vc,
&priv->dec_op) < 0)
{
gavl_log(GAVL_LOG_ERROR, LOG_DOMAIN, "decode: vorbis_synthesis_headerin: not a vorbis header");
return 0;
}
if(!next_packet(s))
return 0;
vorbis_synthesis_headerin(&priv->dec_vi, &priv->dec_vc, &priv->dec_op);
if(!next_packet(s))
return 0;
vorbis_synthesis_headerin(&priv->dec_vi, &priv->dec_vc, &priv->dec_op);
}
#if 1
/* This is the most ugly method (AVI vorbis Mode 3): There is no header inside
the file. Instead, an encoder is created from the stream data.
*/
else if((s->fourcc == BGAV_WAVID_2_FOURCC(0x6751)) ||
(s->fourcc == BGAV_WAVID_2_FOURCC(0x6771)))
{
default_header = get_default_vorbis_header(s, &default_header_len);
buffer = ogg_sync_buffer(&priv->dec_oy, default_header_len);
memcpy(buffer, default_header, default_header_len);
ogg_sync_wrote(&priv->dec_oy, default_header_len);
free(default_header);
if(!next_page(s))
return 0;
if(!next_packet(s))
return 0;
/* Initialize vorbis */
if(vorbis_synthesis_headerin(&priv->dec_vi, &priv->dec_vc,
&priv->dec_op) < 0)
{
gavl_log(GAVL_LOG_ERROR, LOG_DOMAIN, "decode: vorbis_synthesis_headerin: not a vorbis header");
return 0;
}
if(!next_packet(s))
return 0;
vorbis_synthesis_headerin(&priv->dec_vi, &priv->dec_vc, &priv->dec_op);
if(!next_packet(s))
return 0;
vorbis_synthesis_headerin(&priv->dec_vi, &priv->dec_vc, &priv->dec_op);
}
#endif
/*
* OggV method (qtcomponents.sf.net):
* In the sample description, we have an atom of type
* 'wave', which is parsed by the demuxer.
* Inside this atom, there is an atom 'OVHS', which
* containes the header packets encapsulated in
* ogg pages
*/
else if(s->fourcc == BGAV_MK_FOURCC('O','g','g','V'))
{
ptr = s->ci.global_header;
len = GAVL_PTR_2_32BE(ptr);ptr+=4;
fourcc = BGAV_PTR_2_FOURCC(ptr);ptr+=4;
if(fourcc != BGAV_MK_FOURCC('O','V','H','S'))
{
gavl_log(GAVL_LOG_ERROR, LOG_DOMAIN, "No OVHS Atom found");
return 0;
}
buffer = ogg_sync_buffer(&priv->dec_oy, len - 8);
memcpy(buffer, ptr, len - 8);
ogg_sync_wrote(&priv->dec_oy, len - 8);
if(!next_page(s))
return 0;
if(!next_packet(s))
return 0;
/* Initialize vorbis */
if(vorbis_synthesis_headerin(&priv->dec_vi, &priv->dec_vc,
&priv->dec_op) < 0)
{
gavl_log(GAVL_LOG_ERROR, LOG_DOMAIN, "decode: vorbis_synthesis_headerin: not a vorbis header");
return 0;
}
if(!next_packet(s))
return 0;
vorbis_synthesis_headerin(&priv->dec_vi, &priv->dec_vc, &priv->dec_op);
if(!next_packet(s))
return 0;
vorbis_synthesis_headerin(&priv->dec_vi, &priv->dec_vc, &priv->dec_op);
}
/* BGAV Way: Header packets are in extradata in a segemented packet */
else if(s->fourcc == BGAV_VORBIS)
{
ogg_packet op;
int i;
int len;
memset(&op, 0, sizeof(op));
if(!s->ci.global_header)
{
gavl_log(GAVL_LOG_ERROR, LOG_DOMAIN, "No extradata found");
return 0;
}
ptr = s->ci.global_header;
op.b_o_s = 1;
// gavl_hexdump(s->ci.global_header, 64, 16);
for(i = 0; i < 3; i++)
{
if(i)
op.b_o_s = 0;
op.packet = gavl_extract_xiph_header(s->ci.global_header, s->ci.global_header_len,
i, &len);
op.bytes = len;
if(vorbis_synthesis_headerin(&priv->dec_vi, &priv->dec_vc,
&op) < 0)
{
gavl_log(GAVL_LOG_ERROR, LOG_DOMAIN,
"Packet %d is not a vorbis header", i+1);
return 0;
}
op.packetno++;
}
}
vorbis_synthesis_init(&priv->dec_vd, &priv->dec_vi);
vorbis_block_init(&priv->dec_vd, &priv->dec_vb);
// #ifdef HAVE_VORBIS_SYNTHESIS_RESTART
// vorbis_synthesis_restart(&priv->dec_vd);
// #endif
s->data.audio.format->sample_format = GAVL_SAMPLE_FLOAT;
s->data.audio.format->interleave_mode = GAVL_INTERLEAVE_NONE;
s->data.audio.format->samples_per_frame = 2048;
/* Set up audio format from the vorbis header overriding previous values */
s->data.audio.format->samplerate = priv->dec_vi.rate;
s->data.audio.format->num_channels = priv->dec_vi.channels;
/* Samples per frame is just the maximum */
s->src_flags |= GAVL_SOURCE_SRC_FRAMESIZE_MAX;
/* Vorbis 5.1 mapping */
bgav_vorbis_set_channel_setup(s->data.audio.format);
gavl_set_channel_setup(s->data.audio.format);
gavl_dictionary_set_string(s->m, GAVL_META_FORMAT, "Ogg Vorbis");
/* Preroll */
/* Samples of packet N is (blocksize[n-1]+blocksize[n])/4
Largest Block size: bz[1]
Largest Packet size: (bz[1]+bz[1])/4 = bz[1]/2
2 packets: bz[1]
*/
s->data.audio.preroll = vorbis_info_blocksize(&priv->dec_vi, 1);
return 1;
}
static gavl_source_status_t decode_frame_vorbis(bgav_stream_t * s)
{
vorbis_audio_priv * priv;
float ** channels;
int i;
gavl_source_status_t st;
int samples_decoded = 0;
priv = s->decoder_priv;
/* Decode stuff */
while(1)
{
samples_decoded =
vorbis_synthesis_pcmout(&priv->dec_vd, &channels);
if(samples_decoded > 0)
break;
// fprintf(stderr, "decode_frame_vorbis %ld\n", priv->dec_op.granulepos);
if((st = next_packet(s)) != GAVL_SOURCE_OK)
return st;
if(vorbis_synthesis(&priv->dec_vb, &priv->dec_op) == 0)
{
vorbis_synthesis_blockin(&priv->dec_vd,
&priv->dec_vb);
}
/* Reset bytes so we know that we ate this packet */
priv->dec_op.bytes = 0;
}
for(i = 0; i < s->data.audio.format->num_channels; i++)
s->data.audio.frame->channels.f[i] = channels[i];
vorbis_synthesis_read(&priv->dec_vd, samples_decoded);
s->data.audio.frame->valid_samples = samples_decoded;
/* This can happen for the last packet */
if(priv->dec_op.e_o_s && (s->data.audio.frame->valid_samples > priv->p.duration))
s->data.audio.frame->valid_samples = priv->p.duration;
#ifdef DUMP_OUTPUT
bgav_dprintf("Vorbis samples decoded: %d\n",
s->data.audio.frame->valid_samples);
#endif
return GAVL_SOURCE_OK;
}
static void resync_vorbis(bgav_stream_t * s)
{
vorbis_audio_priv * priv;
priv = s->decoder_priv;
priv->dec_op.bytes = 0;
if(s->fourcc == BGAV_VORBIS)
{
priv->packetno = 0;
}
else
{
ogg_stream_clear(&priv->dec_os);
ogg_sync_reset(&priv->dec_oy);
priv->stream_initialized = 0;
if(!next_page(s))
return;
ogg_sync_init(&priv->dec_oy);
ogg_stream_init(&priv->dec_os, ogg_page_serialno(&priv->dec_og));
}
#ifdef HAVE_VORBIS_SYNTHESIS_RESTART
vorbis_synthesis_restart(&priv->dec_vd);
#else
vorbis_dsp_clear(&priv->dec_vd);
vorbis_block_clear(&priv->dec_vb);
vorbis_synthesis_init(&priv->dec_vd, &priv->dec_vi);
vorbis_block_init(&priv->dec_vd, &priv->dec_vb);
#endif
/* Skip until we can cleanly decode */
if(s->fourcc == BGAV_VORBIS)
{
bgav_packet_t * p;
int samples_decoded;
float ** channels;
gavl_source_status_t st;
if(!next_packet(s))
return;
if(vorbis_synthesis(&priv->dec_vb, &priv->dec_op) == 0)
{
// fprintf(stderr, "Resync: blockin\n");
vorbis_synthesis_blockin(&priv->dec_vd,
&priv->dec_vb);
}
samples_decoded =
vorbis_synthesis_pcmout(&priv->dec_vd, &channels);
// fprintf(stderr, "Samples decoded after resync %d\n", samples_decoded);
vorbis_synthesis_read(&priv->dec_vd, samples_decoded);
/* Synchronize output time to the next packet */
p = NULL;
if((st = bgav_stream_peek_packet_read(s, &p, 1)) == GAVL_SOURCE_OK)
{
s->out_time = p->pts;
// fprintf(stderr, "Vorbis resync PTS: %"PRId64"\n", p->pts);
}
}
}
static void close_vorbis(bgav_stream_t * s)
{
vorbis_audio_priv * priv;
priv = s->decoder_priv;
ogg_stream_clear(&priv->dec_os);
ogg_sync_clear(&priv->dec_oy);
vorbis_block_clear(&priv->dec_vb);
vorbis_dsp_clear(&priv->dec_vd);
vorbis_comment_clear(&priv->dec_vc);
vorbis_info_clear(&priv->dec_vi);
bgav_packet_free(&priv->p);
free(priv);
}
static bgav_audio_decoder_t decoder =
{
.fourccs = (uint32_t[]){ BGAV_MK_FOURCC('O','g', 'g', 'S'),
BGAV_MK_FOURCC('O','g', 'g', 'V'),
BGAV_VORBIS,
BGAV_MK_FOURCC('V', 'O', 'R', 'B'),
BGAV_WAVID_2_FOURCC(0x674f), // Mode 1 (header in first packet)
BGAV_WAVID_2_FOURCC(0x676f), // Mode 1+
BGAV_WAVID_2_FOURCC(0x6750), // Mode 2 (header in extradata)
BGAV_WAVID_2_FOURCC(0x6770), // Mode 2+
// BGAV_WAVID_2_FOURCC(0x6751), // Mode 3 (no header)
// BGAV_WAVID_2_FOURCC(0x6771), // Mode 3+
0x00 },
.name = "Ogg vorbis audio decoder",
.init = init_vorbis,
.close = close_vorbis,
.resync = resync_vorbis,
.decode_frame = decode_frame_vorbis
};
void bgav_init_audio_decoders_vorbis()
{
bgav_audio_decoder_register(&decoder);
}
/* Now comes the ugly part:Create a vorbis header from a bgav stream
(needed for Vorbis type 3).
It works the following: With the stream format (samplerate, bitrate,
channels) we search in a table for the vorbis encoder parameters.
Then, we start an encoder, get the header data and use them for decoding.
WARNING: This code assumes, that the vorbis encoder always emits the same
codebooks for a particular setup, which may not be the case across
libvorbis versions :-(
*/
#define WORD uint16_t
#define DWORD uint32_t
#define LONG long
typedef struct
{
DWORD nSamplesPerSec;
WORD nChannels;
WORD wBitsPerSample;
DWORD nAvgBytesPerSec;
float flQuality;
} FORMATDETAIL;
static const FORMATDETAIL aOggFormatIndexToDetail[] =
{
// WAVE_FORMAT_VORBIS(48K,16Bits,Stereo)
// { 64000/8, 80000/8, 96000/8, 112000/8, 128000/8, 160000/8, 192000/8, 240000/8, 256000/8, 350000/8, 450000/8 }, // 48K,Stereo
{ 48000, 2, 16, 64000/8, 0.0f },
{ 48000, 2, 16, 80000/8, 0.1f },
{ 48000, 2, 16, 96000/8, 0.2f },
{ 48000, 2, 16, 112000/8, 0.3f },
{ 48000, 2, 16, 128000/8, 0.4f },
{ 48000, 2, 16, 160000/8, 0.5f },
{ 48000, 2, 16, 192000/8, 0.6f },
{ 48000, 2, 16, 240000/8, 0.7f },
{ 48000, 2, 16, 256000/8, 0.8f },
{ 48000, 2, 16, 350000/8, 0.9f },
{ 48000, 2, 16, 450000/8, 1.0f },
// WAVE_FORMAT_VORBIS(48K,16Bits,Mono)
// { 48000/8, 64000/8, 72000/8, 80000/8, 88000/8, 96000/8, 112000/8, 128000/8, 144000/8, 192000/8, 256000/8 }, // 48K,Mono
{ 48000, 1, 16, 48000/8, 0.0f },
{ 48000, 1, 16, 64000/8, 0.1f },
{ 48000, 1, 16, 72000/8, 0.2f },
{ 48000, 1, 16, 80000/8, 0.3f },
{ 48000, 1, 16, 88000/8, 0.4f },
{ 48000, 1, 16, 96000/8, 0.5f },
{ 48000, 1, 16, 112000/8, 0.6f },
{ 48000, 1, 16, 128000/8, 0.7f },
{ 48000, 1, 16, 144000/8, 0.8f },
{ 48000, 1, 16, 192000/8, 0.9f },
{ 48000, 1, 16, 256000/8, 1.0f },
// WAVE_FORMAT_VORBIS(44K,16Bits,Stereo)
// { 64000/8, 80000/8, 96000/8, 112000/8, 128000/8, 160000/8, 192000/8, 240000/8, 256000/8, 350000/8, 450000/8 }, // 44K,Stereo
{ 44100, 2, 16, 64000/8, 0.0f },
{ 44100, 2, 16, 80000/8, 0.1f },
{ 44100, 2, 16, 96000/8, 0.2f },
{ 44100, 2, 16, 112000/8, 0.3f },
{ 44100, 2, 16, 128000/8, 0.4f },
{ 44100, 2, 16, 160000/8, 0.5f },
{ 44100, 2, 16, 192000/8, 0.6f },
{ 44100, 2, 16, 240000/8, 0.7f },
{ 44100, 2, 16, 256000/8, 0.8f },
{ 44100, 2, 16, 350000/8, 0.9f },
{ 44100, 2, 16, 450000/8, 1.0f },
// WAVE_FORMAT_VORBIS(44K,16Bits,Mono)
// { 48000/8, 64000/8, 72000/8, 80000/8, 88000/8, 96000/8, 112000/8, 128000/8, 144000/8, 192000/8, 256000/8 }, // 44K,Mono
{ 44100, 1, 16, 48000/8, 0.0f },
{ 44100, 1, 16, 64000/8, 0.1f },
{ 44100, 1, 16, 72000/8, 0.2f },
{ 44100, 1, 16, 80000/8, 0.3f },
{ 44100, 1, 16, 88000/8, 0.4f },
{ 44100, 1, 16, 96000/8, 0.5f },
{ 44100, 1, 16, 112000/8, 0.6f },
{ 44100, 1, 16, 128000/8, 0.7f },
{ 44100, 1, 16, 144000/8, 0.8f },
{ 44100, 1, 16, 192000/8, 0.9f },
{ 44100, 1, 16, 256000/8, 1.0f },
// WAVE_FORMAT_VORBIS(22K,16Bits,Stereo)
// { 56000/8, 72000/8, 80000/8, 88000/8, 96000/8, 112000/8, 144000/8, 176000/8, 192000/8, 256000/8, 320000/8 }, // 22K,Stereo
{ 22050, 2, 16, 56000/8, 0.0f },
{ 22050, 2, 16, 72000/8, 0.1f },
{ 22050, 2, 16, 80000/8, 0.2f },
{ 22050, 2, 16, 88000/8, 0.3f },
{ 22050, 2, 16, 96000/8, 0.4f },
{ 22050, 2, 16, 112000/8, 0.5f },
{ 22050, 2, 16, 144000/8, 0.6f },
{ 22050, 2, 16, 176000/8, 0.7f },
{ 22050, 2, 16, 192000/8, 0.8f },
{ 22050, 2, 16, 256000/8, 0.9f },
{ 22050, 2, 16, 320000/8, 1.0f },
// WAVE_FORMAT_VORBIS(22K,16Bits,Mono)
// { 36000/8, 42000/8, 48000/8, 52000/8, 56000/8, 64000/8, 80000/8, 88000/8, 96000/8, 128000/8, 168000/8 }, // 22K,Mono
{ 22050, 1, 16, 36000/8, 0.0f },
{ 22050, 1, 16, 42000/8, 0.1f },
{ 22050, 1, 16, 48000/8, 0.2f },
{ 22050, 1, 16, 52000/8, 0.3f },
{ 22050, 1, 16, 56000/8, 0.4f },
{ 22050, 1, 16, 64000/8, 0.5f },
{ 22050, 1, 16, 80000/8, 0.6f },
{ 22050, 1, 16, 88000/8, 0.7f },
{ 22050, 1, 16, 96000/8, 0.8f },
{ 22050, 1, 16, 128000/8, 0.9f },
{ 22050, 1, 16, 168000/8, 1.0f },
// WAVE_FORMAT_VORBIS(11K,16Bits,Stereo)
// { 36000/8, 44000/8, 50000/8, 52000/8, 56000/8, 64000/8, 80000/8, 96000/8, 112000/8, 144000/8, 168000/8 }, // 11K,Stereo
{ 11025, 2, 16, 36000/8, 0.0f },
{ 11025, 2, 16, 44000/8, 0.1f },
{ 11025, 2, 16, 50000/8, 0.2f },
{ 11025, 2, 16, 52000/8, 0.3f },
{ 11025, 2, 16, 56000/8, 0.4f },
{ 11025, 2, 16, 64000/8, 0.5f },
{ 11025, 2, 16, 80000/8, 0.6f },
{ 11025, 2, 16, 96000/8, 0.7f },
{ 11025, 2, 16, 112000/8, 0.8f },
{ 11025, 2, 16, 144000/8, 0.9f },
{ 11025, 2, 16, 168000/8, 1.0f },
// WAVE_FORMAT_VORBIS(11K,16Bits,Mono)
// { 22000/8, 26000/8, 28000/8, 30000/8, 32000/8, 34000/8, 40000/8, 48000/8, 56000/8, 72000/8, 88000/8 }, // 11K,Mono
{ 11025, 1, 16, 22000/8, 0.0f },
{ 11025, 1, 16, 26000/8, 0.1f },
{ 11025, 1, 16, 28000/8, 0.2f },
{ 11025, 1, 16, 30000/8, 0.3f },
{ 11025, 1, 16, 32000/8, 0.4f },
{ 11025, 1, 16, 34000/8, 0.5f },
{ 11025, 1, 16, 40000/8, 0.6f },
{ 11025, 1, 16, 48000/8, 0.7f },
{ 11025, 1, 16, 56000/8, 0.8f },
{ 11025, 1, 16, 72000/8, 0.9f },
{ 11025, 1, 16, 88000/8, 1.0f },
};
#define ARRAYLEN(arr) (sizeof(arr)/sizeof(arr[0]))
static DWORD oggFormatToIndex(const bgav_stream_t *pwfx)
{
DWORD index = 0;
LONG delta = LONG_MAX;
DWORD n;
LONG d;
for(n=0; n<ARRAYLEN(aOggFormatIndexToDetail); n++)
{
if(pwfx->data.audio.format->samplerate!=aOggFormatIndexToDetail[n].nSamplesPerSec) continue;
if(pwfx->data.audio.format->num_channels!=aOggFormatIndexToDetail[n].nChannels ) continue;
d = pwfx->container_bitrate/8 - aOggFormatIndexToDetail[n].nAvgBytesPerSec;
if(d==0)
{
index = n;
break;
}
if(abs(d)<abs(delta))
{
index = n;
delta = d;
}
}
return index;
}
#define MEMZERO(p) memset(&p, 0, sizeof(p))
static char * get_default_vorbis_header(bgav_stream_t * stream, int * len)
{
char * ret = NULL;
int ret_len = 0;
vorbis_info vi;
vorbis_block vb;
vorbis_comment vc;
vorbis_dsp_state vd;
ogg_packet header_main;
ogg_packet header_comments;
ogg_packet header_codebooks;
ogg_stream_state os;
ogg_page og;
int format_index;
/* Initialize */
MEMZERO(vi);
MEMZERO(vb);
MEMZERO(vc);
MEMZERO(vd);
MEMZERO(header_main);
MEMZERO(header_comments);
MEMZERO(header_codebooks);
MEMZERO(os);
MEMZERO(og);
/* Get format description */
format_index = oggFormatToIndex(stream);
/* Fire up an encoder */
vorbis_info_init(&vi);
vorbis_comment_init(&vc);
vorbis_comment_add_tag(&vc,"ENCODER","vorbis.acm"); /* LOL */
vorbis_encode_init_vbr(&vi,stream->data.audio.format->num_channels,
stream->data.audio.format->num_channels,aOggFormatIndexToDetail[format_index].flQuality);
// vorbis_encode_init(&vi,stream->data.audio.format->num_channels,
// stream->data.audio.format->num_channels,bitrate, bitrate, bitrate);
vorbis_analysis_init(&vd,&vi);
vorbis_block_init(&vd,&vb);
vorbis_analysis_headerout(&vd,&vc,&header_main,&header_comments,&header_codebooks);
ogg_stream_init(&os,0);
ogg_stream_packetin(&os,&header_main);
ogg_stream_packetin(&os,&header_comments);
ogg_stream_packetin(&os,&header_codebooks);
/* Extract header pages */
while(ogg_stream_flush(&os, &og))
{
ret = realloc(ret, ret_len + og.header_len + og.body_len);
memcpy(ret + ret_len, og.header, og.header_len);
memcpy(ret + ret_len + og.header_len, og.body, og.body_len);
ret_len += og.header_len + og.body_len;
}
ogg_stream_clear(&os);
vorbis_block_clear(&vb);
vorbis_dsp_clear(&vd);
vorbis_comment_clear(&vc);
vorbis_info_clear(&vi);
if(len)
*len = ret_len;
return ret;
}
|