~ubuntu-branches/ubuntu/precise/flac/precise-updates

« back to all changes in this revision

Viewing changes to doc/html/api/group__flacpp__decoder.html

  • Committer: Bazaar Package Importer
  • Author(s): Joshua Kwan
  • Date: 2007-05-29 22:56:36 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20070529225636-ljeff8xxip09qaap
Tags: 1.1.4-1
* New upstream release. closes: #405167, #411311
  - libOggFLAC and libOggFLAC++ have been merged into libFLAC, so
    remove their corresponding packages.
  - Because of the API changes required to effect the above, there has
    been yet another soname bump. libflac7 -> libflac8 and
    libflac++5 -> libflac++6. Emails have been dispatched to the
    maintainers of dependent packages.
* Some notes on patches that were removed:
  - 02_stdin_stdout, 06_manpage_mention_utf8_convert: merged upstream
  - 08_manpage_warnings: Upstream has changed the manpage so it defintely
    can't fit in in 80 cols, so just forget about it. We'll live.
  - 05_eof_warnings_are_errors: Upstream decided to add a -w option to
    flac to treat all warnings as errors. I am going to defer to that
    for now, but if people think it's stupid let me know and I'll port
    the patch forward.
  - 04_stack_smasher: was a backport from 1.1.3, so it's obsolete.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
 
1
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
2
2
<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
3
 
<title>FLAC++/decoder.h: decoder classes</title>
 
3
<title>FLAC: FLAC++/decoder.h: decoder classes</title>
4
4
<link href="doxygen.css" rel="stylesheet" type="text/css">
5
5
</head><body>
6
 
<!-- Generated by Doxygen 1.2.14 -->
7
 
<center>
8
 
<a class="qindex" href="index.html">Main Page</a> &nbsp; <a class="qindex" href="modules.html">Modules</a> &nbsp; <a class="qindex" href="hierarchy.html">Class Hierarchy</a> &nbsp; <a class="qindex" href="classes.html">Alphabetical List</a> &nbsp; <a class="qindex" href="annotated.html">Compound List</a> &nbsp; <a class="qindex" href="files.html">File List</a> &nbsp; <a class="qindex" href="functions.html">Compound Members</a> &nbsp; <a class="qindex" href="globals.html">File Members</a> &nbsp; </center>
9
 
<hr><h1>FLAC++/decoder.h: decoder classes<br>
 
6
<!-- Generated by Doxygen 1.4.2 -->
 
7
<div class="qindex"><a class="qindex" href="index.html">Main&nbsp;Page</a> | <a class="qindex" href="modules.html">Modules</a> | <a class="qindex" href="hierarchy.html">Class&nbsp;Hierarchy</a> | <a class="qindex" href="classes.html">Alphabetical&nbsp;List</a> | <a class="qindex" href="annotated.html">Class&nbsp;List</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File&nbsp;List</a> | <a class="qindex" href="functions.html">Class&nbsp;Members</a> | <a class="qindex" href="globals.html">File&nbsp;Members</a></div>
 
8
<h1>FLAC++/decoder.h: decoder classes<br>
10
9
<small>
11
10
[<a class="el" href="group__flacpp.html">FLAC C++ API</a>]</small>
12
 
</h1>This module describes the three decoder layers provided by libFLAC++. 
13
 
<a href="#_details">More...</a><table border=0 cellpadding=0 cellspacing=0>
14
 
<tr><td colspan=2><br><h2>Modules</h2></td></tr>
15
 
<tr><td nowrap align=right valign=top><a class="el" href="group__flacpp__stream__decoder.html">FLAC++/decoder.h: stream decoder class</a></td></tr>
16
 
<tr><td>&nbsp;</td><td><font size=-1><em>This class wraps the FLAC__StreamDecoder.</em></font><br><br></td></tr>
17
 
 
18
 
<p>
19
 
<tr><td nowrap align=right valign=top><a class="el" href="group__flacpp__seekable__stream__decoder.html">FLAC++/decoder.h: seekable stream decoder class</a></td></tr>
20
 
<tr><td>&nbsp;</td><td><font size=-1><em>This class wraps the FLAC__SeekableStreamDecoder.</em></font><br><br></td></tr>
21
 
 
22
 
<p>
23
 
<tr><td nowrap align=right valign=top><a class="el" href="group__flacpp__file__decoder.html">FLAC++/decoder.h: file decoder class</a></td></tr>
24
 
<tr><td>&nbsp;</td><td><font size=-1><em>This class wraps the FLAC__FileDecoder.</em></font><br><br></td></tr>
25
 
 
26
 
<p>
 
11
</h1><hr><a name="_details"></a><h2>Detailed Description</h2>
 
12
This module describes the decoder layers provided by libFLAC++. 
 
13
<p>
 
14
The libFLAC++ decoder classes are object wrappers around their counterparts in libFLAC. All decoding layers available in libFLAC are also provided here. The interface is very similar; make sure to read the <a class="el" href="group__flac__decoder.html">libFLAC decoder module </a>.<p>
 
