summaryrefslogtreecommitdiff
path: root/libopenjpeg/raw.h
diff options
context:
space:
mode:
Diffstat (limited to 'libopenjpeg/raw.h')
-rw-r--r--libopenjpeg/raw.h38
1 files changed, 7 insertions, 31 deletions
diff --git a/libopenjpeg/raw.h b/libopenjpeg/raw.h
index eede21a5..08b20bc6 100644
--- a/libopenjpeg/raw.h
+++ b/libopenjpeg/raw.h
@@ -23,50 +23,26 @@
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
- */
-
+ */
+
#ifndef __RAW_H
#define __RAW_H
-
+
/*
* Return the number of bytes written/read since initialisation
- */
+ */
int raw_numbytes();
-
-/*
- * Initialize the encoder
- * bp: pointer to the start of the buffer where the bytes will be written
- */
-void raw_init_enc(unsigned char *bp);
-
-
-/*
- * Encode a bit
- * d: bit to encode (0 or 1)
- */
-void raw_encode(int d);
-
-
-/*
- * Flush the encoder, so that all remaining data is written
- */
-void raw_flush();
-
-
/*
* Initialize the decoder
* bp: pointer to the start of the buffer from which the bytes will be read
* len: length of the input buffer
- */
+ */
void raw_init_dec(unsigned char *bp, int len);
-
/*
* Decode a bit (returns 0 or 1)
- */
+ */
int raw_decode();
-
-#endif /*
- */
+#endif