Searched refs:codec (Results 401 - 425 of 439) sorted by path

<<1112131415161718

/external/mesa3d/src/gallium/include/pipe/
H A Dp_video_state.h111 enum pipe_video_codec codec; member in struct:pipe_quant_matrix
116 enum pipe_video_codec codec; member in struct:pipe_macroblock
/external/mesa3d/src/gallium/state_trackers/xvmc/
H A Dsurface.c60 mb->base.codec = PIPE_VIDEO_CODEC_MPEG12;
/external/okhttp/benchmarks/src/main/java/com/squareup/okhttp/benchmarks/
H A DNettyHttpClient.java32 import io.netty.handler.codec.http.DefaultFullHttpRequest;
33 import io.netty.handler.codec.http.HttpClientCodec;
34 import io.netty.handler.codec.http.HttpContent;
35 import io.netty.handler.codec.http.HttpContentDecompressor;
36 import io.netty.handler.codec.http.HttpHeaders;
37 import io.netty.handler.codec.http.HttpMethod;
38 import io.netty.handler.codec.http.HttpObject;
39 import io.netty.handler.codec.http.HttpRequest;
40 import io.netty.handler.codec.http.HttpResponse;
41 import io.netty.handler.codec
[all...]
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/spdy/
H A DHuffmanTest.java50 private static void assertRoundTrip(Huffman.Codec codec, byte[] buf) throws IOException { argument
54 codec.encode(buf, dos);
55 assertEquals(baos.size(), codec.encodedLength(buf));
57 byte[] decodedBytes = codec.decode(baos.toByteArray());
/external/owasp/sanitizer/
H A DMakefile38 TEST_CLASSPATH=$(CLASSPATH):lib/htmlparser-1.3/htmlparser-1.3.jar:lib/junit/junit.jar:lib/commons-codec-1.4/commons-codec-1.4.jar:benchmark-data
125 java ${JASSERTS} -cp tools/emma/lib/emma.jar:lib/guava-libraries/guava.jar:lib/jsr305/jsr305.jar:lib/htmlparser-1.3/htmlparser-1.3.jar:lib/commons-codec-1.4/commons-codec-1.4.jar:benchmark-data \
/external/owasp/sanitizer/lib/commons-codec-1.4/
H A Dcommons-codec-1.4.jar ... MF org/ org/apache/ org/apache/commons/ org/apache/commons/codec/ org/apache/commons/codec/binary/ org/apache/commons/codec/digest ...
/external/owasp/sanitizer/src/tests/org/owasp/html/
H A DAntiSamyTest.java34 import org.apache.commons.codec.binary.Base64;
/external/pdfium/core/
H A DAndroid.mk144 src/fxcodec/codec/fx_codec.cpp \
145 src/fxcodec/codec/fx_codec_fax.cpp \
146 src/fxcodec/codec/fx_codec_flate.cpp \
147 src/fxcodec/codec/fx_codec_icc.cpp \
148 src/fxcodec/codec/fx_codec_jbig.cpp \
149 src/fxcodec/codec/fx_codec_jbig_enc.cpp \
150 src/fxcodec/codec/fx_codec_jpeg.cpp \
151 src/fxcodec/codec/fx_codec_jpx_opj.cpp \
/external/pdfium/core/src/fxge/Microsoft SDK/include/
H A DGdiPlusFlat.h2298 GdipAddImageCodec(GDIPCONST ImageCodecInfo *codec);
2301 GdipRemoveImageCodec(GDIPCONST ImageCodecInfo *codec);
H A DGdiPlusImageCodec.h61 IN const ImageCodecInfo* codec)
63 return DllExports::GdipAddImageCodec(codec);
68 IN const ImageCodecInfo* codec)
70 return DllExports::GdipRemoveImageCodec(codec);
60 AddImageCodec( IN const ImageCodecInfo* codec) argument
67 RemoveImageCodec( IN const ImageCodecInfo* codec) argument
/external/robolectric/
H A DAndroid.mk24 robolectric-commons-codec \
52 robolectric-commons-codec:lib/main/commons-codec-1.6.jar \
/external/robolectric/lib/main/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...
H A Dcommons-codec-1.6.jar ... MF org/ org/apache/ org/apache/commons/ org/apache/commons/codec/ org/apache/commons/codec/binary/ org/apache/commons/codec/digest ...
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowBase64.java6 import org.apache.commons.codec.binary.Base64;
/external/skia/experimental/PdfViewer/
H A Dchop_transparency_main.cpp102 SkImageDecoder* codec = SkImageDecoder::Factory(&stream); local
103 if (NULL == codec) {
107 SkAutoTDelete<SkImageDecoder> ad(codec);
111 if (!codec->decode(&stream, &bitmap, kN32_SkColorType, SkImageDecoder::kDecodePixels_Mode)) {
/external/skia/gm/
H A Dcmykjpeg.cpp42 SkImageDecoder* codec = SkImageDecoder::Factory(&stream); variable
43 if (codec) {
45 codec->setDitherImage(dither);
46 codec->decode(&stream, &fBitmap, kN32_SkColorType, SkImageDecoder::kDecodePixels_Mode);
47 SkDELETE(codec); variable
H A Ddownsamplebitmap.cpp179 SkImageDecoder* codec = NULL; variable
182 codec = SkImageDecoder::Factory(&stream);
184 if (codec) {
186 codec->decode(&stream, &fBM, kN32_SkColorType, SkImageDecoder::kDecodePixels_Mode);
187 SkDELETE(codec); variable
H A Dfilterbitmap.cpp201 SkImageDecoder* codec = NULL; variable
204 codec = SkImageDecoder::Factory(&stream);
206 if (codec) {
208 codec->decode(&stream, &fBM, kN32_SkColorType, SkImageDecoder::kDecodePixels_Mode);
209 SkDELETE(codec); variable
H A Dfilterindiabox.cpp111 SkImageDecoder* codec = NULL; local
114 codec = SkImageDecoder::Factory(&stream);
116 if (codec) {
118 codec->decode(&stream, &fBM, kN32_SkColorType, SkImageDecoder::kDecodePixels_Mode);
119 SkDELETE(codec);
/external/skia/include/core/
H A DSkImageDecoder.h174 * to some flavor of decode, it is still at the discretion of the codec
215 // Note: this is a hint, and the codec may choose to ignore this, or only
266 which will allocated a pixelRef. To access the pixel memory, the codec
526 #define DECLARE_DECODER_CREATOR(codec) \
527 SkImageDecoder *Create ## codec ();
531 #define DEFINE_DECODER_CREATOR(codec) \
532 SkImageDecoder *Create ## codec () { \
533 return SkNEW( Sk ## codec ); \
H A DSkImageEncoder.h81 #define DECLARE_ENCODER_CREATOR(codec) \
82 SkImageEncoder *Create ## codec ();
86 #define DEFINE_ENCODER_CREATOR(codec) \
87 SkImageEncoder *Create ## codec () { \
88 return SkNEW( Sk ## codec ); \
/external/skia/samplecode/
H A DSampleEncode.cpp123 SkAutoTDelete<SkImageEncoder> codec(
125 if (NULL == codec.get()) {
130 SkAutoDataUnref data(codec->encodeData(fBitmaps[i], 100));
H A DSampleSubpixelTranslate.cpp34 SkImageDecoder* codec = NULL; local
37 codec = SkImageDecoder::Factory(&stream);
39 if (codec) {
41 codec->decode(&stream, &fBM, kN32_SkColorType, SkImageDecoder::kDecodePixels_Mode);
42 SkDELETE(codec);
/external/skia/src/images/
H A DSkImageDecoder.cpp297 SkImageDecoder* codec = SkImageDecoder::Factory(stream); local
299 if (NULL != codec) {
300 success = codec->decode(stream, bm, pref, mode);
302 *format = codec->getFormat();
309 delete codec;
H A DSkImageDecoder_FactoryRegistrar.cpp22 SkImageDecoder* codec = NULL; local
25 codec = curr->factory()(stream);
34 SkDELETE(codec);
38 if (codec) {
39 return codec;

Completed in 432 milliseconds

<<1112131415161718