15
There are only two significant differences here. First, instead of passing in C function pointers for callbacks, you inherit from the decoder class and provide implementations for the callbacks in your derived class; because of this there is no need for a 'client_data' property.<p>
 
16
Second, there are two stream decoder classes. <a class="el" href="classFLAC_1_1Decoder_1_1Stream.html">FLAC::Decoder::Stream</a> is used for the same cases that <a class="el" href="group__flac__stream__decoder.html#ga36">FLAC__stream_decoder_init_stream()</a> / <a class="el" href="group__flac__stream__decoder.html#ga37">FLAC__stream_decoder_init_ogg_stream()</a> are used, and <a class="el" href="classFLAC_1_1Decoder_1_1File.html">FLAC::Decoder::File</a> is used for the same cases that <a class="el" href="group__flac__stream__decoder.html#ga38">FLAC__stream_decoder_init_FILE()</a> and <a class="el" href="group__flac__stream__decoder.html#ga40">FLAC__stream_decoder_init_file()</a> / <a class="el" href="group__flac__stream__decoder.html#ga39">FLAC__stream_decoder_init_ogg_FILE()</a> and <a class="el" href="group__flac__stream__decoder.html#ga41">FLAC__stream_decoder_init_ogg_file()</a> are used. 
 
17
<p>
 
18
<table border="0" cellpadding="0" cellspacing="0">
 
19
<tr><td></td></tr>
 
20
<tr><td colspan="2"><br><h2>Classes</h2></td></tr>
 
21
<tr><td class="memItemLeft" nowrap align="right" valign="top">class &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classFLAC_1_1Decoder_1_1Stream.html">FLAC::Decoder::Stream</a></td></tr>
 
22
 
 
23
<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">This class wraps the <a class="el" href="structFLAC____StreamDecoder.html">FLAC__StreamDecoder</a>. If you are decoding from a file, <a class="el" href="classFLAC_1_1Decoder_1_1File.html">FLAC::Decoder::File</a> may be more convenient.  <a href="classFLAC_1_1Decoder_1_1Stream.html#_details">More...</a><br></td></tr>
 
24
<tr><td class="memItemLeft" nowrap align="right" valign="top">class &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classFLAC_1_1Decoder_1_1File.html">FLAC::Decoder::File</a></td></tr>
 
25
 
 
26
<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">This class wraps the <a class="el" href="structFLAC____StreamDecoder.html">FLAC__StreamDecoder</a>. If you are not decoding from a file, you may need to use <a class="el" href="classFLAC_1_1Decoder_1_1Stream.html">FLAC::Decoder::Stream</a>.  <a href="classFLAC_1_1Decoder_1_1File.html#_details">More...</a><br></td></tr>
27
27
</table>
28
 
<hr><a name="_details"></a><h2>Detailed Description</h2>
29
 
This module describes the three decoder layers provided by libFLAC++.
30
 
<p>
31
28
 
32
 
<p>
33
 
 The libFLAC++ decoder classes are object wrappers around their counterparts in libFLAC. All three decoding layers available in libFLAC are also provided here. The interface is very similar; make sure to read the <a class="el" href="group__flac__decoder.html">libFLAC decoder module</a>.
34
 
<p>
35
 
The only real difference here is that instead of passing in C function pointers for callbacks, you inherit from the decoder class and provide implementations for the callbacks in the derived class; because of this there is no need for a 'client_data' property. <hr><address><small>Generated on Fri Feb 4 18:39:18 2005 for FLAC by
36
 
<a href="http://www.doxygen.org/index.html">
37
 
<img src="doxygen.gif" alt="doxygen" align="middle" border=0 
38
 
width=110 height=53></a>1.2.14 written by <a href="mailto:dimitri@stack.nl">Dimitri van Heesch</a>,
39
 
 &copy;&nbsp;1997-2002</small></address>
 
29
<hr size="1">
 
30
<div class="copyright">
 
31
        <!-- @@@ oh so hacky -->
 
32
        <table>
 
33
                <tr>
 
34
                        <td align="left">
 
35
                                Copyright (c) 2000,2001,2002,2003,2004,2005,2006,2007  Josh Coalson
 
36
                        </td>
 
37
                        <td width="1%" align="right">
 
38
                                <a href="http://sourceforge.net"><img src="http://sflogo.sourceforge.net/sflogo.php?group_id=13478&amp;type=1" width="88" height="31" border="0" alt="SourceForge.net Logo" /></a>
 
39
                        </td>
 
40
                </tr>
 
41
        </table>
 
42
</div>
 
43
<!-- Copyright (c)  2000,2001,2002,2003,2004,2005,2006,2007  Josh Coalson -->
 
44
<!-- Permission is granted to copy, distribute and/or modify this document -->
 
45
<!-- under the terms of the GNU Free Documentation License, Version 1.1 -->
 
46
<!-- or any later version published by the Free Software Foundation; -->
 
47
<!-- with no invariant sections. -->
 
48
<!-- A copy of the license can be found at http://www.gnu.org/copyleft/fdl.html -->
40
49
</body>
41
50
</html>