mirror of
https://github.com/wangyu-/UDPspeeder.git
synced 2025-01-31 12:19:35 +08:00
23 lines
311 B
C
23 lines
311 B
C
/*
|
|
* rs.h
|
|
*
|
|
* Created on: Sep 14, 2017
|
|
* Author: root
|
|
*/
|
|
|
|
#ifndef LIB_RS_H_
|
|
#define LIB_RS_H_
|
|
|
|
#include "fec.h"
|
|
|
|
|
|
int rs_encode(void *code,void *data[],int size);
|
|
|
|
int rs_recover_data(void *code,void *data[],int size);
|
|
|
|
int rs_recover_all(void *code,void *data[],int size);
|
|
|
|
|
|
|
|
#endif /* LIB_RS_H_ */
|