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

123456

/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.java42 * the decode process.
44 byte[] decode(byte[] pArray) throws DecoderException; method in interface:BinaryDecoder
H A DDecoder.java45 * this decode method will throw a DecoderException.
47 * @param pObject an object to "decode"
57 Object decode(Object pObject) throws DecoderException; method in interface:Decoder
H A DStringDecoder.java42 String decode(String pString) throws DecoderException; method in interface:StringDecoder
/external/apache-commons-math/src/main/java/org/apache/commons/math/genetics/
H A DPermutationChromosome.java42 List<T> decode(List<T> sequence); method in interface:PermutationChromosome
/external/chromium-trace/trace-viewer/third_party/webapp2/webapp2_extras/
H A Djson.py58 def decode(value, *args, **kwargs): function
73 value = value.decode('utf-8')
90 Parameters and return value are the same from :func:`decode`.
92 return decode(base64.b64decode(value), *args, **kwargs)
106 Parameters and return value are the same from :func:`decode`.
108 return decode(urllib.unquote(value), *args, **kwargs)
/external/glide/library/src/main/java/com/bumptech/glide/load/
H A DResourceDecoder.java33 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/okhttp/okio/okio/src/main/java/okio/
H A DBase64.java29 public static byte[] decode(String in) { method in class:Base64
/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/apache-http/src/org/apache/commons/codec/net/
H A DBCodec.java145 * A decoder exception is thrown if a failure condition is encountered during the decode process.
147 public String decode(String value) throws DecoderException { method in class:BCodec
190 * A decoder exception is thrown if a failure condition is encountered during the decode process.
192 public Object decode(Object value) throws DecoderException { method in class:BCodec
196 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.java96 * decode the base 64 encoded input data. It is assumed the input data is valid.
100 public static byte[] decode( method in class:Base64
108 encoder.decode(data, 0, data.length, bOut);
112 throw new DecoderException("unable to decode base64 data: " + e.getMessage(), e);
119 * decode the base 64 encoded String data - whitespace will be ignored.
123 public static byte[] decode( method in class:Base64
131 encoder.decode(data, bOut);
135 throw new DecoderException("unable to decode base64 string: " + e.getMessage(), e);
142 * decode the base 64 encoded String data writing it to the given output stream,
147 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.java95 * decode the Hex encoded input data. It is assumed the input data is valid.
99 public static byte[] decode( method in class:Hex
106 encoder.decode(data, 0, data.length, bOut);
117 * decode the Hex encoded String data - whitespace will be ignored.
121 public static byte[] decode( method in class:Hex
128 encoder.decode(data, bOut);
139 * decode the Hex encoded String data writing it to the given output stream,
144 public static int decode( method in class:Hex
149 return encoder.decode(data, out);
H A DHexEncoder.java78 * decode the Hex encoded byte data writing it to the given output stream,
83 public int decode( method in class:HexEncoder
136 * decode the Hex encoded String data writing it to the given output stream,
141 public int decode( method in class:HexEncoder
/external/dexmaker/src/dx/java/com/android/dx/util/
H A DMutf8.java33 public static String decode(ByteInput in, char[] out) throws UTFDataFormatException { method in class:Mutf8
/external/glide/library/src/main/java/com/bumptech/glide/load/resource/
H A DNullDecoder.java27 public Resource<Z> decode(T source, int width, int height) { method in class:NullDecoder
/external/glide/library/src/main/java/com/bumptech/glide/load/resource/bitmap/
H A DBitmapDecoder.java11 * @param <T> The type of resource this decoder can decode a {@link Bitmap} from.
17 * @param resource The resource to decode, managed by the caller, no need to clean it up.
25 Bitmap decode(T resource, BitmapPool bitmapPool, int outWidth, int outHeight, DecodeFormat decodeFormat) method in interface:BitmapDecoder
H A DFileDescriptorBitmapDecoder.java44 public Resource<Bitmap> decode(ParcelFileDescriptor source, int width, int height) throws IOException { method in class:FileDescriptorBitmapDecoder
45 Bitmap bitmap = bitmapDecoder.decode(source, bitmapPool, width, height, decodeFormat);
H A DImageVideoBitmapDecoder.java32 // @see ResourceDecoder.decode
34 public Resource<Bitmap> decode(ImageVideoWrapper source, int width, int height) throws IOException { method in class:ImageVideoBitmapDecoder
39 result = streamDecoder.decode(is, width, height);
50 result = fileDescriptorDecoder.decode(fileDescriptor, width, height);
/external/glide/library/src/main/java/com/bumptech/glide/load/resource/file/
H A DFileDecoder.java14 public Resource<File> decode(File source, int width, int height) { method in class:FileDecoder

Completed in 431 milliseconds

123456