init commit

This commit is contained in:
2026-06-22 11:39:50 +03:00
commit ba6f1bde22
128 changed files with 17716 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
// User include file for r=1/2 k=24 Viterbi decoder
// Copyright 2004-2014, Phil Karn, KA9Q
// May be used under the terms of the GNU Lesser General Public License (LGPL)
#ifndef _VITERBI224_H_
#define _VITERBI224_H_
int init_viterbi224(void *p,int starting_state);
void *create_viterbi224(int len);
int chainback_viterbi224(void *p,unsigned char *data,unsigned int nbits,unsigned int endstate);
void delete_viterbi224(void *p);
int update_viterbi224_blk(void *p,const unsigned char *syms,int nbits);
#endif /* _VITERBI224_H_ */