~ubuntu-branches/ubuntu/oneiric/ocaml-vorbis/oneiric

« back to all changes in this revision

Viewing changes to src/vorbis.ml

  • Committer: Bazaar Package Importer
  • Author(s): Romain Beauxis, Stefano Zacchiroli, Romain Beauxis
  • Date: 2008-04-17 01:38:25 UTC
  • mfrom: (1.1.8 upstream) (2.1.3 lenny)
  • Revision ID: james.westby@ubuntu.com-20080417013825-c7rt2m2kzpxsqe3z
Tags: 0.4.1-1
[ Stefano Zacchiroli ]
* fix vcs-svn field to point just above the debian/ dir

[ Romain Beauxis ]
* New upstream release, now install .cmx file
* Changed maintainer to Debian OCaml Maintainers

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
  * @author Samuel Mimram
26
26
  *)
27
27
 
28
 
(* $Id: vorbis.ml 4169 2007-07-18 15:25:54Z smimram $ *)
 
28
(* $Id: vorbis.ml 5149 2008-02-25 09:01:12Z smimram $ *)
29
29
 
30
30
type encoder
31
31
 
104
104
 
105
105
  external encode_buffer_float : t -> Ogg.Stream.t -> float array array -> int -> int -> unit = "ocaml_vorbis_encode_float"
106
106
 
107
 
  (* external end_of_stream : t -> Ogg.Stream.t -> unit = "ocaml_vorbis_eos" *)
108
107
  let end_of_stream enc os =
109
108
    encode_buffer_float enc os [||] 0 0
110
109
end