HomeSort by relevance Sort by last modified time
    Searched refs:decoder (Results 1 - 25 of 295) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/libvpx/libvpx/vp8/
vp8dx.mk 34 #INCLUDES += decoder
38 # decoder
47 #INCLUDES += decoder
49 VP8_DX_SRCS-yes += decoder/asm_dec_offsets.c
50 VP8_DX_SRCS-yes += decoder/dboolhuff.c
51 VP8_DX_SRCS-yes += decoder/decodemv.c
52 VP8_DX_SRCS-yes += decoder/decodframe.c
53 VP8_DX_SRCS-yes += decoder/detokenize.c
54 VP8_DX_SRCS-$(CONFIG_ERROR_CONCEALMENT) += decoder/ec_types.h
55 VP8_DX_SRCS-$(CONFIG_ERROR_CONCEALMENT) += decoder/error_concealment.
    [all...]
  /external/flac/libFLAC/
stream_decoder.c 105 static void set_defaults_(FLAC__StreamDecoder *decoder);
107 static FLAC__bool allocate_output_(FLAC__StreamDecoder *decoder, unsigned size, unsigned channels);
108 static FLAC__bool has_id_filtered_(FLAC__StreamDecoder *decoder, FLAC__byte *id);
109 static FLAC__bool find_metadata_(FLAC__StreamDecoder *decoder);
110 static FLAC__bool read_metadata_(FLAC__StreamDecoder *decoder);
111 static FLAC__bool read_metadata_streaminfo_(FLAC__StreamDecoder *decoder, FLAC__bool is_last, unsigned length);
112 static FLAC__bool read_metadata_seektable_(FLAC__StreamDecoder *decoder, FLAC__bool is_last, unsigned length);
113 static FLAC__bool read_metadata_vorbiscomment_(FLAC__StreamDecoder *decoder, FLAC__StreamMetadata_VorbisComment *obj);
114 static FLAC__bool read_metadata_cuesheet_(FLAC__StreamDecoder *decoder, FLAC__StreamMetadata_CueSheet *obj);
115 static FLAC__bool read_metadata_picture_(FLAC__StreamDecoder *decoder, FLAC__StreamMetadata_Picture *obj)
281 FLAC__StreamDecoder *decoder; local
2794 FLAC__StreamDecoder *decoder = (FLAC__StreamDecoder *)client_data; local
2901 FLAC__StreamDecoder *decoder = (FLAC__StreamDecoder*)void_decoder; local
    [all...]
  /external/webkit/Source/WebKit2/Shared/
