HomeSort by relevance Sort by last modified time
    Searched full:vorbis (Results 26 - 50 of 263) sorted by null

12 3 4 5 6 7 8 91011

  /external/libvorbis/doc/vorbisfile/
seeking_example_c.html 29 #include "vorbis/codec.h"
30 #include "vorbis/vorbisfile.h"
77 <td align=right><p class=tiny><a href="http://www.xiph.org/ogg/vorbis/index.html">Ogg Vorbis</a><br><a href="mailto:team@vorbis.org">team@vorbis.org</a></p></td>
seeking_test_c.html 29 #include "vorbis/codec.h"
30 #include "vorbis/vorbisfile.h"
77 <td align=right><p class=tiny><a href="http://www.xiph.org/ogg/vorbis/index.html">Ogg Vorbis</a><br><a href="mailto:team@vorbis.org">team@vorbis.org</a></p></td>
vorbis_comment.html 18 <p><i>declared in "vorbis/codec.h"</i></p>
21 The vorbis_comment structure defines an Ogg Vorbis comment.
46 <dd>Unlimited user comment array. The individual strings in the array are 8 bit clean, by the Vorbis specification, and as such the <tt>comment_lengths</tt> array should be consulted to determine string length. For convenience, each string is also NULL-terminated by the decode library (although Vorbis comments are not NULL terminated within the bitstream itself).</dd>
61 <td align=right><p class=tiny><a href="http://www.xiph.org/ogg/vorbis/">Ogg Vorbis</a></p></td>
vorbis_info.html 18 <p><i>declared in "vorbis/codec.h"</i></p>
21 The vorbis_info structure contains basic information about the audio in a vorbis bitstream.
47 <dd>Vorbis encoder version used to create this bitstream.</dd>
62 <dd>Internal structure that contains the detailed/unpacked configuration for decoding the current Vorbis bitstream.</dd>
71 <td align=right><p class=tiny><a href="http://www.xiph.org/ogg/vorbis/">Ogg Vorbis</a></p></td>
ov_read_float.html 18 <p><i>declared in "vorbis/vorbisfile.h";</i></p>
21 This is the function used to decode a Vorbis file within a loop, but
71 decode at most one vorbis packet per invocation, so the value
91 <td><p class=tiny>copyright &copy; 2002 vorbis team</p></td>
92 <td align=right><p class=tiny><a href="http://www.xiph.org/ogg/vorbis/index.html">Ogg Vorbis</a><br><a href="mailto:team@vorbis.org">team@vorbis.org</a></p></td>
ov_fopen.html 18 <p><i>declared in "vorbis/vorbisfile.h";</i></p>
33 whether a given file is a Vorbis bitstream. If the <tt>ov_fopen()</tt>
35 recognizable as Vorbis (errno unchanged). If the call succeeds but
71 <li>OV_ENOTVORBIS - Bitstream does not contain any Vorbis data.</li>
72 <li>OV_EVERSION - Vorbis version mismatch.</li>
73 <li>OV_EBADHEADER - Invalid Vorbis bitstream header.</li>
96 Vorbis content in mixed-media Ogg streams, not just Vorbis-only
98 audio from an Ogg stream consisting of Theora video and Vorbis audio.
102 <dt><b>[c] Faster testing for Vorbis files</b><p
    [all...]
seekingexample.html 21 This program takes a vorbis bitstream from stdin and writes raw pcm to stdout.
24 First, relevant headers, including vorbis-specific "codec.h" and "vorbisfile.h" have to be included.
34 #include "vorbis/codec.h"
35 #include "vorbis/vorbisfile.h"
91 <a href="ov_open_callbacks.html">ov_open_callbacks()</a> also checks to ensure that we're reading Vorbis format and not something else.
186 The full source for vorbisfile_example.c can be found with the vorbis
193 <td><p class=tiny>copyright &copy; 2000 vorbis team</p></td>
194 <td align=right><p class=tiny><a href="http://www.xiph.org/ogg/vorbis/">Ogg Vorbis</a><br><a href="mailto:team@vorbis.org">team@vorbis.org</a></p></td
    [all...]
