..
This commit is contained in:
parent
b2b5783f48
commit
7bc733fd51
1 changed files with 9 additions and 12 deletions
11
DigestPlay.c
11
DigestPlay.c
|
@ -12,10 +12,7 @@
|
|||
#include "Version.h"
|
||||
#include "RewindClient.h"
|
||||
|
||||
// #include "DMR.h"
|
||||
#ifndef DMR_H
|
||||
#define TDMA_FRAME_DURATION 60
|
||||
#endif
|
||||
|
||||
#define DSD_MAGIC_TEXT ".amb"
|
||||
#define DSD_MAGIC_SIZE 4
|
||||
|
@ -29,6 +26,8 @@
|
|||
#define BUFFER_SIZE 1024
|
||||
#define ATTEMPT_COUNT 5
|
||||
|
||||
#define CLIENT_NAME "DigestPlay " STRING(VERSION) " " BUILD
|
||||
|
||||
typedef uint8_t Integer24[3];
|
||||
|
||||
struct FullLC
|
||||
|
@ -142,9 +141,7 @@ int main(int argc, char* argv[])
|
|||
|
||||
// Create Rewind client context
|
||||
|
||||
struct RewindContext* context = CreateRewindClient(
|
||||
number,
|
||||
"DigestPlay " STRING(VERSION) " " BUILD);
|
||||
struct RewindContext* context = CreateRewindClient(number, CLIENT_NAME);
|
||||
|
||||
if (context == NULL)
|
||||
{
|
||||
|
@ -167,7 +164,7 @@ int main(int argc, char* argv[])
|
|||
|
||||
// Connect to the server
|
||||
|
||||
int result = ConnectRewindClient(context, location, port, password, REWIND_OPTION_SUPER_HEADER);
|
||||
int result = ConnectRewindClient(context, location, port, password, REWIND_OPTION_LINEAR_FRAME);
|
||||
|
||||
if (result < 0)
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue