HomeSort by relevance Sort by last modified time
    Searched full:encoder (Results 76 - 100 of 701) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/webkit/Source/WebKit2/Shared/gtk/
WebCoreArgumentCodersGtk.cpp 34 void encodeResourceRequest(ArgumentEncoder* encoder, const WebCore::ResourceRequest& resourceRequest)
50 void encodeResourceResponse(ArgumentEncoder* encoder, const WebCore::ResourceResponse& resourceResponse)
64 void encodeResourceError(ArgumentEncoder* encoder, const WebCore::ResourceError& resourceError)
66 encoder->encode(CoreIPC::In(resourceError.domain(), resourceError.errorCode(), resourceError.failingURL(), resourceError.localizedDescription()));
  /external/webkit/Source/WebKit2/Shared/mac/
PlatformCertificateInfo.mm 52 void PlatformCertificateInfo::encode(CoreIPC::ArgumentEncoder* encoder) const
55 encoder->encodeBool(false);
59 encoder->encodeBool(true);
60 CoreIPC::encode(encoder, m_certificateChain.get());
  /external/webkit/Source/WebKit2/Shared/qt/
WebCoreArgumentCodersQt.cpp 34 void encodeResourceRequest(ArgumentEncoder* encoder, const WebCore::ResourceRequest& resourceRequest)
49 void encodeResourceResponse(ArgumentEncoder* encoder, const WebCore::ResourceResponse& resourceResponse)
63 void encodeResourceError(ArgumentEncoder* encoder, const WebCore::ResourceError& resourceError)
65 encoder->encode(CoreIPC::In(resourceError.domain(), resourceError.errorCode(), resourceError.failingURL(), resourceError.localizedDescription()));
  /frameworks/media/libvideoeditor/vss/inc/
M4PTO3GPP_ErrorCodes.h 74 * The video encoder initialization failed */
77 * The video encoder decoding failed */
80 * The video encoder cleanup failed */
100 * The video encoder encountered an Acces Unit error: very probably a file write error */
M4PTO3GPP_InternalTypes.h 92 * @brief enum to keep track of the encoder state
136 encoder at encoder create (if any) */
150 M4OSA_Void* m_pMp4EncoderContext; /**< Mp4 encoder context */
164 * Encoder Interfaces */
165 M4ENCODER_GlobalInterface* m_pEncoderInt; /**< Encoder common interface */
186 M4OSA_Bool m_IsLastPicture; /**< A boolean that signals to the encoder that
204 * @note It is called by the video encoder
  /frameworks/media/libvideoeditor/vss/src/
M4VSS3GPP_MediaAndCodecSubscription.c 113 /*| video encoder subscription |*/
121 /*| audio encoder subscription |*/
362 /*| video encoder subscription |*/
368 /* retrieves the MPEG4 encoder type and pointer to functions*/
378 "M4VSS3GPP_subscribeMediaAndCodec: can't register video MPEG4 encoder");
384 /* retrieves the H263 encoder type and pointer to functions*/
394 "M4VSS3GPP_subscribeMediaAndCodec: can't register video H263 encoder");
398 /* retrieves the H264 encoder type and pointer to functions*/
408 "M4VSS3GPP_subscribeMediaAndCodec: can't register video H264 encoder");
413 /*| audio encoder subscription |*
    [all...]
  /external/webkit/Source/WebKit2/Platform/CoreIPC/
Arguments.h 70 void encode(ArgumentEncoder* encoder) const
72 encoder->encode(argument1);
107 void encode(ArgumentEncoder* encoder) const
109 Arguments1<T1>::encode(encoder);
110 encoder->encode(argument2);
149 void encode(ArgumentEncoder* encoder) const
151 Arguments2<T1, T2>::encode(encoder);
152 encoder->encode(argument3);
192 void encode(ArgumentEncoder* encoder) const
194 Arguments3<T1, T2, T3>::encode(encoder);
    [all...]
ArgumentCoder.h 37 static void encode(ArgumentEncoder* encoder, const T& t)
39 t.encode(encoder);
DataReference.cpp 34 void DataReference::encode(ArgumentEncoder* encoder) const
36 encoder->encodeBytes(m_data, m_size);
  /libcore/luni/src/main/java/java/nio/charset/
CharsetEncoder.java 35 * <li>Invoke {@link #reset()} to reset the encoder if this instance has been used before.</li>
99 // decoder instance for this encoder's charset, used for replacement value checking
113 * maximum number of bytes created by this encoder for one input character.
116 * the <code>Charset</code> to be used by this encoder.
118 * average number of bytes created by this encoder for one single
121 * maximum number of bytes which can be created by this encoder
158 * Returns the average number of bytes created by this encoder for a single
166 * Checks if the given character can be encoded by this encoder.
168 * Note that this method can change the internal status of this encoder, so
175 * the given encoder
    [all...]
CoderMalfunctionError.java 21 * A {@code CoderMalfunctionError} is thrown when the encoder/decoder is
36 * the original exception thrown by the encoder/decoder.
  /external/webkit/Source/WebCore/platform/network/
FormData.cpp 38 #include <wtf/Encoder.h>
334 static void encode(Encoder& encoder, const FormDataElement& element)
336 encoder.encodeUInt32(element.m_type);
340 encoder.encodeBytes(reinterpret_cast<const uint8_t*>(element.m_data.data()), element.m_data.size());
344 encoder.encodeString(element.m_filename);
345 encoder.encodeBool(element.m_shouldGenerateFile);
347 encoder.encodeInt64(element.m_fileStart);
348 encoder.encodeInt64(element.m_fileLength);
349 encoder.encodeDouble(element.m_expectedFileModificationTime)
    [all...]
  /frameworks/base/media/libstagefright/codecs/avc/enc/src/
avcenc_api.h 19 This file contains application function interfaces to the AVC encoder library
95 /* if profile/level is set to zero, encoder will choose the closest one for you */
144 AVCFlag bidir_pred; /* enable bi-directional for B-slice, this flag forces the encoder to encode
183 This function initializes the encoder library. It verifies the validity of the
186 For re-encoding application, if users want to setup encoder in a more precise way,
187 users can give the external SPS and PPS to the encoder to follow.
188 \param "avcHandle" "Handle to the AVC encoder library object."
207 \param "avcHandle" "Handle to the AVC encoder library object."
215 Users call this function to provide an input structure to the encoder library which will keep
217 calling PVAVCEncodeSlice. The encoder library will encode them according to the frame_num order
    [all...]
  /external/libxml2/include/libxml/
xmlIO.h 130 xmlCharEncodingHandlerPtr encoder; /* I18N conversions to UTF-8 */ member in struct:_xmlParserInputBuffer
133 xmlBufferPtr raw; /* if encoder != NULL buffer for raw input */
146 xmlCharEncodingHandlerPtr encoder; /* I18N conversions to UTF-8 */ member in struct:_xmlOutputBuffer
149 xmlBufferPtr conv; /* if encoder != NULL buffer for output */
223 xmlAllocOutputBuffer (xmlCharEncodingHandlerPtr encoder);
227 xmlCharEncodingHandlerPtr encoder,
232 xmlCharEncodingHandlerPtr encoder);
236 xmlCharEncodingHandlerPtr encoder);
240 xmlCharEncodingHandlerPtr encoder);
246 xmlCharEncodingHandlerPtr encoder);
    [all...]
  /external/apache-http/src/org/apache/commons/codec/