crosslap.html 21 is nearly identical to how Vorbis internally splices together frames
30 <p>Vorbis is a lossy compression format such that any compressed
46 <h2>I thought Vorbis was gapless</h2>
48 <p>It is. Vorbis introduces no extra samples at the beginning or end
56 <p>Frame lapping, like Vorbis performs internally during continuous
61 The easiest way to perform crosslapping in Vorbis is to use the
99 crosslapping to perform exactly as it would within vorbis when
104 size selection; for vorbis 1.0, for -q0 through -q10 and 44kHz or
112 <td align=right><p class=tiny><a href="http://www.xiph.org/ogg/vorbis/">Ogg Vorbis</a></p></td
    [all...]
initialization.html 17 libvorbisfile, a bitstream containing Vorbis audio must be properly
21 it for Vorbis content, and prepare it for playback. A successful <a
42 All libvorbisfile initialization and deallocation routines are declared in "vorbis/vorbisfile.h".
52 <td>Opens a file and initializes the Ogg Vorbis bitstream with default values. This must be called before other functions in the library may be
57 <td>Initializes the Ogg Vorbis bitstream with default values from a passed in file handle. This must be called before other functions in the library may be
62 <td>Initializes the Ogg Vorbis bitstream from a file handle and custom file/bitstream manipulation routines. Used instead of <a href="ov_open.html">ov_open()</a> or <a href="ov_fopen.html">ov_fopen()</a> when altering or replacing libvorbis's default stdio I/O behavior, or when a bitstream must be initialized from a <tt>FILE *</tt> under Windows.</td>
69 is an Ogg Vorbis file or not. A successful return indicates that the
70 file appears to be an Ogg Vorbis file, but the <a
109 <td align=right><p class=tiny><a href="http://www.xiph.org/ogg/vorbis/">Ogg Vorbis</a></p></td
    [all...]
chaining_example_c.html 27 <font color="#A020F0">#include &lt;vorbis/codec.h&gt;</font>
28 <font color="#A020F0">#include &lt;vorbis/vorbisfile.h&gt;</font>
81 <td align=right><p class=tiny><a href="http://www.xiph.org/ogg/vorbis/index.html">Ogg Vorbis</a><br><a href="mailto:team@vorbis.org">team@vorbis.org</a></p></td>
vorbisfile_example_c.html 29 #include "vorbis/codec.h"
30 #include "vorbis/vorbisfile.h"
97 <td align=right><p class=tiny><a href="http://www.xiph.org/ogg/vorbis/index.html">Ogg Vorbis</a><br><a href="mailto:team@vorbis.org">team@vorbis.org</a></p></td>
index.html 21 decoding and basic manipulation of all Vorbis I audio streams.
40 <td align=right><p class=tiny><a href="http://www.xiph.org/ogg/vorbis/">Ogg Vorbis</a></p></td>
  /external/libvorbis/
vorbisenc-uninstalled.pc.in 11 Requires: vorbis
vorbisenc.pc.in 11 Requires: vorbis
libvorbis.spec 4 Summary: The Vorbis General Audio Compression Codec.
10 Source: http://downloads.xiph.org/releases/vorbis/%{name}-%{version}.tar.gz
25 Ogg Vorbis is a fully open, non-proprietary, patent-and-royalty-free,
30 Summary: Vorbis Library Development
75 %{_datadir}/aclocal/vorbis.m4
76 %dir %{_includedir}/vorbis
77 %{_includedir}/vorbis/codec.h
78 %{_includedir}/vorbis/vorbisfile.h
79 %{_includedir}/vorbis/vorbisenc.h
89 %{_libdir}/pkgconfig/vorbis.p
    [all...]
