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
|
/* 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, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*
* Chunks of this code have been borrowed and influenced
* by flac/decode.c and the flac XMMS plugin.
*
*/
#include <memory.h>
#include <ogg/ogg.h>
#include <caml/alloc.h>
#include <caml/callback.h>
#include <caml/custom.h>
#include <caml/fail.h>
#include <caml/memory.h>
#include <caml/mlvalues.h>
#include <caml/signals.h>
#include <caml/threads.h>
#include <ocaml-ogg.h>
#include "flac_stubs.h"
/* C.f. http://flac.sourceforge.net/ogg_mapping.html */
CAMLprim value ocaml_flac_decoder_check_ogg(value v) {
CAMLparam1(v);
ogg_packet *p = Packet_val(v);
unsigned char *h = p->packet;
if (p->bytes < 9 ||
/* FLAC */
h[0] != 0x7f || h[1] != 'F' || h[2] != 'L' || h[3] != 'A' || h[4] != 'C')
CAMLreturn(Val_false);
CAMLreturn(Val_true);
}
CAMLprim value ocaml_flac_decoder_packet_data(value v) {
CAMLparam1(v);
CAMLlocal1(ans);
ogg_packet *p = Packet_val(v);
ans = caml_alloc_string(p->bytes);
memcpy((char *)String_val(ans), p->packet, p->bytes);
CAMLreturn(ans);
}
/* Encoder */
CAMLprim value ocaml_flac_encoder_ogg_init(value _enc, value _serialno) {
CAMLparam2(_enc, _serialno);
intnat serialno = Nativeint_val(_serialno);
ocaml_flac_encoder *enc = Encoder_val(_enc);
caml_release_runtime_system();
FLAC__stream_encoder_set_ogg_serial_number(enc->encoder, serialno);
FLAC__stream_encoder_init_ogg_stream(enc->encoder, NULL, enc_write_callback,
NULL, NULL, NULL,
(void *)&enc->callbacks);
caml_acquire_runtime_system();
CAMLreturn(Val_unit);
}
/* Ogg skeleton interface */
/* Wrappers */
static void write32le(unsigned char *ptr, ogg_uint32_t v) {
ptr[0] = v & 0xff;
ptr[1] = (v >> 8) & 0xff;
ptr[2] = (v >> 16) & 0xff;
ptr[3] = (v >> 24) & 0xff;
}
static void write64le(unsigned char *ptr, ogg_int64_t v) {
ogg_uint32_t hi = v >> 32;
ptr[0] = v & 0xff;
ptr[1] = (v >> 8) & 0xff;
ptr[2] = (v >> 16) & 0xff;
ptr[3] = (v >> 24) & 0xff;
ptr[4] = hi & 0xff;
ptr[5] = (hi >> 8) & 0xff;
ptr[6] = (hi >> 16) & 0xff;
ptr[7] = (hi >> 24) & 0xff;
}
/* Values from http://xiph.org/ogg/doc/skeleton.html */
#define FISBONE_IDENTIFIER "fisbone\0"
#define FISBONE_MESSAGE_HEADER_OFFSET 44
#define FISBONE_SIZE 52
/* Code from theorautils.c in ffmpeg2theora */
CAMLprim value ocaml_flac_skeleton_fisbone(value serial, value samplerate,
value start, value content) {
CAMLparam4(serial, samplerate, start, content);
CAMLlocal1(packet);
ogg_packet op;
int len = FISBONE_SIZE + caml_string_length(content);
memset(&op, 0, sizeof(op));
op.packet = malloc(len);
if (op.packet == NULL)
caml_raise_out_of_memory();
memset(op.packet, 0, len);
/* it will be the fisbone packet for the vorbis audio */
memcpy(op.packet, FISBONE_IDENTIFIER, 8); /* identifier */
write32le(
op.packet + 8,
FISBONE_MESSAGE_HEADER_OFFSET); /* offset of the message header fields */
write32le(op.packet + 12,
Nativeint_val(serial)); /* serialno of the vorbis stream */
write32le(op.packet + 16, 2); /* number of header packet, 2 for now. */
/* granulerate, temporal resolution of the bitstream in Hz */
write64le(op.packet + 20,
(ogg_int64_t)Int64_val(samplerate)); /* granulerate numerator */
write64le(op.packet + 28, (ogg_int64_t)1); /* granulerate denominator */
write64le(op.packet + 36, (ogg_int64_t)Int64_val(start)); /* start granule */
write32le(op.packet + 44, 2); /* preroll, for flac its 2 ??? */
*(op.packet + 48) = 0; /* granule shift, always 0 for flac */
memcpy(op.packet + FISBONE_SIZE, String_val(content),
caml_string_length(content));
op.b_o_s = 0;
op.e_o_s = 0;
op.bytes = len;
packet = value_of_packet(&op);
free(op.packet);
CAMLreturn(packet);
}
|