BinaryEncoder.java 25 public interface BinaryEncoder extends Encoder {
35 * @throws EncoderException thrown if the Encoder
EncoderException.java 21 * exception is thrown when an Encoder encounters a encoding specific exception
33 * @param pMessage a useful message relating to the encoder specific error.
  /external/jpeg/
jchuff.h 9 * that are shared between the sequential encoder (jchuff.c) and the
10 * progressive encoder (jcphuff.c). No other modules need to see these.
  /external/libvpx/examples/
encoder_tmpl.txt 28 /* Populate encoder configuration */
49 die_codec(&codec, "Failed to initialize encoder");
simple_encoder.txt 2 Simple Encoder
5 This is an example of a simple encoder loop. It takes an input file in
6 YV12 format, passes it through the encoder, and writes the compressed
34 Encoders have the notion of "usage profiles." For example, an encoder
36 conferencing appliction and a best quality offline encoder. These
60 The encoder is initialized by the following code.
70 EOF) then the frame is passed to the encoder. Otherwise, a NULL
71 is passed, indicating the End-Of-Stream condition to the encoder. The
  /external/libvpx/
mainpage.dox 27 \if encoder - \ref encoder reference \endif
  /external/libvpx/vp8/encoder/arm/
picklpf_arm.c 13 #include "vp8/encoder/onyx_int.h"
14 #include "vp8/encoder/quantize.h"
  /external/webkit/Source/WebKit2/Shared/Plugins/
NPVariantData.cpp 122 void NPVariantData::encode(CoreIPC::ArgumentEncoder* encoder) const
124 encoder->encode(m_type);
131 encoder->encode(boolValue());
134 encoder->encode(int32Value());
137 encoder->encode(doubleValue());
140 encoder->encode(stringValue());
143 encoder->encode(localNPObjectIDValue());
146 encoder->encode(remoteNPObjectIDValue());
  /frameworks/base/include/media/stagefright/
MetadataBufferType.h 27 * can be passed to video encoder component for encoding, via Stagefright
31 * The creator of metadata buffers and video encoder share common knowledge
33 * how the information can be used by the video encoder component
35 * encoder, plus whatever other information that is necessary. Stagefright
39 * copy via OpenMAX API to the video encoder component.
44 * actual metadata information. When a video encoder component receives
72 * So in this case,the metadata that the encoder receives
77 * GRalloc buffer. The encoder needs to interpret this GRalloc handle
  /frameworks/base/media/libstagefright/codecs/aacenc/src/
aacenc_core.c 19 Content: aac encoder core functions
53 * description: allocate and initialize a new encoder instance
57 Word16 AacEncOpen( AAC_ENCODER* hAacEnc, /* pointer to an encoder handle, initialized on return */
88 /* init encoder psychoacoustic */
102 /* init encoder quantization */
126 /* init bitstream encoder */
144 Word16 AacEncEncode(AAC_ENCODER *aacEnc, /*!< an encoder handle */
217 * description: deallocate an encoder instance
  /libcore/luni/src/test/java/libcore/java/nio/charset/
OldCharset_AbstractTest.java 36 static CharsetEncoder encoder; field in class:OldCharset_AbstractTest
63 encoder = charset.newEncoder();
84 while (!encoder.canEncode((char) code)) code ++;
91 while (!encoder.canEncode((char) code)) code ++;
111 encoder.onUnmappableCharacter(CodingErrorAction.REPORT);
112 outputBB = encoder.encode(inputCB);
158 encoder.onUnmappableCharacter(CodingErrorAction.REPORT);
159 outputBB = encoder.encode(inputCB);
168 encoder.onUnmappableCharacter(CodingErrorAction.REPORT);
172 if (encoder.canEncode((char) code))
    [all...]

Completed in 2572 milliseconds

1 2 34 5 6 7 8 91011>>