-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflac_handler.h
61 lines (44 loc) · 1.63 KB
/
flac_handler.h
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
#ifndef __FLAC_HANDLER_H__
#define __DLAC_HANDLER_H__
#ifdef _WIN32
#define FLAC__NO_DLL
#define _CRT_SECURE_NO_WARNINGS
#else
#include <unistd.h>
#endif
#include <stdint.h>
#include <ctype.h>
#include "ice_protocol.h"
/* OGG */
#include <ogg/ogg.h>
/* FALC includes */
#include "FLAC/metadata.h"
#include "FLAC/stream_decoder.h"
#include "FLAC/stream_encoder.h"
#ifndef FREE_POINTER
#define FREE_POINTER( x ) { if( x ) { free( x ); x = NULL; } }
#endif
typedef struct S_FLAC_HANDLER {
FLAC__StreamDecoder *decoder;
FLAC__StreamEncoder *encoder;
uint32_t **buffer;
uint32_t buf_position;
FLAC__uint32 total_size;
FLAC__uint64 total_samples;
uint32_t bits_per_sampe;
uint32_t bitrate;
uint32_t write_count;
double duration;
double timestamp;
double timestamp_new;
ice_clinet_t *ice;
}flac_handler_t;
flac_handler_t * fh_init(ice_clinet_t *ice);
void fh_destroy(flac_handler_t * fh);
int fh_decode_file(flac_handler_t * fh, const char *fname);
int fh_encode_stream(flac_handler_t * fh);
static FLAC__StreamDecoderWriteStatus _decode_write_callback(const FLAC__StreamDecoder *decoder, const FLAC__Frame *frame, const FLAC__int32 * const buffer[], void *client_data);
static void _decode_metadata_callback(const FLAC__StreamDecoder *decoder, const FLAC__StreamMetadata *metadata, void *client_data);
static void _decode_error_callback(const FLAC__StreamDecoder *decoder, FLAC__StreamDecoderErrorStatus status, void *client_data);
static FLAC__StreamEncoderWriteStatus _encode_write_callback(const FLAC__StreamEncoder *encoder, const FLAC__byte buffer[], size_t bytes, unsigned samples, unsigned current_frame, void *client_data);
#endif