1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-23 09:10:43 +00:00

This library package provides several forward error correction (FEC) decoders

and accelerated primitives useful in digital signal processing (DSP).
Except for the Reed-Solomon codecs, these functions take full advantage of
the MMX, SSE and SSE2 SIMD instruction sets on Intel/AMD IA-32 processors
and the Altivec/VMX/Velocity Engine SIMD instruction set on the
G4 and G5 PowerPC.
The library includes Viterbi decoders for the following convolutional codes:
rate 1/2 k=7
rate 1/2 k=9
rate 1/6 k=15 ("Cassini")
plus two Reed-Solomon encoder-decoders:
one optimized for the (255,223) CCSDS standard code
a general purpose encoder/decoder for arbitrary RS codes
and three low-level 16-bit DSP support routines:
signed dot product
peak detection
sum-of-squares (energy) computation
This library is licensed under the "lesser" GNU General Public License.

WWW: http://www.ka9q.net/code/fec/

- Diane Bruce, VA3DB
db@db.net

PR:		ports/99895
Submitted by:	db
This commit is contained in:
Ion-Mihai Tetcu 2006-07-08 21:30:18 +00:00
parent 130a71d260
commit 19054810ba
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=167213
5 changed files with 64 additions and 0 deletions

View File

@ -45,6 +45,7 @@
SUBDIR += kermit
SUBDIR += klog
SUBDIR += kpsk
SUBDIR += libfec
SUBDIR += libirman
SUBDIR += libticables
SUBDIR += linpsk

34
comms/libfec/Makefile Normal file
View File

@ -0,0 +1,34 @@
# ports collection makefile for: fec
# Date created: 7 July 2006
# Whom: db
#
# $FreeBSD$
PORTNAME= libfec
PORTVERSION= 2.1.1
CATEGORIES= comms astro hamradio
MASTER_SITES= http://www.ka9q.net/code/fec/
DISTNAME= fec-${PORTVERSION}
MAINTAINER= db@db.net
COMMENT= Several forward error correction (FEC) decoders
MAKEFILE= makefile
MAN3= simd-viterbi.3 rs.3 dsp.3
USE_BZIP2= yes
GNU_CONFIGURE= yes
USE_GMAKE= yes
INSTALLS_SHLIB= yes
ONLY_FOR_ARCHS= i386
post-patch:
${REINPLACE_CMD} -e 's|gcc|${CC}|g' ${WRKSRC}/makefile.in
.include <bsd.port.pre.mk>
.if ${OSVERSION} < 500000
USE_GCC= 3.4+
.endif
.include <bsd.port.post.mk>

3
comms/libfec/distinfo Normal file
View File

@ -0,0 +1,3 @@
MD5 (fec-2.1.1.tar.bz2) = 3dca8111b8ce46809a7ea51b9d9df746
SHA256 (fec-2.1.1.tar.bz2) = 4984ff33ed7609189c50f216e0a20eef1c72b72b031cdc0afbed80066073e99e
SIZE (fec-2.1.1.tar.bz2) = 85871

23
comms/libfec/pkg-descr Normal file
View File

@ -0,0 +1,23 @@
This library package provides several forward error correction (FEC) decoders
and accelerated primitives useful in digital signal processing (DSP).
Except for the Reed-Solomon codecs, these functions take full advantage of
the MMX, SSE and SSE2 SIMD instruction sets on Intel/AMD IA-32 processors
and the Altivec/VMX/Velocity Engine SIMD instruction set on the
G4 and G5 PowerPC.
The library includes Viterbi decoders for the following convolutional codes:
rate 1/2 k=7
rate 1/2 k=9
rate 1/6 k=15 ("Cassini")
plus two Reed-Solomon encoder-decoders:
one optimized for the (255,223) CCSDS standard code
a general purpose encoder/decoder for arbitrary RS codes
and three low-level 16-bit DSP support routines:
signed dot product
peak detection
sum-of-squares (energy) computation
This library is licensed under the "lesser" GNU General Public License.
WWW: http://www.ka9q.net/code/fec/
- Diane Bruce, VA3DB
db@db.net

3
comms/libfec/pkg-plist Normal file
View File

@ -0,0 +1,3 @@
include/fec.h
lib/libfec.so
lib/libfec.a