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
|
/*
* sounddecoder.cpp
*
* This file is part of AISDecoder.
*
* Copyright (C) 2013
* Astra Paging Ltd / AISHub (info@aishub.net)
*
* AISDecoder 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.
*
* AISDecoder uses parts of GNUAIS project (http://gnuais.sourceforge.net/)
*
*/
#include <string.h>
#include <stdio.h>
//#include "config.h"
#ifdef WIN32
#include <fcntl.h>
#endif
#include "lib/receiver.h"
#include "lib/hmalloc.h"
#define MAX_FILENAME_SIZE 512
#define ERROR_MESSAGE_LENGTH 1024
#include "sounddecoder.h"
char errorSoundDecoder[ERROR_MESSAGE_LENGTH];
static struct receiver *rx_a=NULL;
static struct receiver *rx_b=NULL;
static short *buffer=NULL;
static int buffer_l=0;
static int buffer_read=0;
static int channels=0;
static Sound_Channels sound_channels;
static FILE *fp=NULL;
static void readBuffers();
static time_t tprev=0;
static int time_print_stats=0;
int initSoundDecoder(int buf_len,int _time_print_stats, int add_sample_num)
{
sound_channels=SOUND_CHANNELS_STEREO;
channels = sound_channels == SOUND_CHANNELS_MONO ? 1 : 2;
time_print_stats=_time_print_stats;
tprev=time(NULL); // for decoder statistics
buffer = (short *) hmalloc(channels*sizeof(short)*buf_len);
rx_a = init_receiver('A', 2, 0, add_sample_num);
rx_b = init_receiver('B', 2, 1, add_sample_num);
return 1;
}
void run_mem_decoder(short * buf, int len,int max_buf_len)
{
int offset=0;
int bytes_in_len=len*channels;
char * p=(char *) buf;
while(bytes_in_len > max_buf_len )
{
memcpy(buffer,p+offset,max_buf_len);
buffer_read=max_buf_len/(channels*sizeof(short));
bytes_in_len-=max_buf_len;
offset+=max_buf_len;
readBuffers();
}
memcpy(buffer,p+offset,bytes_in_len);
buffer_read=bytes_in_len/(channels*sizeof(short));
readBuffers();
if(time_print_stats && (time(NULL)-tprev >= time_print_stats))
{
struct demod_state_t *d = rx_a->decoder;
tprev=time(NULL);
fprintf(stderr,
"A: Received correctly: %d packets, wrong CRC: %d packets, wrong size: %d packets\n",
d->receivedframes, d->lostframes,
d->lostframes2);
d = rx_b->decoder;
fprintf(stderr,
"B: Received correctly: %d packets, wrong CRC: %d packets, wrong size: %d packets\n",
d->receivedframes, d->lostframes,
d->lostframes2);
}
}
void runSoundDecoder(int *stop) {
while (!*stop) {
buffer_read = fread(buffer, channels * sizeof(short), buffer_l, fp);
readBuffers();
}
}
static void readBuffers() {
if (buffer_read <= 0) return;
if (rx_a != NULL && sound_channels != SOUND_CHANNELS_RIGHT)
receiver_run(rx_a, buffer, buffer_read);
if (rx_b != NULL &&
(sound_channels == SOUND_CHANNELS_STEREO || sound_channels == SOUND_CHANNELS_RIGHT)
) receiver_run(rx_b, buffer, buffer_read);
}
void freeSoundDecoder(void) {
if (fp != NULL) {
fclose(fp);
fp=NULL;
}
if (rx_a != NULL) {
free_receiver(rx_a);
rx_a=NULL;
}
if (rx_b != NULL) {
free_receiver(rx_b);
rx_b=NULL;
}
if (buffer != NULL) {
hfree(buffer);
buffer = NULL;
}
}
|