Searched defs:decode (Results 1 - 25 of 167) sorted by relevance

1234567

/external/libvorbis/doc/
H A D06-floor0.tex4 \section{Floor type 0 setup and decode} \label{vorbis:spec:floor0}
24 \subsubsection{header decode}
27 codec setup header (third packet). configuration decode proceeds as
48 \subsubsection{packet decode} \label{vorbis:spec:floor0-decode}
56 Packet decode proceeds as follows:
62 5) if ( [booknumber] is greater than the highest number decode codebook ) then packet is undecodable
76 Take note of the following properties of decode:
78 \item An \varname{[amplitude]} value of zero must result in a return code that indicates this channel is unused in this frame (the output of the channel will be all-zeroes in synthesis). Several later stages of decode don't occur for an unused channel.
79 \item An end-of-packet condition during decode shoul
[all...]
H A D07-floor1.tex4 \section{Floor type 1 setup and decode} \label{vorbis:spec:floor1}
87 behavior is used for actual decode, as described later. The actual
94 \subsubsection{header decode}
97 format (used in list order during packet decode and synthesis). This
167 \paragraph{packet decode} \label{vorbis:spec:floor1-decode}
169 Packet decode begins by checking the \varname{[nonzero]} flag:
183 Assuming \varname{[nonzero]} is set, decode proceeds as follows:
226 An end-of-packet condition during curve decode should be considered a
228 operation above, floor decode i
[all...]
H A D08-residue.tex4 \section{Residue setup and decode} \label{vorbis:spec:residue}
17 vectors during decode. Vorbis makes use of three different encoding
48 decode that partition. The classification numbers of each partition
63 from multiple decode passes. The classification value associated with
144 as in type 1 with decode interleave reversed. If operating on a single
153 \subsection{Residue decode}
155 \subsubsection{header decode}
157 Header decode for all three residue types is identical.
231 An end-of-packet condition at any point in header decode renders the
241 \subsubsection{packet decode}
[all...]
H A D04-codec.tex10 bit-by-bit decode specification of Vorbis I. This document assumes a
11 high-level understanding of the Vorbis decode process, which is
17 \subsection{Header decode and decode setup}
21 and the setup header. All are required for decode compliance. An
26 \subsubsection{Common header decode}
86 Comment header decode and data specification is covered in
101 needed for decode. The setup header contains, in order, the lists of
105 configurations. It finishes with a framing bit of '1'. Header decode
135 Vorbis uses two floor types; header decode i
[all...]
/external/apache-http/src/org/apache/commons/codec/
H A DBinaryDecoder.java37 * the decode process.
39 byte[] decode(byte[] pArray) throws DecoderException; method in interface:BinaryDecoder
H A DDecoder.java40 * this decode method will throw a DecoderException.
42 * @param pObject an object to "decode"
52 Object decode(Object pObject) throws DecoderException; method in interface:Decoder
H A DStringDecoder.java37 String decode(String pString) throws DecoderException; method in interface:StringDecoder
/external/okhttp/okio/src/main/java/okio/
H A DBase64.java30 public static byte[] decode(String in) { method in class:Base64
/external/glide/library/src/main/java/com/bumptech/glide/load/
H A DResourceDecoder.java14 public Resource<Z> decode(T source, int width, int height) throws IOException; method in interface:ResourceDecoder
/external/nist-sip/java/gov/nist/javax/sip/address/
H A DRFC2396UrlDecoder.java44 * <p>This method differs from URLDecoder.decode in that it always uses UTF-8
48 * @param uri the path to decode
51 public static String decode(String uri) { method in class:RFC2396UrlDecoder
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowBase64.java18 public static byte[] decode(String str, int flags) { method in class:ShadowBase64
/external/smack/src/com/kenai/jbosh/
H A DGZIPCodec.java77 * Uncompress/decode the data provided using the GZIP format.
83 public static byte[] decode(final byte[] compressed) throws IOException { method in class:GZIPCodec
H A DZLIBCodec.java77 * Uncompress/decode the data provided using the ZLIB format.
83 public static byte[] decode(final byte[] compressed) throws IOException { method in class:ZLIBCodec
/external/smack/src/org/jivesoftware/smack/util/
H A DBase64Encoder.java38 public String decode(String s) { method in class:Base64Encoder
39 return new String(Base64.decode(s));
H A DBase64FileUrlEncoder.java44 public String decode(String s) { method in class:Base64FileUrlEncoder
45 return new String(Base64.decode(s, Base64.URL_SAFE));
H A DStringEncoder.java35 String decode(String string); method in interface:StringEncoder
/external/apache-http/src/org/apache/commons/codec/net/
H A DBCodec.java140 * A decoder exception is thrown if a failure condition is encountered during the decode process.
142 public String decode(String value) throws DecoderException { method in class:BCodec
185 * A decoder exception is thrown if a failure condition is encountered during the decode process.
187 public Object decode(Object value) throws DecoderException { method in class:BCodec
191 return decode((String) value);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/util/
H A DDSAEncoder.java11 BigInteger[] decode(byte[] sig) method in interface:DSAEncoder
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/encoders/
H A DBase64.java93 * decode the base 64 encoded input data. It is assumed the input data is valid.
97 public static byte[] decode( method in class:Base64
105 encoder.decode(data, 0, data.length, bOut);
109 throw new DecoderException("unable to decode base64 data: " + e.getMessage(), e);
116 * decode the base 64 encoded String data - whitespace will be ignored.
120 public static byte[] decode( method in class:Base64
128 encoder.decode(data, bOut);
132 throw new DecoderException("unable to decode base64 string: " + e.getMessage(), e);
139 * decode the base 64 encoded String data writing it to the given output stream,
144 public static int decode( method in class:Base64
[all...]
H A DEncoder.java7 * Encode and decode byte arrays (typically from binary to 7-bit ASCII
14 int decode(byte[] data, int off, int length, OutputStream out) throws IOException; method in interface:Encoder
16 int decode(String data, OutputStream out) throws IOException; method in interface:Encoder
H A DHex.java92 * decode the Hex encoded input data. It is assumed the input data is valid.
96 public static byte[] decode( method in class:Hex
103 encoder.decode(data, 0, data.length, bOut);
114 * decode the Hex encoded String data - whitespace will be ignored.
118 public static byte[] decode( method in class:Hex
125 encoder.decode(data, bOut);
136 * decode the Hex encoded String data writing it to the given output stream,
141 public static int decode( method in class:Hex
146 return encoder.decode(data, out);
H A DHexEncoder.java75 * decode the Hex encoded byte data writing it to the given output stream,
80 public int decode( method in class:HexEncoder
133 * decode the Hex encoded String data writing it to the given output stream,
138 public int decode( method in class:HexEncoder
/external/chromium_org/content/public/android/javatests/src/org/chromium/content/browser/
H A DEncodeHtmlDataUriTest.java24 private String decode(String dataUri) throws java.io.UnsupportedEncodingException { method in class:EncodeHtmlDataUriTest
26 return URLDecoder.decode(data, "UTF-8");
33 String decodedUri = decode(encodedUri);
41 String decodedUri = decode(encodedUri);
49 String decodedUri = decode(encodedUri);
58 String decodedUri = decode(encodedUri);
/external/chromium_org/third_party/WebKit/Source/modules/encoding/
H A DTextDecoder.h55 String decode(ArrayBufferView*, const Dictionary&, ExceptionState&);
56 String decode(ExceptionState& exceptionState) { return decode(0, Dictionary(), exceptionState); } function in class:WebCore::FINAL
/external/chromium_org/third_party/WebKit/Source/wtf/text/
H A DTextCodecReplacement.cpp44 String TextCodecReplacement::decode(const char*, size_t, FlushBehavior, bool, bool& sawError) function in class:WTF::TextCodecReplacement

Completed in 1981 milliseconds

1234567