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

1 2 3 4 5 67 8 91011>>

  /development/tools/emulator/opengl/host/tools/emugen/
README 4 based on provided API. The tool generates c++ encoder code that takes
18 Note: In this document, the caller is referred to as Encoder or Client
26 A general Encoder->Decoder packet is structured as following:
33 A general Decoder->Encoder reply is expected to be received in the
156 Encoder generated code files
158 In order to generate the encoder files, one should run the ?emugen?
161 emugen -i <input directory> -E <encoder files output directory> <basename>
164 <encoder directory> - a directory name to generate the encoder output files
176 the encoder context. For example, such callback could fetch th
    [all...]
  /frameworks/media/libvideoeditor/vss/common/inc/
M4ENCODER_common.h 47 * @brief Definition of open mode for the encoder.
237 * @brief Values to drive the encoder behaviour (type of frames produced)
242 M4ENCODER_kNormalFrame = 0, /**< let the encoder decide which type of frame to encode */
243 M4ENCODER_kLastFrame = 1, /**< force encoder the flush all its buffers because it is
245 M4ENCODER_kIFrame = 2 /**< force encoder to generate an I frame */
282 * Input parameters (grabber coupled with encoder): */
304 /**< Ratio between the encoder frame rate and the actual frame rate */
374 /**< get the DSI (encoder header) generated by the encoder */
440 * @brief Defines all the functions required for an encoder shell
    [all...]
  /frameworks/media/libvideoeditor/vss/mcs/inc/
M4MCS_InternalTypes.h 133 * @brief enum to keep track of the encoder state
342 /* Encoder SPS parameters */
456 * Video encoder stuff */
457 M4OSA_Context pViEncCtxt; /**< Video encoder context */
460 M4OSA_UInt32 uiEncVideoBitrate; /**< Actual video bitrate for the video encoder */
487 * audio encoder stuff */
488 M4OSA_Context pAudioEncCtxt; /**< Context of the audio encoder */
489 M4ENCODER_AudioDecSpecificInfo pAudioEncDSI; /**< Decoder specific info built by the encoder*/
490 M4ENCODER_AudioParams AudioEncParams;/**< Config of the audio encoder */
491 M4OSA_MemAddr8 pAudioEncoderBuffer; /**< Input of the encoder */
    [all...]
  /frameworks/base/media/libstagefright/codecs/amrwbenc/SampleCode/
AMRWB_E_SAMPLE.c 36 printf ("AMR_WB Encoder HELP Displays this text\n");
227 printf("Encoder time reach upper limit......");
271 printf("************************Adaptive Multi-Rate Wide Band Encoder (AMR-WB)*******************************\n");
273 printf("AMR-WB encoder scheme is based on the principle of Algebraic Code Excited Linear Prediction algorithm\n");
274 printf("The AMR-WB encoder compression MONO liner PCM speech input data at 16kHz sampling rate\n");
276 printf("The encoder supports output format AMRWB ITU, AMRWB RFC3267.\n");
279 /*Encoder Default setting */
  /frameworks/media/libvideoeditor/vss/mcs/src/
M4MCS_Codecs.c 176 * @brief This function will register a specific video encoder.
178 * the encoder context.
204 M4OSA_DEBUG_IF1(M4OSA_TRUE, M4ERR_PARAMETER, "Invalid video encoder type");
211 but which still has the built-in one to be able to work without an external encoder; in
212 this case the new encoder simply replaces the old one (i.e. we unregister it first). */
218 * Save encoder interface in context */
221 of an external encoder (add it as a parameter to this function in the long run?) */
231 * @brief This function will register a specific audio encoder.
233 * the encoder context.
236 * @param pEncGlobalInterface: (OUT) the encoder interface functions
    [all...]
  /frameworks/base/media/libmediaplayerservice/
