summaryrefslogtreecommitdiff
path: root/mac/pbproc/inc/sacki_enc.h
diff options
context:
space:
mode:
authorsave2008-04-07 14:17:42 +0000
committersave2008-04-07 14:17:42 +0000
commit3d58a62727346b7ac1a6cb36fed1a06ed72228dd (patch)
treed7788c3cf9f76426aef0286d0202e2097f0fa0eb /mac/pbproc/inc/sacki_enc.h
parent095dca4b0a8d4924093bab424f71f588fdd84613 (diff)
Moved the complete svn base into the cesar directory.
git-svn-id: svn+ssh://pessac/svn/cesar/trunk@1769 017c9cb6-072f-447c-8318-d5b54f68fe89
Diffstat (limited to 'mac/pbproc/inc/sacki_enc.h')
-rw-r--r--mac/pbproc/inc/sacki_enc.h57
1 files changed, 0 insertions, 57 deletions
diff --git a/mac/pbproc/inc/sacki_enc.h b/mac/pbproc/inc/sacki_enc.h
deleted file mode 100644
index 6597a72c29..0000000000
--- a/mac/pbproc/inc/sacki_enc.h
+++ /dev/null
@@ -1,57 +0,0 @@
-#ifndef mac_pbproc_inc_sacki_enc_h
-#define mac_pbproc_inc_sacki_enc_h
-/* Cesar project {{{
- *
- * Copyright (C) 2007 Spidcom
- *
- * <<<Licence>>>
- *
- * }}} */
-/**
- * \file mac/pbproc/inc/sacki_enc.h
- * \brief SACKI compression.
- * \ingroup mac_pbproc
- */
-
-/** SACKI compression context. */
-struct pbproc_sacki_enc_t
-{
- /** SACKI buffer. */
- u32 si[3];
- /** SACKI buffer start offset. */
- uint sis;
- /** SACKI buffer available length. */
- uint sil;
- /** CRC bitmap start offset. */
- u32 bmps;
-};
-typedef struct pbproc_sacki_enc_t pbproc_sacki_enc_t;
-
-BEGIN_DECLS
-
-/**
- * Initialise context.
- * \param ctx SACKI compression context
- * \param sil SACKI buffer size
- */
-void
-pbproc_sacki_enc_init (pbproc_sacki_enc_t *ctx, uint sil);
-
-/**
- * Process bitmap CRC bits.
- * \param ctx SACKI compression context
- * \param bmp CRC bitmap address
- * \param bmpl CRC bitmap total number of available bits (including those
- * precessed yet)
- * \param final true if no more bits is following
- *
- * The compression can be done in several steps. In this case, this function
- * should be called again.
- */
-void
-pbproc_sacki_enc_process (pbproc_sacki_enc_t *ctx, const volatile u32 *bmp,
- uint bmpl, bool final);
-
-END_DECLS
-
-#endif /* mac_pbproc_inc_sacki_enc_h */