/external/libvpx/libvpx/vpx/ |
vpx_encoder.h | 13 /*!\defgroup encoder Encoder Algorithm Interface 15 * This abstraction allows applications using this encoder to easily support 22 * \brief Describes the encoder algorithm interface to applications. 25 * video encoder algorithm. 65 /*! \brief Encoder capabilities bitfield 67 * Each encoder advertises the capabilities it supports as part of its 70 * by an encoder. 92 #define VPX_CODEC_USE_OUTPUT_PARTITION 0x20000 /**< Make the encoder output one 134 * encoder. The flags are specified through th [all...] |
/external/speex/include/speex/ |
speex.h | 38 /** @defgroup Codec Speex encoder and decoder 58 /** Obtain frame size used by encoder/decoder */ 91 /** Set complexity of the encoder (0-10) */ 93 /** Get current complexity of the encoder (0-10) */ 96 /** Set bit-rate used by the encoder (or lower) */ 98 /** Get current bit-rate used by the encoder or decoder */ 112 /** Reset the encoder/decoder memories to zero*/ 220 /** Encoder state initialization function */ 223 /** Encoder state destruction function */ 229 /** Function for controlling the encoder options * [all...] |
/external/aac/libSBRenc/include/ |
sbr_encoder.h | 87 Description: SBR encoder top level processing prototype 170 INT downSampleFactor; /*!< Sampling rate relation between the SBR and the core encoder. */ 306 * \brief Initialize SBR Encoder instance. 307 * \param phSbrEncoder Pointer to a SBR Encoder instance. 310 * \param inputBuffer Pointer to the encoder audio buffer 311 * \param bandwidth Returns the core audio encoder bandwidth (output) 313 * \param numChannels Input: Encoder input channels. output: core encoder channels. 314 * \param sampleRate Input: Encoder samplerate. output core encoder samplerate [all...] |
/frameworks/base/core/java/android/util/ |
Base64OutputStream.java | 41 * @param flags bit flags for controlling the encoder; see the 54 * @param flags bit flags for controlling the encoder; see the 64 coder = new Base64.Encoder(flags, null); 71 // To avoid invoking the encoder/decoder routines for single 131 * Write the given bytes to the encoder/decoder. 134 * encoder/decoder state to be finalized.
|
/frameworks/base/core/tests/coretests/src/android/util/ |
Base64Test.java | 233 * Tests that Base64.Encoder.encode() does correct handling of the 238 * us to get at package-private members (Base64.Encoder in 245 Base64.Encoder encoder = new Base64.Encoder(Base64.NO_PADDING | Base64.NO_WRAP, local 248 encoder.process(input, 0, 3, false); 249 assertEquals("YWJj".getBytes(), 4, encoder.output, encoder.op); 250 assertEquals(0, encoder.tailLen); 252 encoder.process(input, 0, 3, false) [all...] |
/external/chromium_org/chrome/utility/cloud_print/ |
pwg_encoder_unittest.cc | 68 PwgEncoder encoder; local 71 encoder.EncodeDocumentHeader(&output); 72 encoder.EncodePage(*image, kRasterDPI, 1, &output);
|
/frameworks/av/include/media/stagefright/ |
MediaCodecList.h | 35 const char *type, bool encoder, size_t startIndex = 0) const; 96 status_t addMediaCodecFromAttributes(bool encoder, const char **attrs); 97 void addMediaCodec(bool encoder, const char *name, const char *type = NULL);
|
/frameworks/av/media/libstagefright/codecs/flac/enc/ |
SoftFlacEncoder.h | 77 // FLAC encoder callbacks 80 const FLAC__StreamEncoder *encoder, const FLAC__byte buffer[], 88 // before passing the input data to the encoder
|
/libcore/luni/src/main/java/java/net/ |
URLEncoder.java | 37 static UriCodec ENCODER = new UriCodec() { 50 return ENCODER.encode(s, StandardCharsets.UTF_8); 57 return ENCODER.encode(s, Charset.forName(charsetName));
|
/libcore/luni/src/test/java/libcore/java/nio/charset/ |
OldCharset_MultiByte_EUC_JP.java | 35 encoder.onUnmappableCharacter(CodingErrorAction.REPORT); 39 if (encoder.canEncode(codePoint)) { 44 ByteBuffer intermediateBB = encoder.encode(inputCB);
|
/cts/tests/tests/media/src/android/media/cts/ |
EncodeDecodeTest.java | 39 * We copy the data from the encoder's output buffers to the decoder's input buffers, running 53 // parameters for the encoder 82 * Tests streaming of AVC video through the encoder and decoder. Data is encoded from 100 * Tests streaming of AVC video through the encoder and decoder. Data is encoded from 157 * Tests streaming of AVC video through the encoder and decoder. Data is provided through 226 MediaCodec encoder = null; local 255 // Create a MediaCodec for the desired codec, then configure it as an encoder with 257 encoder = MediaCodec.createByCodecName(codecInfo.getName()); 258 encoder.configure(format, null, null, MediaCodec.CONFIGURE_FLAG_ENCODE); 259 encoder.start() 288 MediaCodec encoder = null; local [all...] |
/dalvik/dx/src/com/android/dx/dex/file/ |
EncodedArrayItem.java | 96 ValueEncoder encoder = new ValueEncoder(addedTo.getFile(), out); local 98 encoder.writeArray(array, false); 116 ValueEncoder encoder = new ValueEncoder(file, out); local 117 encoder.writeArray(array, true);
|
/device/lge/hammerhead/ |
media_codecs.xml | 19 <MediaCodec name="OMX.qcom.video.encoder.mpeg4" type="video/mp4v-es" > 24 <MediaCodec name="OMX.qcom.video.encoder.h263" type="video/3gpp" > 29 <MediaCodec name="OMX.qcom.video.encoder.avc" type="video/avc" > 34 <MediaCodec name="OMX.qcom.video.encoder.vp8" type="video/x-vnd.on2.vp8" > 39 <MediaCodec name="OMX.google.amrnb.encoder" type="audio/3gpp" /> 40 <MediaCodec name="OMX.google.aac.encoder" type="audio/mp4a-latm" /> 41 <MediaCodec name="OMX.google.amrwb.encoder" type="audio/amr-wb" /> 42 <MediaCodec name="OMX.google.flac.encoder" type="audio/flac" /> 43 <MediaCodec name="OMX.google.vp8.encoder" type="video/x-vnd.on2.vp8" />
|
/external/chromium_org/third_party/brotli/ |
README.chromium | 14 The font-compression-reference repository includes WOFF 2.0 encoder and
|
/external/dexmaker/src/dx/java/com/android/dx/dex/file/ |
EncodedArrayItem.java | 96 ValueEncoder encoder = new ValueEncoder(addedTo.getFile(), out); local 98 encoder.writeArray(array, false); 116 ValueEncoder encoder = new ValueEncoder(file, out); local 117 encoder.writeArray(array, true);
|
/external/libvpx/libvpx/build/x86-msvs/ |
obj_int_extract.bat | 10 cl /I "./" /I "%1" /nologo /c "%1/vp8/encoder/vp8_asm_enc_offsets.c"
|
/external/libvpx/libvpx/test/ |
cq_test.cc | 46 libvpx_test::Encoder *encoder) { 49 encoder->Control(VP8E_SET_CQ_LEVEL, cq_level_); 51 encoder->Control(VP8E_SET_CPUUSED, 3);
|
/external/libvpx/libvpx/third_party/libyuv/ |
README.webm | 11 The optimized scaler in libyuv is used in multiple resolution encoder example,
|
/external/libvpx/libvpx/vp9/encoder/ |
vp9_encodeintra.h | 14 #include "vp9/encoder/vp9_onyx_int.h"
|
vp9_firstpass.h | 13 #include "vp9/encoder/vp9_onyx_int.h"
|
vp9_vaq.h | 15 #include "vp9/encoder/vp9_onyx_int.h"
|
/external/webp/ |
ChangeLog | 3 - 6/11: Added encoder (version 0.1.2) as well
|
/frameworks/av/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 */
|
/frameworks/av/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/bluetooth/bluedroid/btif/src/ |
btif_media_task.c | 221 SBC_ENC_PARAMS encoder; member in struct:__anon681 560 /* make sure we update any changed sbc encoder params */ 1094 ** Description Task for SBC encoder. This task receives an 1097 ** data buffers. If stream is started, run the SBC encoder [all...] |