StagefrightRecorder.cpp 56 // To collect the encoder usage for the battery app
151 LOGE("Invalid audio encoder: %d", ae);
168 LOGE("Invalid video encoder: %d", ve);
348 // range that a specific encoder supports. The mismatch between the
363 // range that a specific encoder supports. The mismatch between the
477 // Additional check will be done later when we load the encoder.
486 // Additional check will be done later when we load the encoder.
654 } else if (key == "video-param-encoder-profile") {
659 } else if (key == "video-param-encoder-level") {
822 LOGE("Unknown audio encoder: %d", mAudioEncoder)
995 sp<MediaSource> encoder; local
1404 sp<MediaSource> encoder = OMXCodec::Create( local
1467 sp<MediaSource> encoder; local
    [all...]
  /frameworks/base/media/libstagefright/codecs/avc/enc/
AVCEncoder.cpp 151 AVCEncoder *encoder = static_cast<AVCEncoder *>(userData); local
152 CHECK(encoder != NULL);
153 return encoder->allocOutputBuffers(sizeInMbs, numBuffers);
158 AVCEncoder *encoder = static_cast<AVCEncoder *>(userData); local
159 CHECK(encoder != NULL);
160 return encoder->bindOutputBuffer(index, yuv);
164 AVCEncoder *encoder = static_cast<AVCEncoder *>(userData); local
165 CHECK(encoder != NULL);
166 return encoder->unbindOutputBuffer(index);
303 // is reported when the encoder is initialized
    [all...]
  /frameworks/media/libvideoeditor/vss/inc/
M4VSS3GPP_InternalFunctions.h 88 * @brief Destroy the video encoder
97 * @brief Creates the video encoder
262 * @brief This function will register a specific video encoder.
264 * the encoder context.
278 * @brief This function will register a specific audio encoder.
280 * the encoder context.
283 * @param pEncGlobalInterface: (OUT) the encoder interface functions.
400 * @brief Set a video encoder
402 * @param MediaType (IN) Encoder type
414 * @brief Set an audio encoder
    [all...]
  /external/chromium/sdch/open-vcdiff/src/google/
vcencoder.h 37 // these extensions. The encoder will use an 'S' as the fourth character
44 // If this flag is specified, then the encoder writes each delta file
92 // The standard streaming interface to the VCDIFF (RFC 3284) encoder.
94 // input data to be encoded may not be available at once, the encoder
97 // to the encoder.
115 // If look_for_target_matches is false, then the encoder will only
120 // If this value is true, then the encoder will produce COPY instructions
129 // into the beginning of the target data. This VCDIFF encoder will never
242 // A simpler (non-streaming) interface to the VCDIFF encoder that can be used
  /libcore/luni/src/main/java/java/util/jar/
Manifest.java 308 CharsetEncoder encoder = Charsets.UTF_8.newEncoder(); local
313 writeEntry(out, Attributes.Name.MANIFEST_VERSION, version, encoder, buffer);
318 writeEntry(out, name, manifest.mainAttributes.getValue(name), encoder, buffer);
326 writeEntry(out, NAME_ATTRIBUTE, key, encoder, buffer);
331 writeEntry(out, name, attrib.getValue(name), encoder, buffer);
338 String value, CharsetEncoder encoder, ByteBuffer bBuf) throws IOException {
343 encoder.reset();
349 CoderResult r = encoder.encode(cBuf, bBuf, true);
351 r = encoder.flush(bBuf);
  /external/apache-harmony/nio_char/src/test/java/org/apache/harmony/nio_char/tests/java/nio/charset/
CharsetEncoderTest.java 141 * Mock encoder. encodeLoop always throws unexpected exception.
158 CharsetEncoder encoder = Charset.forName("utf-8").newEncoder(); local
162 encoder.reset();
163 CoderResult result = encoder.encode(in1, out, false);
166 result = encoder.encode(in2, out, true);
  /external/apache-http/src/org/apache/commons/codec/language/
SoundexUtils.java 67 * @param encoder
68 * The encoder to use to encode the Strings.
83 static int difference(StringEncoder encoder, String s1, String s2) throws EncoderException {
84 return differenceEncoded(encoder.encode(s1), encoder.encode(s2));
  /external/speex/libspeex/
sb_celp.h 43 /**Structure representing the full state of the sub-band encoder*/
46 void *st_low; /**< State of the low-band (narrowband) encoder */
101 void *st_low; /**< State of the low-band (narrowband) encoder */
132 /**Initializes encoder state*/
135 /**De-allocates encoder state resources*/
  /frameworks/media/libvideoeditor/vss/stagefrightshells/src/
VideoEditorVideoEncoder.cpp 19 * @brief StageFright shell video encoder
48 // Force using hardware encoder
429 * @brief This structure defines the context of the StageFright video encoder
488 sp<MediaSource> encoder = NULL;; local
499 // Create the encoder source
510 encoder = OMXCodec::Create(client.interface(), metaData, true,
512 VIDEOEDITOR_CHECK(NULL != encoder.get(), M4ERR_STATE);
528 result = encoder->start();;
530 result = encoder->read(&outputBuffer, NULL);
542 outputBuffer->range_length(), encoder->getFormat().get())
    [all...]
  /external/chromium/sdch/open-vcdiff/packages/rpm/
rpm.spec 6 Summary: An encoder/decoder for the VCDIFF (RFC 3284) format
20 A library that provides an encoder and decoder for the VCDIFF
24 Summary: An encoder/decoder for the VCDIFF (RFC 3284) format
  /frameworks/media/libvideoeditor/vss/src/
M4PTO3GPP_VideoPreProcessing.c 49 * @note It is called by the video encoder
72 /* transmit the encoder input data. */
105 pC->m_IsLastPicture = M4OSA_TRUE; /* To stop the encoder */
  /external/libvpx/vp8/common/
onyx.h 116 //(1)=Good Quality Fast Encoding. The encoder balances quality with the amount of time it takes to
118 //(2)=One Pass - Best Quality. The encoder places priority on the quality of the output over encoding
121 //(3)=Two Pass - First Pass. The encoder generates a file of statistics for use in the second encoding
123 //(4)=Two Pass - Second Pass. The encoder uses the statistics that were generated in the first encoding
125 //(5)=Two Pass - Second Pass Best. The encoder uses the statistics that were generated in the first
181 int multi_threaded; // how many threads to run the encoder on
  /frameworks/base/media/libstagefright/codecs/aacenc/
AACEncoder.cpp 73 LOGE("Failed to init AAC encoder");
77 LOGE("Failed to configure AAC encoder");
81 // Configure AAC encoder$
89 LOGE("Failed to set AAC encoder parameters");
138 LOGW("Call start() when encoder already started");
180 LOGW("Call stop() when encoder has not started");
  /external/flac/libFLAC/include/private/
ogg_encoder_aspect.h 59 typedef FLAC__StreamEncoderWriteStatus (*FLAC__OggEncoderAspectWriteCallbackProxy)(const void *encoder, const FLAC__byte buffer[], size_t bytes, unsigned samples, unsigned current_frame, void *client_data);
61 FLAC__StreamEncoderWriteStatus FLAC__ogg_encoder_aspect_write_callback_wrapper(FLAC__OggEncoderAspect *aspect, const FLAC__byte buffer[], size_t bytes, unsigned samples, unsigned current_frame, FLAC__bool is_last_block, FLAC__OggEncoderAspectWriteCallbackProxy write_callback, void *encoder, void *client_data);
  /external/libvpx/
CHANGELOG 2 Our second named release, focused on a faster, higher quality, encoder.
25 Improved encoder threading
26 Dont pick encoder filter level when loopfilter is disabled.
67 Fix encoder real-time only configuration.
68 Fix ARM encoder crash with multiple token partitions
70 Fixed various encoder bugs with odd-sized images
79 Our first named release, focused on a faster decoder, and a better encoder.
168 Encoder speed improvements (percentage gain not measured):
  /external/webkit/Source/WebKit2/Shared/
SecurityOriginData.cpp 38 void SecurityOriginData::encode(CoreIPC::ArgumentEncoder* encoder) const
40 encoder->encode(CoreIPC::In(protocol, host, port));
WebCoreArgumentCoders.cpp 38 void encodeImage(ArgumentEncoder* encoder, Image* image)
45 encoder->encode(handle);
WebPopupItem.cpp 66 void WebPopupItem::encode(CoreIPC::ArgumentEncoder* encoder) const
68 encoder->encode(CoreIPC::In(static_cast<uint32_t>(m_type), m_text, static_cast<uint64_t>(m_textDirection), m_hasTextDirectionOverride, m_toolTip, m_accessibilityText, m_isEnabled, m_isLabel));
  /frameworks/base/media/libstagefright/codecs/amrnb/common/include/
bits2prm.h 39 * Purpose : Retrieves the vector of encoder parameters from
75 * Purpose : Retrieves the vector of encoder parameters from
  /frameworks/base/media/libstagefright/codecs/amrnb/enc/src/
amrencode.cpp 52 Description: Modified file by adding the return of the number of encoder
64 Description: Added conditional compile around calls to AMR Encoder interface
76 invoke the ETS 3GPP GSM AMR encoder.
126 the encoder (void)
141 speech_encoder_state = pointer to encoder frame structure
148 This function initializes the GSM AMR Encoder library by calling
165 // Initialize GSM AMR Encoder
217 /* Initialize GSM AMR Encoder */
228 (Word8*)"encoder");
237 (Word8*)"encoder");
    [all...]

Completed in 1409 milliseconds

1 2 3 4 5 67 8 91011>>