[Pkg-ocaml-maint-commits] [SCM] ocaml-mad packaging branch, master, updated. debian/0.4.0-1-1-g89856a5
Romain Beauxis
toots at rastageeks.org
Thu Mar 3 19:33:46 UTC 2011
The following commit has been merged in the master branch:
commit 89856a594438d7012b1e7a20e3f2ff31d31a5576
Author: Romain Beauxis <toots at rastageeks.org>
Date: Thu Mar 3 13:33:08 2011 -0600
Prepared upload to sid..
diff --git a/debian/changelog b/debian/changelog
index 4123789..be2a847 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+ocaml-mad (0.4.0-2) unstable; urgency=low
+
+ * Upload to unstable.
+
+ -- Romain Beauxis <toots at rastageeks.org> Thu, 03 Mar 2011 13:32:09 -0600
+
ocaml-mad (0.4.0-1) experimental; urgency=low
* New upstream release.
diff --git a/debian/rules b/debian/rules
index ece29f9..80d903b 100755
--- a/debian/rules
+++ b/debian/rules
@@ -15,3 +15,6 @@ DEB_MAKE_INSTALL_TARGET := install OCAMLFIND_DESTDIR=$(DESTDIR) OCAMLFIND_LDCONF
build/libmad-ocaml-dev::
mkdir -p $(DESTDIR)
make doc
+
+clean::
+ rm -rf doc
diff --git a/doc/html/Mad.html b/doc/html/Mad.html
deleted file mode 100644
index e53baed..0000000
--- a/doc/html/Mad.html
+++ /dev/null
@@ -1,96 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
-<html>
-<head>
-<link rel="stylesheet" href="style.css" type="text/css">
-<meta content="text/html; charset=iso-8859-1" http-equiv="Content-Type">
-<link rel="Start" href="index.html">
-<link rel="Up" href="index.html">
-<link title="Index of types" rel=Appendix href="index_types.html">
-<link title="Index of exceptions" rel=Appendix href="index_exceptions.html">
-<link title="Index of values" rel=Appendix href="index_values.html">
-<link title="Index of modules" rel=Appendix href="index_modules.html">
-<link title="Mad" rel="Chapter" href="Mad.html"><link title="Exceptions" rel="Section" href="#1_Exceptions">
-<link title="Decoding files" rel="Section" href="#1_Decodingfiles">
-<title>Mad</title>
-</head>
-<body>
-<div class="navbar"> <a href="index.html">Up</a>
- </div>
-<center><h1>Module <a href="type_Mad.html">Mad</a></h1></center>
-<br>
-<pre><span class="keyword">module</span> Mad: <code class="code">sig</code> <a href="Mad.html">..</a> <code class="code">end</code></pre> Functions for decoding mp3 files using the libmad.
-<p>
-
-<br>
-<b>Author(s):</b> Samuel Mimram<br>
-<hr width="100%">
-<br>
-<a name="1_Exceptions"></a>
-<h1>Exceptions</h1><br>
-<pre><span class="keyword">exception</span> <a name="EXCEPTIONMad_error"></a>Mad_error <span class="keyword">of</span> <code class="type">string</code></pre>
-<div class="info">
-An error occured with libmad.<br>
-</div>
-<pre><span class="keyword">exception</span> <a name="EXCEPTIONRead_error"></a>Read_error <span class="keyword">of</span> <code class="type">string</code></pre>
-<div class="info">
-An error occured while reading a file.<br>
-</div>
-<pre><span class="keyword">exception</span> <a name="EXCEPTIONEnd_of_stream"></a>End_of_stream</pre>
-<div class="info">
-The end of the mp3 stream was reached.<br>
-</div>
-<pre><span class="keyword">exception</span> <a name="EXCEPTIONOpenfile_error"></a>Openfile_error <span class="keyword">of</span> <code class="type">string</code></pre>
-<div class="info">
-Could not open a file.<br>
-</div>
-<pre><span class="keyword">exception</span> <a name="EXCEPTIONClosefile_error"></a>Closefile_error <span class="keyword">of</span> <code class="type">string</code></pre>
-<div class="info">
-Could not close a file.<br>
-</div>
-<br>
-<a name="1_Decodingfiles"></a>
-<h1>Decoding files</h1><br>
-<pre><span class="keyword">type</span> <a name="TYPEmad_file"></a><code class="type"></code>mad_file </pre>
-<div class="info">
-An mp3 file opened for decoding.<br>
-</div>
-
-<pre><span class="keyword">val</span> <a name="VALopenfile"></a>openfile : <code class="type">string -> <a href="Mad.html#TYPEmad_file">mad_file</a></code></pre><div class="info">
- Open an mp3 file.
-<p>
-
-<br>
-<b>Raises</b> <code>Openfile_error</code> if an error occured while trying to open the file.<br>
-</div>
-<pre><span class="keyword">val</span> <a name="VALopenstream"></a>openstream : <code class="type">(int -> string * int) -> <a href="Mad.html#TYPEmad_file">mad_file</a></code></pre><div class="info">
- <code class="code">openstream read_func</code> opens a stream where <code class="code">read_func n</code> should be a
- function which returns <code class="code">n</code> bytes of data or less, the second component of
- the result being the number of bytes to read in the fist component.<br>
-</div>
-<pre><span class="keyword">val</span> <a name="VALclose"></a>close : <code class="type"><a href="Mad.html#TYPEmad_file">mad_file</a> -> unit</code></pre><div class="info">
- Close an mp3 file previously opened with <code class="code">openfile</code>.
-<p>
-
-<br>
-<b>Raises</b> <code>Closefile_error</code> if an error occured while trying to close the file.<br>
-</div>
-<pre><span class="keyword">val</span> <a name="VALget_current_position"></a>get_current_position : <code class="type"><a href="Mad.html#TYPEmad_file">mad_file</a> -> int</code></pre><div class="info">
- Get the current position (in bytes) of the decoder in the mp3 file which
- should have been opened with <code class="code">openfile</code>.<br>
-</div>
-<pre><span class="keyword">val</span> <a name="VALdecode_frame"></a>decode_frame : <code class="type"><a href="Mad.html#TYPEmad_file">mad_file</a> -> string</code></pre><div class="info">
-Decode an mp3 frame.
- Returned data in interleaved when
- there are two channels, and mono data
- when there is only one.<br>
-</div>
-<pre><span class="keyword">val</span> <a name="VALdecode_frame_float"></a>decode_frame_float : <code class="type"><a href="Mad.html#TYPEmad_file">mad_file</a> -> float array array</code></pre><div class="info">
-Decode an mp3 frame.<br>
-</div>
-<pre><span class="keyword">val</span> <a name="VALget_output_format"></a>get_output_format : <code class="type"><a href="Mad.html#TYPEmad_file">mad_file</a> -> int * int * int</code></pre><pre><span class="keyword">val</span> <a name="VALduration"></a>duration : <code class="type">string -> float</code></pre><div class="info">
-Compute the duration of a file, in seconds.
- Never raises any exception, but returns 0. in case of error.
- The returned duration is exact but its computation is not efficient,
- as it proceeds by completely decoding the file.<br>
-</div>
-</body></html>
\ No newline at end of file
diff --git a/doc/html/index.html b/doc/html/index.html
deleted file mode 100644
index 34a2e14..0000000
--- a/doc/html/index.html
+++ /dev/null
@@ -1,27 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
-<html>
-<head>
-<link rel="stylesheet" href="style.css" type="text/css">
-<meta content="text/html; charset=iso-8859-1" http-equiv="Content-Type">
-<link rel="Start" href="index.html">
-<link title="Index of types" rel=Appendix href="index_types.html">
-<link title="Index of exceptions" rel=Appendix href="index_exceptions.html">
-<link title="Index of values" rel=Appendix href="index_values.html">
-<link title="Index of modules" rel=Appendix href="index_modules.html">
-<link title="Mad" rel="Chapter" href="Mad.html"><title></title>
-</head>
-<body>
-<center><h1></h1></center>
-<a href="index_types.html">Index of types</a><br>
-<a href="index_exceptions.html">Index of exceptions</a><br>
-<a href="index_values.html">Index of values</a><br>
-<a href="index_modules.html">Index of modules</a><br>
-<br/><br>
-<table class="indextable">
-<tr><td><a href="Mad.html">Mad</a></td><td><div class="info">
- Functions for decoding mp3 files using the libmad.
-</div>
-</td></tr>
-</table>
-</body>
-</html>
\ No newline at end of file
diff --git a/doc/html/index_attributes.html b/doc/html/index_attributes.html
deleted file mode 100644
index b3202f9..0000000
--- a/doc/html/index_attributes.html
+++ /dev/null
@@ -1,17 +0,0 @@
-<html>
-<head>
-<link rel="stylesheet" href="style.css" type="text/css">
-<meta content="text/html; charset=iso-8859-1" http-equiv="Content-Type">
-<link rel="Start" href="index.html">
-<link title="Index of types" rel=Appendix href="index_types.html">
-<link title="Index of exceptions" rel=Appendix href="index_exceptions.html">
-<link title="Index of values" rel=Appendix href="index_values.html">
-<link title="Index of modules" rel=Appendix href="index_modules.html">
-<link title="Mad" rel="Chapter" href="Mad.html"><title>Index of class attributes</title>
-</head>
-<body>
-<center><h1>Index of class attributes</h1></center>
-<table>
-</table><br>
-</body>
-</html>
\ No newline at end of file
diff --git a/doc/html/index_class_types.html b/doc/html/index_class_types.html
deleted file mode 100644
index 37f9496..0000000
--- a/doc/html/index_class_types.html
+++ /dev/null
@@ -1,17 +0,0 @@
-<html>
-<head>
-<link rel="stylesheet" href="style.css" type="text/css">
-<meta content="text/html; charset=iso-8859-1" http-equiv="Content-Type">
-<link rel="Start" href="index.html">
-<link title="Index of types" rel=Appendix href="index_types.html">
-<link title="Index of exceptions" rel=Appendix href="index_exceptions.html">
-<link title="Index of values" rel=Appendix href="index_values.html">
-<link title="Index of modules" rel=Appendix href="index_modules.html">
-<link title="Mad" rel="Chapter" href="Mad.html"><title>Index of class types</title>
-</head>
-<body>
-<center><h1>Index of class types</h1></center>
-<table>
-</table><br>
-</body>
-</html>
\ No newline at end of file
diff --git a/doc/html/index_classes.html b/doc/html/index_classes.html
deleted file mode 100644
index 07e2280..0000000
--- a/doc/html/index_classes.html
+++ /dev/null
@@ -1,17 +0,0 @@
-<html>
-<head>
-<link rel="stylesheet" href="style.css" type="text/css">
-<meta content="text/html; charset=iso-8859-1" http-equiv="Content-Type">
-<link rel="Start" href="index.html">
-<link title="Index of types" rel=Appendix href="index_types.html">
-<link title="Index of exceptions" rel=Appendix href="index_exceptions.html">
-<link title="Index of values" rel=Appendix href="index_values.html">
-<link title="Index of modules" rel=Appendix href="index_modules.html">
-<link title="Mad" rel="Chapter" href="Mad.html"><title>Index of classes</title>
-</head>
-<body>
-<center><h1>Index of classes</h1></center>
-<table>
-</table><br>
-</body>
-</html>
\ No newline at end of file
diff --git a/doc/html/index_exceptions.html b/doc/html/index_exceptions.html
deleted file mode 100644
index e4c0532..0000000
--- a/doc/html/index_exceptions.html
+++ /dev/null
@@ -1,47 +0,0 @@
-<html>
-<head>
-<link rel="stylesheet" href="style.css" type="text/css">
-<meta content="text/html; charset=iso-8859-1" http-equiv="Content-Type">
-<link rel="Start" href="index.html">
-<link title="Index of types" rel=Appendix href="index_types.html">
-<link title="Index of exceptions" rel=Appendix href="index_exceptions.html">
-<link title="Index of values" rel=Appendix href="index_values.html">
-<link title="Index of modules" rel=Appendix href="index_modules.html">
-<link title="Mad" rel="Chapter" href="Mad.html"><title>Index of exceptions</title>
-</head>
-<body>
-<center><h1>Index of exceptions</h1></center>
-<table>
-<tr><td align="left"><br>C</td></tr>
-<tr><td><a href="Mad.html#EXCEPTIONClosefile_error">Closefile_error</a> [<a href="Mad.html">Mad</a>]</td>
-<td><div class="info">
-Could not close a file.
-</div>
-</td></tr>
-<tr><td align="left"><br>E</td></tr>
-<tr><td><a href="Mad.html#EXCEPTIONEnd_of_stream">End_of_stream</a> [<a href="Mad.html">Mad</a>]</td>
-<td><div class="info">
-The end of the mp3 stream was reached.
-</div>
-</td></tr>
-<tr><td align="left"><br>M</td></tr>
-<tr><td><a href="Mad.html#EXCEPTIONMad_error">Mad_error</a> [<a href="Mad.html">Mad</a>]</td>
-<td><div class="info">
-An error occured with libmad.
-</div>
-</td></tr>
-<tr><td align="left"><br>O</td></tr>
-<tr><td><a href="Mad.html#EXCEPTIONOpenfile_error">Openfile_error</a> [<a href="Mad.html">Mad</a>]</td>
-<td><div class="info">
-Could not open a file.
-</div>
-</td></tr>
-<tr><td align="left"><br>R</td></tr>
-<tr><td><a href="Mad.html#EXCEPTIONRead_error">Read_error</a> [<a href="Mad.html">Mad</a>]</td>
-<td><div class="info">
-An error occured while reading a file.
-</div>
-</td></tr>
-</table><br>
-</body>
-</html>
\ No newline at end of file
diff --git a/doc/html/index_methods.html b/doc/html/index_methods.html
deleted file mode 100644
index c0c4755..0000000
--- a/doc/html/index_methods.html
+++ /dev/null
@@ -1,17 +0,0 @@
-<html>
-<head>
-<link rel="stylesheet" href="style.css" type="text/css">
-<meta content="text/html; charset=iso-8859-1" http-equiv="Content-Type">
-<link rel="Start" href="index.html">
-<link title="Index of types" rel=Appendix href="index_types.html">
-<link title="Index of exceptions" rel=Appendix href="index_exceptions.html">
-<link title="Index of values" rel=Appendix href="index_values.html">
-<link title="Index of modules" rel=Appendix href="index_modules.html">
-<link title="Mad" rel="Chapter" href="Mad.html"><title>Index of class methods</title>
-</head>
-<body>
-<center><h1>Index of class methods</h1></center>
-<table>
-</table><br>
-</body>
-</html>
\ No newline at end of file
diff --git a/doc/html/index_module_types.html b/doc/html/index_module_types.html
deleted file mode 100644
index c9f9329..0000000
--- a/doc/html/index_module_types.html
+++ /dev/null
@@ -1,17 +0,0 @@
-<html>
-<head>
-<link rel="stylesheet" href="style.css" type="text/css">
-<meta content="text/html; charset=iso-8859-1" http-equiv="Content-Type">
-<link rel="Start" href="index.html">
-<link title="Index of types" rel=Appendix href="index_types.html">
-<link title="Index of exceptions" rel=Appendix href="index_exceptions.html">
-<link title="Index of values" rel=Appendix href="index_values.html">
-<link title="Index of modules" rel=Appendix href="index_modules.html">
-<link title="Mad" rel="Chapter" href="Mad.html"><title>Index of module types</title>
-</head>
-<body>
-<center><h1>Index of module types</h1></center>
-<table>
-</table><br>
-</body>
-</html>
\ No newline at end of file
diff --git a/doc/html/index_modules.html b/doc/html/index_modules.html
deleted file mode 100644
index a72600a..0000000
--- a/doc/html/index_modules.html
+++ /dev/null
@@ -1,23 +0,0 @@
-<html>
-<head>
-<link rel="stylesheet" href="style.css" type="text/css">
-<meta content="text/html; charset=iso-8859-1" http-equiv="Content-Type">
-<link rel="Start" href="index.html">
-<link title="Index of types" rel=Appendix href="index_types.html">
-<link title="Index of exceptions" rel=Appendix href="index_exceptions.html">
-<link title="Index of values" rel=Appendix href="index_values.html">
-<link title="Index of modules" rel=Appendix href="index_modules.html">
-<link title="Mad" rel="Chapter" href="Mad.html"><title>Index of modules</title>
-</head>
-<body>
-<center><h1>Index of modules</h1></center>
-<table>
-<tr><td align="left"><br>M</td></tr>
-<tr><td><a href="Mad.html">Mad</a> </td>
-<td><div class="info">
- Functions for decoding mp3 files using the libmad.
-</div>
-</td></tr>
-</table><br>
-</body>
-</html>
\ No newline at end of file
diff --git a/doc/html/index_types.html b/doc/html/index_types.html
deleted file mode 100644
index 576e805..0000000
--- a/doc/html/index_types.html
+++ /dev/null
@@ -1,23 +0,0 @@
-<html>
-<head>
-<link rel="stylesheet" href="style.css" type="text/css">
-<meta content="text/html; charset=iso-8859-1" http-equiv="Content-Type">
-<link rel="Start" href="index.html">
-<link title="Index of types" rel=Appendix href="index_types.html">
-<link title="Index of exceptions" rel=Appendix href="index_exceptions.html">
-<link title="Index of values" rel=Appendix href="index_values.html">
-<link title="Index of modules" rel=Appendix href="index_modules.html">
-<link title="Mad" rel="Chapter" href="Mad.html"><title>Index of types</title>
-</head>
-<body>
-<center><h1>Index of types</h1></center>
-<table>
-<tr><td align="left"><br>M</td></tr>
-<tr><td><a href="Mad.html#TYPEmad_file">mad_file</a> [<a href="Mad.html">Mad</a>]</td>
-<td><div class="info">
-An mp3 file opened for decoding.
-</div>
-</td></tr>
-</table><br>
-</body>
-</html>
\ No newline at end of file
diff --git a/doc/html/index_values.html b/doc/html/index_values.html
deleted file mode 100644
index acc3c26..0000000
--- a/doc/html/index_values.html
+++ /dev/null
@@ -1,61 +0,0 @@
-<html>
-<head>
-<link rel="stylesheet" href="style.css" type="text/css">
-<meta content="text/html; charset=iso-8859-1" http-equiv="Content-Type">
-<link rel="Start" href="index.html">
-<link title="Index of types" rel=Appendix href="index_types.html">
-<link title="Index of exceptions" rel=Appendix href="index_exceptions.html">
-<link title="Index of values" rel=Appendix href="index_values.html">
-<link title="Index of modules" rel=Appendix href="index_modules.html">
-<link title="Mad" rel="Chapter" href="Mad.html"><title>Index of values</title>
-</head>
-<body>
-<center><h1>Index of values</h1></center>
-<table>
-<tr><td align="left"><br>C</td></tr>
-<tr><td><a href="Mad.html#VALclose">close</a> [<a href="Mad.html">Mad</a>]</td>
-<td><div class="info">
- Close an mp3 file previously opened with <code class="code">openfile</code>.
-</div>
-</td></tr>
-<tr><td align="left"><br>D</td></tr>
-<tr><td><a href="Mad.html#VALdecode_frame">decode_frame</a> [<a href="Mad.html">Mad</a>]</td>
-<td><div class="info">
-Decode an mp3 frame.
-</div>
-</td></tr>
-<tr><td><a href="Mad.html#VALdecode_frame_float">decode_frame_float</a> [<a href="Mad.html">Mad</a>]</td>
-<td><div class="info">
-Decode an mp3 frame.
-</div>
-</td></tr>
-<tr><td><a href="Mad.html#VALduration">duration</a> [<a href="Mad.html">Mad</a>]</td>
-<td><div class="info">
-Compute the duration of a file, in seconds.
-</div>
-</td></tr>
-<tr><td align="left"><br>G</td></tr>
-<tr><td><a href="Mad.html#VALget_current_position">get_current_position</a> [<a href="Mad.html">Mad</a>]</td>
-<td><div class="info">
- Get the current position (in bytes) of the decoder in the mp3 file which
- should have been opened with <code class="code">openfile</code>.
-</div>
-</td></tr>
-<tr><td><a href="Mad.html#VALget_output_format">get_output_format</a> [<a href="Mad.html">Mad</a>]</td>
-<td></td></tr>
-<tr><td align="left"><br>O</td></tr>
-<tr><td><a href="Mad.html#VALopenfile">openfile</a> [<a href="Mad.html">Mad</a>]</td>
-<td><div class="info">
- Open an mp3 file.
-</div>
-</td></tr>
-<tr><td><a href="Mad.html#VALopenstream">openstream</a> [<a href="Mad.html">Mad</a>]</td>
-<td><div class="info">
- <code class="code">openstream read_func</code> opens a stream where <code class="code">read_func n</code> should be a
- function which returns <code class="code">n</code> bytes of data or less, the second component of
- the result being the number of bytes to read in the fist component.
-</div>
-</td></tr>
-</table><br>
-</body>
-</html>
\ No newline at end of file
diff --git a/doc/html/style.css b/doc/html/style.css
deleted file mode 100644
index c0a80f3..0000000
--- a/doc/html/style.css
+++ /dev/null
@@ -1,33 +0,0 @@
-a:visited {color : #416DFF; text-decoration : none; }
-a:link {color : #416DFF; text-decoration : none;}
-a:hover {color : Red; text-decoration : none; background-color: #5FFF88}
-a:active {color : Red; text-decoration : underline; }
-.keyword { font-weight : bold ; color : Red }
-.keywordsign { color : #C04600 }
-.superscript { font-size : 4 }
-.subscript { font-size : 4 }
-.comment { color : Green }
-.constructor { color : Blue }
-.type { color : #5C6585 }
-.string { color : Maroon }
-.warning { color : Red ; font-weight : bold }
-.info { margin-left : 3em; margin-right : 3em }
-.param_info { margin-top: 4px; margin-left : 3em; margin-right : 3em }
-.code { color : #465F91 ; }
-h1 { font-size : 20pt ; text-align: center; }
-h2 { font-size : 20pt ; border: 1px solid #000000; margin-top: 5px; margin-bottom: 2px;text-align: center; background-color: #90BDFF ;padding: 2px; }
-h3 { font-size : 20pt ; border: 1px solid #000000; margin-top: 5px; margin-bottom: 2px;text-align: center; background-color: #90DDFF ;padding: 2px; }
-h4 { font-size : 20pt ; border: 1px solid #000000; margin-top: 5px; margin-bottom: 2px;text-align: center; background-color: #90EDFF ;padding: 2px; }
-h5 { font-size : 20pt ; border: 1px solid #000000; margin-top: 5px; margin-bottom: 2px;text-align: center; background-color: #90FDFF ;padding: 2px; }
-h6 { font-size : 20pt ; border: 1px solid #000000; margin-top: 5px; margin-bottom: 2px;text-align: center; background-color: #C0FFFF ; padding: 2px; }
-div.h7 { font-size : 20pt ; border: 1px solid #000000; margin-top: 5px; margin-bottom: 2px;text-align: center; background-color: #E0FFFF ; padding: 2px; }
-div.h8 { font-size : 20pt ; border: 1px solid #000000; margin-top: 5px; margin-bottom: 2px;text-align: center; background-color: #F0FFFF ; padding: 2px; }
-div.h9 { font-size : 20pt ; border: 1px solid #000000; margin-top: 5px; margin-bottom: 2px;text-align: center; background-color: #FFFFFF ; padding: 2px; }
-.typetable { border-style : hidden }
-.indextable { border-style : hidden }
-.paramstable { border-style : hidden ; padding: 5pt 5pt}
-body { background-color : White }
-tr { background-color : White }
-td.typefieldcomment { background-color : #FFFFFF ; font-size: smaller ;}
-pre { margin-bottom: 4px }
-div.sig_block {margin-left: 2em}
\ No newline at end of file
diff --git a/doc/html/type_Mad.html b/doc/html/type_Mad.html
deleted file mode 100644
index 97f2d6a..0000000
--- a/doc/html/type_Mad.html
+++ /dev/null
@@ -1,27 +0,0 @@
-<html><head>
-<link rel="stylesheet" href="style.css" type="text/css">
-<meta content="text/html; charset=iso-8859-1" http-equiv="Content-Type">
-<link rel="Start" href="index.html">
-<link title="Index of types" rel=Appendix href="index_types.html">
-<link title="Index of exceptions" rel=Appendix href="index_exceptions.html">
-<link title="Index of values" rel=Appendix href="index_values.html">
-<link title="Index of modules" rel=Appendix href="index_modules.html">
-<link title="Mad" rel="Chapter" href="Mad.html"><title>Mad</title>
-</head>
-<body>
-<code class="code"><span class="keyword">sig</span><br>
- <span class="keyword">exception</span> <span class="constructor">Mad_error</span> <span class="keyword">of</span> string<br>
- <span class="keyword">exception</span> <span class="constructor">Read_error</span> <span class="keyword">of</span> string<br>
- <span class="keyword">exception</span> <span class="constructor">End_of_stream</span><br>
- <span class="keyword">exception</span> <span class="constructor">Openfile_error</span> <span class="keyword">of</span> string<br>
- <span class="keyword">exception</span> <span class="constructor">Closefile_error</span> <span class="keyword">of</span> string<br>
- <span class="keyword">type</span> mad_file<br>
- <span class="keyword">val</span> openfile : string <span class="keywordsign">-></span> <span class="constructor">Mad</span>.mad_file<br>
- <span class="keyword">val</span> openstream : (int <span class="keywordsign">-></span> string * int) <span class="keywordsign">-></span> <span class="constructor">Mad</span>.mad_file<br>
- <span class="keyword">val</span> close : <span class="constructor">Mad</span>.mad_file <span class="keywordsign">-></span> unit<br>
- <span class="keyword">val</span> get_current_position : <span class="constructor">Mad</span>.mad_file <span class="keywordsign">-></span> int<br>
- <span class="keyword">val</span> decode_frame : <span class="constructor">Mad</span>.mad_file <span class="keywordsign">-></span> string<br>
- <span class="keyword">val</span> decode_frame_float : <span class="constructor">Mad</span>.mad_file <span class="keywordsign">-></span> float array array<br>
- <span class="keyword">val</span> get_output_format : <span class="constructor">Mad</span>.mad_file <span class="keywordsign">-></span> int * int * int<br>
- <span class="keyword">val</span> duration : string <span class="keywordsign">-></span> float<br>
-<span class="keyword">end</span></code></body></html>
\ No newline at end of file
--
ocaml-mad packaging
More information about the Pkg-ocaml-maint-commits
mailing list