Searched refs:codec (Results 1 - 25 of 287) sorted by relevance

1234567891011>>

/external/skia/tests/
H A DExifTest.cpp19 std::unique_ptr<SkCodec> codec(SkCodec::NewFromStream(stream.release()));
20 REPORTER_ASSERT(r, nullptr != codec);
21 SkCodec::Origin origin = codec->getOrigin();
25 codec.reset(SkCodec::NewFromStream(stream.release()));
26 REPORTER_ASSERT(r, nullptr != codec);
27 origin = codec->getOrigin();
H A DBadIcoTest.cpp35 std::unique_ptr<SkCodec> codec(SkCodec::NewFromStream(stream.release()));
37 // These images are corrupt. It's not important whether we succeed/fail in codec
39 if (codec) {
41 bm.allocPixels(codec->getInfo());
42 codec->getPixels(codec->getInfo(), bm.getPixels(),
H A DCodecPriv.h15 std::unique_ptr<SkCodec> codec(SkCodec::NewFromData(SkData::MakeWithoutCopy(mem, size)));
16 if (!codec) {
25 if (kIndex_8_SkColorType == codec->getInfo().colorType()) {
32 bm->allocPixels(codec->getInfo(), nullptr, colorTable.get());
33 const SkCodec::Result result = codec->getPixels(codec->getInfo(), bm->getPixels(),
/external/protobuf/csharp/src/Google.Protobuf.Test/
H A DFieldCodecTest.cs68 public void RoundTripWithTag(ICodecTestData codec) argument
70 codec.TestRoundTripWithTag();
74 public void RoundTripRaw(ICodecTestData codec) argument
76 codec.TestRoundTripRaw();
80 public void CalculateSize(ICodecTestData codec) argument
82 codec.TestCalculateSizeWithTag();
86 public void DefaultValue(ICodecTestData codec) argument
88 codec.TestDefaultValue();
92 public void FixedSize(ICodecTestData codec) argument
94 codec
111 private readonly FieldCodec<T> codec; field in class:Google.Protobuf.FieldCodecTest.FieldCodecTestData
115 FieldCodecTestData(FieldCodec<T> codec, T sampleValue, string name) argument
[all...]
/external/libvorbis/include/vorbis/
H A DMakefile.am5 vorbisinclude_HEADERS = codec.h vorbisfile.h vorbisenc.h
/external/apache-http/src/org/apache/commons/codec/
H A DBinaryDecoder.java17 package org.apache.commons.codec;
H A DBinaryEncoder.java17 package org.apache.commons.codec;
H A DDecoder.java17 package org.apache.commons.codec;
25 * implementation in the codec package.</p>
27 * <p>One of the two interfaces at the center of the codec package.</p>
H A DDecoderException.java17 package org.apache.commons.codec;
H A DEncoder.java17 package org.apache.commons.codec;
23 * generic Object to any Encoder implementation in the codec package.</p>
H A DEncoderException.java17 package org.apache.commons.codec;
H A DStringDecoder.java17 package org.apache.commons.codec;
H A DStringEncoder.java17 package org.apache.commons.codec;
/external/libvpx/libvpx/test/
H A Dcx_set_ref.sh27 # $1 is the codec name.
29 local codec="$1"
30 local encoder="${LIBVPX_BIN_PATH}/${codec}cx_set_ref${VPX_TEST_EXE_SUFFIX}"
31 local output_file="${VPX_TEST_OUTPUT_DIR}/${codec}cx_set_ref_${codec}.ivf"
H A Dset_maps.sh31 # Runs set_maps using the codec specified by $1.
34 local codec="$1"
35 local output_file="${VPX_TEST_OUTPUT_DIR}/set_maps_${codec}.ivf"
37 eval "${VPX_TEST_PREFIX}" "${encoder}" "${codec}" "${YUV_RAW_INPUT_WIDTH}" \
H A Dsimple_encoder.sh26 # Runs simple_encoder using the codec specified by $1 with a frame limit of 100.
29 local codec="$1"
30 local output_file="${VPX_TEST_OUTPUT_DIR}/simple_encoder_${codec}.ivf"
37 eval "${VPX_TEST_PREFIX}" "${encoder}" "${codec}" "${YUV_RAW_INPUT_WIDTH}" \
H A Dtwopass_encoder.sh26 # Runs twopass_encoder using the codec specified by $1 with a frame limit of
30 local codec="$1"
31 local output_file="${VPX_TEST_OUTPUT_DIR}/twopass_encoder_${codec}.ivf"
38 eval "${VPX_TEST_PREFIX}" "${encoder}" "${codec}" "${YUV_RAW_INPUT_WIDTH}" \
/external/sl4a/Common/src/org/apache/commons/codec/
H A DBinaryDecoder.java18 package org.apache.commons.codec;
H A DBinaryEncoder.java18 package org.apache.commons.codec;
H A DDecoder.java18 package org.apache.commons.codec;
26 * implementation in the codec package.</p>
28 * <p>One of the two interfaces at the center of the codec package.</p>
H A DEncoder.java18 package org.apache.commons.codec;
24 * generic Object to any Encoder implementation in the codec package.</p>
/external/libvpx/libvpx/examples/
H A Dpostproc.c18 // You must inform the codec that you might request postprocessing at
20 // flag to `vpx_codec_dec_init`. If the codec does not support
23 // the codec does not provide support.
30 // special value 0 indicates that the codec should take as long as
32 // codec 15ms (15000us) to return a frame. Remember that this is a soft
33 // deadline, and the codec may exceed it doing its regular processing. In
63 vpx_codec_ctx_t codec; local
82 if (!decoder) die("Unknown input codec.");
86 res = vpx_codec_dec_init(&codec, decoder->codec_interface(), NULL,
89 die_codec(&codec, "Postpro
[all...]
/external/apache-http/src/org/apache/commons/codec/net/
H A DStringEncodings.java17 package org.apache.commons.codec.net;
/external/skia/src/android/
H A DSkBitmapRegionDecoder.cpp25 std::unique_ptr<SkAndroidCodec> codec(
27 if (nullptr == codec) {
28 SkCodecPrintf("Error: Failed to create codec.\n");
32 switch ((SkEncodedImageFormat)codec->getEncodedFormat()) {
41 return new SkBitmapRegionCodec(codec.release());
/external/skia/src/codec/
H A DSkRawAdapterCodec.cpp12 SkRawAdapterCodec::SkRawAdapterCodec(SkRawCodec* codec) argument
13 : INHERITED(codec)
18 return this->codec()->getScaledDimensions(scale);
27 return this->codec()->getPixels(

Completed in 2135 milliseconds

1234567891011>>