HomeSort by relevance Sort by last modified time
    Searched full:decoder (Results 126 - 150 of 1130) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/speex/include/speex/
speex.h 38 /** @defgroup Codec Speex encoder and decoder
52 /** Set enhancement on/off (decoder only) */
54 /** Get enhancement state (decoder only) */
58 /** Obtain frame size used by encoder/decoder */
98 /** Get current bit-rate used by the encoder or decoder */
112 /** Reset the encoder/decoder memories to zero*/
232 /** Decoder state initialization function */
235 /** Decoder state destruction function */
241 /** Function for controlling the decoder options */
275 /** Pointer to decoder initialization function *
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/cairo/
GraphicsContext3DCairo.cpp 46 ImageSource decoder(premultiplyAlpha ? ImageSource::AlphaPremultiplied : ImageSource::AlphaNotPremultiplied,
51 decoder.setData(image->data(), true);
52 if (!decoder.frameCount() || !decoder.frameIsCompleteAtIndex(0))
54 imageSurface = decoder.createFrameAtIndex(0);
  /external/webkit/Source/WebKit2/UIProcess/
WebContextUserMessageCoders.h 99 static bool decode(CoreIPC::ArgumentDecoder* decoder, WebContextUserMessageDecoder& coder)
102 if (!Base::baseDecode(decoder, coder, type))
111 if (!decoder->decode(pageID))
118 if (!decoder->decode(frameID))
125 if (!decoder->decode(pageGroupID))
  /external/webkit/Source/WebKit2/WebProcess/InjectedBundle/
InjectedBundleUserMessageCoders.h 100 static bool decode(CoreIPC::ArgumentDecoder* decoder, InjectedBundleUserMessageDecoder& coder)
103 if (!Base::baseDecode(decoder, coder, type))
112 if (!decoder->decode(pageID))
119 if (!decoder->decode(frameID))
126 if (!decoder->decode(pageGroupData))
  /frameworks/media/libvideoeditor/vss/common/inc/
NXPSW_CompilerSwitches_MCS.h 41 /* ----- AMR NB decoder support ----- */
44 /* ----- AAC decoder support ----- */
48 /* ----- MP4/H263 video decoder support ----- */
57 /* ----- MP3 decoder support----- */
61 /* ----- NULL decoder support----- */
  /external/webkit/Source/WebCore/platform/network/
FormData.cpp 37 #include <wtf/Decoder.h>
367 static bool decode(Decoder& decoder, FormDataElement& element)
370 if (!decoder.decodeUInt32(type))
377 if (!decoder.decodeBytes(data))
387 if (!decoder.decodeString(element.m_filename))
389 if (!decoder.decodeBool(element.m_shouldGenerateFile))
392 if (!decoder.decodeInt64(fileStart))
397 if (!decoder.decodeInt64(fileLength))
402 if (!decoder.decodeDouble(expectedFileModificationTime)
    [all...]
  /frameworks/media/libvideoeditor/vss/src/
M4VSS3GPP_Codecs.c 342 * @brief Register video decoder
344 * @param decoderType (IN) Decoder type
345 * @param pDecoderInterface (IN) Decoder interface.
348 * or the decoder type is invalid
358 "M4VSS3GPP_registerVideoDecoder: invalid pointer on decoder interface");
363 "Invalid video decoder type");
370 /* a decoder corresponding to this media type has already been registered !*/
373 "Decoder has already been registered");
378 but which still has the built-in one to be able to work without an external decoder; in
379 this case the new decoder simply replaces the old one (i.e. we unregister it first). *
    [all...]
  /libcore/luni/src/test/java/libcore/java/nio/charset/
