forked from applidium/Cracking-Siri
-
Notifications
You must be signed in to change notification settings - Fork 1
/
speexEnc.m
78 lines (59 loc) · 2.09 KB
/
speexEnc.m
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
#include <speex/speex.h>
#import <Foundation/Foundation.h>
#define MAX_FRAME_SIZE 1024
@interface NSData (HexadecimalRepresentation)
- (NSString *)hexadecimalRepresentation;
@end
@implementation NSData (HexadecimalRepresentation)
- (NSString *)hexadecimalRepresentation {
static const char * hexChars = "0123456789ABCDEF";
const unsigned char * src = (const unsigned char *)[self bytes];
int srcLength = [self length];
char * hexString = malloc(2*srcLength+1);
if (hexString == NULL) {
return nil;
}
int i = 0;
for (i=0; i<srcLength; i++) {
unsigned char currentByte = src[i];
hexString[2*i] = hexChars[currentByte >> 4];
hexString[2*i+1] = hexChars[currentByte & 0xF];
}
hexString[2*srcLength] = 0; // NULL-terminated string
NSString * hexRep = [NSString stringWithUTF8String:hexString];
free(hexString);
return hexRep;
}
@end
int main(int argc, char * argv[]) {
NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
SpeexBits bits;
void *enc_state;
speex_bits_init(&bits);
enc_state = speex_encoder_init(&speex_wb_mode);
int quality = 8;
speex_encoder_ctl(enc_state, SPEEX_SET_QUALITY, &quality);
int frame_size;
speex_encoder_ctl(enc_state, SPEEX_GET_FRAME_SIZE, &frame_size);
//frame_size = 3200;
//NSLog(@"Frame size is %d", frame_size);
NSData * rawData = [NSData dataWithContentsOfFile:@"tentative.raw"];
char * outputFrameData = malloc(MAX_FRAME_SIZE);
int i = 0;
int total_size = 0;
for (i = 0; i < [rawData length]/(sizeof(short)*frame_size); i++) {
speex_bits_reset(&bits);
short * pointer = (short *)[rawData bytes];
speex_encode_int(enc_state, pointer+i*frame_size, &bits);
int nbBytes = speex_bits_write(&bits, outputFrameData, MAX_FRAME_SIZE);
total_size += nbBytes;
//printf("%d\n", nbBytes);
NSData * frameData = [NSData dataWithBytes:outputFrameData
length:nbBytes];
printf("%s\n", [[frameData hexadecimalRepresentation] UTF8String]);
}
//NSLog(@"Total size = %d", total_size);
speex_bits_destroy(&bits);
speex_encoder_destroy(enc_state);
[pool drain];
}