UpdateInfo.cpp 43 bool UpdateInfo::decode(CoreIPC::ArgumentDecoder* decoder, UpdateInfo& result)
45 if (!decoder->decode(result.viewSize))
47 if (!decoder->decode(result.scrollRect))
49 if (!decoder->decode(result.scrollOffset))
51 if (!decoder->decode(result.updateRectBounds))
53 if (!decoder->decode(result.updateRects))
55 if (!decoder->decode(result.bitmapHandle))
WebPageCreationParameters.cpp 65 bool WebPageCreationParameters::decode(CoreIPC::ArgumentDecoder* decoder, WebPageCreationParameters& parameters)
67 if (!decoder->decode(parameters.viewSize))
69 if (!decoder->decode(parameters.isActive))
71 if (!decoder->decode(parameters.isFocused))
73 if (!decoder->decode(parameters.isVisible))
75 if (!decoder->decode(parameters.isInWindow))
77 if (!decoder->decode(parameters.store))
79 if (!decoder->decodeEnum(parameters.drawingAreaType))
81 if (!decoder->decode(parameters.pageGroupData))
83 if (!decoder->decode(parameters.drawsBackground)
    [all...]
ContextMenuState.h 43 static bool decode(CoreIPC::ArgumentDecoder* decoder, ContextMenuState& result)
45 if (!decoder->decode(result.absoluteLinkURLString))
47 if (!decoder->decode(result.absoluteImageURLString))
WebProcessCreationParameters.cpp 84 bool WebProcessCreationParameters::decode(CoreIPC::ArgumentDecoder* decoder, WebProcessCreationParameters& parameters)
86 if (!decoder->decode(parameters.injectedBundlePath))
88 if (!decoder->decode(parameters.injectedBundlePathExtensionHandle))
90 if (!decoder->decode(parameters.applicationCacheDirectory))
92 if (!decoder->decode(parameters.databaseDirectory))
94 if (!decoder->decode(parameters.localStorageDirectory))
96 if (!decoder->decode(parameters.urlSchemesRegistererdAsEmptyDocument))
98 if (!decoder->decode(parameters.urlSchemesRegisteredAsSecure))
100 if (!decoder->decode(parameters.urlSchemesForWhichDomainRelaxationIsForbidden))
102 if (!decoder->decode(parameters.mimeTypesWithCustomRepresentation)
    [all...]
DictionaryPopupInfo.cpp 48 bool DictionaryPopupInfo::decode(CoreIPC::ArgumentDecoder* decoder, DictionaryPopupInfo& result)
50 if (!decoder->decode(result.origin))
52 if (!decoder->decode(result.fontInfo))
54 if (!decoder->decodeEnum(result.type))
57 if (!CoreIPC::decode(decoder, result.options))
WebNavigationDataStore.h 43 static bool decode(CoreIPC::ArgumentDecoder* decoder, WebNavigationDataStore& store)
45 if (!decoder->decode(store.url))
47 if (!decoder->decode(store.title))
PlatformPopupMenuData.cpp 68 bool PlatformPopupMenuData::decode(CoreIPC::ArgumentDecoder* decoder, PlatformPopupMenuData& data)
71 if (!decoder->decode(data.m_clientPaddingLeft))
73 if (!decoder->decode(data.m_clientPaddingRight))
75 if (!decoder->decode(data.m_clientInsetLeft))
77 if (!decoder->decode(data.m_clientInsetRight))
79 if (!decoder->decode(data.m_popupWidth))
81 if (!decoder->decode(data.m_itemHeight))
85 if (!decoder->decode(notSelectedBackingStoreHandle))
90 if (!decoder->decode(selectedBackingStoreHandle))
94 if (!decoder->decode(data.fontInfo)
    [all...]
FontInfo.cpp 44 bool FontInfo::decode(CoreIPC::ArgumentDecoder* decoder, FontInfo& fontInfo)
47 if (!CoreIPC::decode(decoder, fontInfo.fontAttributeDictionary))
SessionState.cpp 38 static bool decode(ArgumentDecoder* decoder, RefPtr<T>& item)
40 item = T::decode(*decoder);
73 bool SessionState::decode(CoreIPC::ArgumentDecoder* decoder, SessionState& state)
75 if (!decoder->decode(state.m_list))
77 if (!decoder->decode(state.m_currentIndex))
  /external/webkit/Source/WebKit2/Platform/CoreIPC/
DataReference.cpp 39 bool DataReference::decode(ArgumentDecoder* decoder, DataReference& dataReference)
41 return decoder->decodeBytes(dataReference);
ArgumentCoder.h 42 static bool decode(ArgumentDecoder* decoder, T& t)
44 return T::decode(decoder, t);
ArgumentCoders.h 47 static bool decode(ArgumentDecoder* decoder, T& t)
49 return decoder->decodeBytes(reinterpret_cast<uint8_t*>(&t), sizeof(T));
60 static bool decode(ArgumentDecoder* decoder, std::pair<T, U>& pair)
63 if (!decoder->decode(first))
67 if (!decoder->decode(second))
86 static bool decode(ArgumentDecoder* decoder, Vector<T>& vector)
89 if (!decoder->decodeUInt64(size))
95 if (!decoder->decode(element))
116 static bool decode(ArgumentDecoder* decoder, Vector<T>& vector)
119 if (!decoder->decodeUInt64(size)
    [all...]
  /external/webkit/Source/WebKit2/WebProcess/Plugins/
Plugin.cpp 44 bool Plugin::Parameters::decode(CoreIPC::ArgumentDecoder* decoder, Parameters& parameters)
47 if (!decoder->decode(urlString))
52 if (!decoder->decode(parameters.names))
54 if (!decoder->decode(parameters.values))
56 if (!decoder->decode(parameters.mimeType))
58 if (!decoder->decode(parameters.loadManually))
62 decoder->markInvalid();
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
TestBenchMultipleInstance.c 54 } Decoder;
72 Decoder **decoder; local
134 /* allocate memory for multiple decoder instances
136 decoder = (Decoder **)malloc(sizeof(Decoder*)*(u32)instCount);
137 if (decoder == NULL)
143 /* prepare each decoder instance */
146 decoder[i] = (Decoder *)calloc(1, sizeof(Decoder))
    [all...]
  /external/flac/include/FLAC/
stream_decoder.h 48 * decoder.
51 * \link flac_stream_decoder stream decoder \endlink module.
54 /** \defgroup flac_decoder FLAC/ \*_decoder.h: decoder interfaces
58 * This module describes the decoder layers provided by libFLAC.
60 * The stream decoder can be used to decode complete streams either from
65 * callback, the decoder function for sample-accurate seeking within the
69 * info see the \link flac_stream_decoder stream decoder \endlink module.
72 /** \defgroup flac_stream_decoder FLAC/stream_decoder.h: stream decoder interface
77 * decoder.
79 * The stream decoder can decode native FLAC, and optionally Ogg FLA
    [all...]
  /external/apache-harmony/nio_char/src/test/java/tests/api/java/nio/charset/
UTF16CharsetDecoderTest.java 71 decoder.onMalformedInput(CodingErrorAction.REPORT);
72 decoder.onUnmappableCharacter(CodingErrorAction.REPORT);
74 assertTrue(decoder.decode(
78 decoder.flush(out);
79 decoder.reset();
81 assertSame(CoderResult.UNDERFLOW, decoder.decode(ByteBuffer
83 assertTrue(decoder.decode(ByteBuffer.wrap(new byte[] { 98 }), out,
86 decoder.flush(out);
87 decoder.reset();
89 assertSame(CoderResult.UNDERFLOW, decoder.decode(ByteBuffe
    [all...]
CharsetDecoderTest.java 46 // default decoder
47 protected static CharsetDecoder decoder; field in class:CharsetDecoderTest
53 decoder = cs.newDecoder();
65 // assertTrue(decoder.averageCharsPerByte() == AVER_BYTES);
66 // assertTrue(decoder.maxCharsPerByte() == MAX_BYTES);
70 assertSame(cs, decoder.charset());
72 decoder.detectedCharset();
77 assertTrue(decoder.isCharsetDetected());
81 assertFalse(decoder.isAutoDetecting());
82 assertSame(CodingErrorAction.REPORT, decoder.malformedInputAction())
    [all...]
  /external/webkit/Source/WebKit2/Shared/mac/
AttributedString.mm 43 bool AttributedString::decode(CoreIPC::ArgumentDecoder* decoder, AttributedString& attributedString)
46 if (!decoder->decode(isNull))
50 return CoreIPC::decode(decoder, attributedString.string);
  /external/webkit/Source/WebCore/dom/
DecodedDataDocumentParser.cpp 45 TextResourceDecoder* decoder = writer->createDecoderIfNeeded();
46 String decoded = decoder->decode(data, length);
48 decoded += decoder->flush();
  /external/freetype/src/psaux/
t1decode.h 36 t1_decoder_parse_glyph( T1_Decoder decoder,
40 t1_decoder_parse_charstrings( T1_Decoder decoder,
45 t1_decoder_init( T1_Decoder decoder,
56 t1_decoder_done( T1_Decoder decoder ); variable
t1decode.c 130 t1_lookup_glyph_by_stdcharcode( T1_Decoder decoder,
135 FT_Service_PsCMaps psnames = decoder->psnames;
145 for ( n = 0; n < decoder->num_glyphs; n++ )
147 FT_String* name = (FT_String*)decoder->glyph_names[n];
166 /* Implements the `seac' Type 1 operator for a Type 1 decoder. */
169 /* decoder :: The current CID decoder. */
185 t1operator_seac( T1_Decoder decoder,
196 FT_Outline* base = decoder->builder.base;
201 T1_Face face = (T1_Face)decoder->builder.face
    [all...]
  /external/webkit/Source/WebKit2/Shared/Plugins/
PluginProcessCreationParameters.cpp 49 bool PluginProcessCreationParameters::decode(CoreIPC::ArgumentDecoder* decoder, PluginProcessCreationParameters& result)
51 if (!decoder->decode(result.pluginPath))
55 if (!decoder->decode(result.parentProcessName))
57 if (!decoder->decode(result.acceleratedCompositingPort))
  /external/openfst/src/include/fst/script/
decode.h 35 EncodeMapper<Arc> *decoder = EncodeMapper<Arc>::Read(args->arg2, DECODE); local
36 Decode(ofst, *decoder);
38 delete decoder;

Completed in 2656 milliseconds

1 2 3 4 5 6 7 8 91011>>