OldCharsetEncoderDecoderBufferTest.java 28 * Checks for ICU encoder/decoder buffer corruption.
38 CharsetDecoder decoder = Charset.forName("UTF-8").newDecoder(); local
43 decoder.decode(ByteBuffer.wrap(new byte[]{(byte)'a', (byte)'b', (byte)'c', (byte)'d'}),
53 decoder.decode(ByteBuffer.wrap(new byte[]{(byte)'x'}), out, true);
70 CharsetDecoder decoder = Charset.forName("UTF-8").newDecoder(); local
76 decoder.decode(inWithArray, out, false);
83 decoder.decode(inWithoutArray, out, true);
OldCharset_SingleByteAbstractTest.java 51 decoder.onMalformedInput(CodingErrorAction.REPLACE);
53 outputCB = decoder.decode(inputBB);
67 decoder.onMalformedInput(CodingErrorAction.REPLACE);
68 decoder.onUnmappableCharacter(CodingErrorAction.REPLACE);
69 outputCB = decoder.decode(inputBB);
92 // decoder.onMalformedInput(CodingErrorAction.REPLACE);
93 // outputCB = decoder.decode(inputBB);
  /sdk/emulator/qtools/
trace_reader_base.h 156 class Decoder;
186 Decoder *decoder_;
201 Decoder *decoder_;
217 Decoder *decoder_;
236 Decoder *decoder_;
252 Decoder *decoder_;
266 Decoder *decoder_;
  /external/chromium/net/http/
http_chunked_decoder_unittest.cc 18 net::HttpChunkedDecoder decoder; local
19 EXPECT_FALSE(decoder.reached_eof());
25 int n = decoder.FilterBuf(&input[0], static_cast<int>(input.size()));
32 EXPECT_EQ(expected_eof, decoder.reached_eof());
33 EXPECT_EQ(bytes_after_eof, decoder.bytes_after_eof());
36 // Feed the inputs to the decoder, until it returns an error.
40 net::HttpChunkedDecoder decoder; local
41 EXPECT_FALSE(decoder.reached_eof());
45 int n = decoder.FilterBuf(&input[0], static_cast<int>(input.size()));
  /frameworks/base/media/libstagefright/rtsp/
rtp_test.cpp 184 sp<MediaSource> decoder = OMXCodec::Create( local
190 CHECK(decoder != NULL);
192 CHECK_EQ(decoder->start(), (status_t)OK);
196 status_t err = decoder->read(&buffer);
201 CHECK(decoder->getFormat()->findInt32(kKeyWidth, &width));
202 CHECK(decoder->getFormat()->findInt32(kKeyHeight, &height));
207 LOGE("decoder returned error 0x%08x", err);
216 printf("decoder returned frame of size %d at time %.2f secs\n",
225 CHECK_EQ(decoder->stop(), (status_t)OK);
  /external/libvpx/vpx/src/
vpx_codec.c 13 * \brief Provides the high level interface to wrap decoder algorithms.
61 return "Bitstream not supported by this decoder";
63 return "Bitstream required feature not supported by this decoder";
  /external/webkit/Source/WebKit2/Shared/
WebTouchEvent.cpp 54 bool WebTouchEvent::decode(CoreIPC::ArgumentDecoder* decoder, WebTouchEvent& t)
56 if (!WebEvent::decode(decoder, t))
59 return decoder->decode(CoreIPC::Out(t.m_touchPoints));
  /external/webkit/Source/WebKit2/Shared/mac/
PlatformCertificateInfo.mm 63 bool PlatformCertificateInfo::decode(CoreIPC::ArgumentDecoder* decoder, PlatformCertificateInfo& c)
66 if (!decoder->decode(hasCertificateChain))
72 if (!CoreIPC::decode(decoder, c.m_certificateChain))
UpdateChunk.cpp 77 bool UpdateChunk::decode(CoreIPC::ArgumentDecoder* decoder, UpdateChunk& chunk)
80 if (!decoder->decode(rect))
85 if (!decoder->decode(attachment))
  /external/webkit/Source/WebKit2/Shared/win/
UpdateChunk.cpp 62 bool UpdateChunk::decode(CoreIPC::ArgumentDecoder* decoder, UpdateChunk& updateChunk)
65 if (!decoder->decode(rect))
70 if (!decoder->decode(bitmapSharedMmemory))
  /frameworks/media/libvideoeditor/vss/inc/
M4PTO3GPP_ErrorCodes.h 64 * The AMR decoder initialization failed */
67 * The AMR decoder failed */
70 * The AMR decoder cleanup failed */
  /frameworks/media/libvideoeditor/vss/stagefrightshells/inc/
VideoEditorVideoDecoder_internal.h 20 * @brief StageFright shell video decoder internal header file*
80 sp<MediaSource> mVideoDecoder; /**< Stagefright decoder instance */
100 M4DECODER_MPEG4_DecoderConfigInfo m_Dci; /**< Decoder Config info */
  /libcore/luni/src/main/java/java/io/
InputStreamReader.java 45 private CharsetDecoder decoder; field in class:InputStreamReader
85 decoder = Charset.forName(enc).newDecoder().onMalformedInput(
108 decoder = dec;
124 decoder = charset.newDecoder().onMalformedInput(
140 if (decoder != null) {
141 decoder.reset();
143 decoder = null;
161 return HistoricalCharsetNames.get(decoder.charset());
257 result = decoder.decode(bytes, out, false);
273 result = decoder.decode(bytes, out, true)
    [all...]
  /system/media/wilhelm/src/itf/
IVideoDecoderCapabilities.cpp 43 // pDecoderIds array and as an output it specifies the number of decoder IDs available
81 SL_LOGE("Generic implementation has no video decoder capabilities");
91 SL_LOGE("Generic implementation has no video decoder capabilities");
  /frameworks/base/media/libstagefright/
FLACExtractor.cpp 71 // FLACParser wraps a C libFLAC parser aka stream decoder
171 const FLAC__StreamDecoder *decoder,
175 const FLAC__StreamDecoder *decoder,
179 const FLAC__StreamDecoder *decoder,
183 const FLAC__StreamDecoder *decoder,
187 const FLAC__StreamDecoder *decoder,
190 const FLAC__StreamDecoder *decoder,
194 const FLAC__StreamDecoder *decoder,
198 const FLAC__StreamDecoder *decoder,
211 const FLAC__StreamDecoder *decoder, FLAC__byte buffer[]
    [all...]
  /frameworks/media/libvideoeditor/vss/mcs/src/
M4MCS_Codecs.c 332 * @brief Register video decoder
334 * @param decoderType (IN) Decoder type
335 * @param pDecoderInterface (IN) Decoder interface.
337 * @return M4ERR_PARAMETER: A parameter is null (in DEBUG only), or the decoder
350 "M4MCS_registerVideoDecoder: invalid pointer on decoder interface");
354 M4OSA_DEBUG_IF1(M4OSA_TRUE, M4ERR_PARAMETER, "Invalid video decoder type");
361 /* a decoder corresponding to this media type has already been registered !*/
362 M4OSA_DEBUG_IF1(M4OSA_TRUE, M4ERR_PARAMETER, "Decoder has already been registered");
366 but which still has the built-in one to be able to work without an external decoder; in
367 this case the new decoder simply replaces the old one (i.e. we unregister it first). *
    [all...]
  /external/chromium/third_party/modp_b64/
README.chromium 1 Name: modp base64 decoder
  /external/libvpx/build/x86-msvs/
obj_int_extract.bat 11 cl /I "./" /I "%1" /nologo /c "%1/vp8/decoder/asm_dec_offsets.c"

Completed in 1180 milliseconds

1 2 3 4 56 7 8 91011>>