libvorbis.spec.in 4 Summary: The Vorbis General Audio Compression Codec.
10 Source: http://downloads.xiph.org/releases/vorbis/%{name}-%{version}.tar.gz
25 Ogg Vorbis is a fully open, non-proprietary, patent-and-royalty-free,
30 Summary: Vorbis Library Development
75 %{_datadir}/aclocal/vorbis.m4
76 %dir %{_includedir}/vorbis
77 %{_includedir}/vorbis/codec.h
78 %{_includedir}/vorbis/vorbisfile.h
79 %{_includedir}/vorbis/vorbisenc.h
89 %{_libdir}/pkgconfig/vorbis.p
    [all...]
  /external/libvorbis/win32/
vorbis.def 2 ; $Id: vorbis.def 16335 2009-07-25 22:52:38Z cristianadam $
  /external/libvorbis/test/
util.c 13 function: utility functions for vorbis codec test suite.
24 #include <vorbis/codec.h>
25 #include <vorbis/vorbisenc.h>
write_read.h 13 function: utility functions for vorbis codec test suite.
18 /* Write supplied data to an Ogg/Vorbis file with specified filename at
23 /* Read given Ogg/Vorbis file into data specified data array. This
  /external/libvorbis/doc/
vorbis-clip.txt 3 Sample granularity editing of a Vorbis file; inferred arbitrary sample
8 Vorbis, like mp3, is a frame-based* audio compression where audio is
16 a 'frame'; the roughly equivalent Vorbis construct is a 'packet'.
18 Thus, when we edit a Vorbis stream, the finest physical editing
22 backward or forward over frames. In Vorbis, packets are all
23 stand-alone). Thus, at the physical packet level, Vorbis is still
26 However, Vorbis streams may still exactly represent and be edited to a
29 edit points be packet aligned. Vorbis makes use of Ogg stream
36 Vorbis packets are bundled into into Ogg pages (note that pages do not
49 This granule position mechaism in Ogg is used by Vorbis to indicate when th
    [all...]
09-helper.tex 4 \section{Helper equations} \label{vorbis:spec:helper}
8 The equations below are used in multiple places by the Vorbis codec
15 \subsubsection{ilog} \label{vorbis:spec:ilog}
48 \subsubsection{float32_unpack} \label{vorbis:spec:float32:unpack}
51 representation of a Vorbis codebook float value into the
53 purposes of this example, we will unpack a Vorbis float32 into a
66 \subsubsection{lookup1_values} \label{vorbis:spec:lookup1:values}
81 \subsubsection{low_neighbor} \label{vorbis:spec:low:neighbor}
88 \subsubsection{high_neighbor} \label{vorbis:spec:high:neighbor}
97 \subsubsection{render_point} \label{vorbis:spec:render:point
    [all...]
vorbis-errors.txt 29 OV_ENOTVORBIS Bitstream/page/packet is not Vorbis data.
31 OV_EBADHEADER Invalid Vorbis bitstream header.
33 OV_EVERSION Vorbis version mismatch.
  /external/libvorbis/doc/vorbisenc/
reference.html 64 <td><p class=tiny>copyright &copy; 2004 vorbis team</p></td>
65 <td align=right><p class=tiny><a href="http://www.xiph.org/ogg/vorbis/index.html">Ogg Vorbis</a><br><a href="mailto:team@vorbis.org">team@vorbis.org</a></p></td>
vorbis_encode_init_vbr.html 18 <p><i>declared in "vorbis/vorbisenc.h";</i></p>
71 <td align=right><p class=tiny><a href="http://www.xiph.org/ogg/vorbis/index.html">Ogg Vorbis</a><br><a href="mailto:team@vorbis.org">team@vorbis.org</a></p></td>
ov_ectl_ratemanage_arg.html 4 <title>vorbis - datatype - ov_ectl_ratemanage_arg</title>
18 <p><i>declared in "vorbis/vorbisenc.h"</i></p>
82 <td><p class=tiny>copyright &copy; 2004 vorbis team</p></td>
83 <td align=right><p class=tiny><a href="http://www.xiph.org/ogg/vorbis/index.html">Ogg Vorbis</a><br><a href="mailto:team@vorbis.org">team@vorbis.org</a></p></td>

Completed in 312 milliseconds

12 3 4 5 6 7 8 91011