HomeSort by relevance Sort by last modified time
    Searched defs:Decode (Results 51 - 75 of 130) sorted by null

1 23 4 5 6

  /external/chromium_org/v8/src/
uri.js 214 function Decode(uri, reserved) {
318 return Decode(string, reservedPredicate);
325 return Decode(string, reservedPredicate);
  /external/vixl/src/a64/
decoder-a64.cc 32 // Top-level instruction decode function.
33 void Decoder::Decode(Instruction *instr) {
166 // decode.
689 // TODO: Implement Advanced SIMD load/store instruction decode.
696 // TODO: Implement Advanced SIMD data processing instruction decode.
  /external/chromium_org/content/common/gpu/client/
gpu_video_decode_accelerator_host.cc 107 void GpuVideoDecodeAcceleratorHost::Decode(
  /external/chromium_org/content/renderer/pepper/
ppb_video_decoder_impl.cc 143 int32_t PPB_VideoDecoder_Impl::Decode(
162 decoder_->Decode(decode_buffer);
video_decoder_shim.cc 92 void Decode(uint32_t decode_id, scoped_refptr<media::DecoderBuffer> buffer);
112 // VideoDecoder returns pictures without information about the decode buffer
113 // that generated it. Save the decode_id from the last decode that completed,
114 // which is close for most decoders, which only decode one buffer at a time.
159 void VideoDecoderShim::DecoderImpl::Decode(
171 const PendingDecode& decode = pending_decodes_.front(); local
172 scoped_ptr<PendingFrame> pending_frame(new PendingFrame(decode.decode_id));
177 decode.decode_id));
224 const PendingDecode& decode = pending_decodes_.front(); local
225 decoder_->Decode(
    [all...]
  /external/chromium_org/media/filters/
ffmpeg_audio_decoder.cc 22 // Returns true if the decode result was end of stream.
172 void FFmpegAudioDecoder::Decode(const scoped_refptr<DecoderBuffer>& buffer,
267 << "Dropping audio frame which failed decode with timestamp: "
ffmpeg_video_decoder.cc 181 void FFmpegVideoDecoder::Decode(const scoped_refptr<DecoderBuffer>& buffer,
202 // During decode, because reads are issued asynchronously, it is possible to
203 // receive multiple end of stream buffers since each decode is acked. When the
205 // up in the decoder so we need to go through the decode loop until it stops
209 // kNormal: This is the starting state. Buffers are decoded. Decode errors
280 // Log the problem if we can't decode a video frame and exit early.
ffmpeg_video_decoder_unittest.cc 116 // Returns the last decode status returned by the decoder.
121 VideoDecoder::Status status = Decode(*iter);
151 // to decode to frames that are the same size.
180 VideoDecoder::Status Decode(const scoped_refptr<DecoderBuffer>& buffer) {
184 decoder_->Decode(buffer, decode_cb_);
384 // The error is only raised on the second decode attempt, so we expect at
385 // least one successful decode but we don't expect valid frame to be decoded.
386 // During the second decode attempt an error is raised.
387 EXPECT_EQ(VideoDecoder::kOk, Decode(corrupt_i_frame_buffer_));
389 EXPECT_EQ(VideoDecoder::kDecodeError, Decode(i_frame_buffer_))
    [all...]
fake_video_decoder_unittest.cc 67 // Callback for VideoDecoder::Decode().
110 void Decode() {
125 decoder_->Decode(
134 Decode();
140 Decode();
306 // Hold all decodes and satisfy one decode at a time.
311 Decode();
opus_audio_decoder.cc 273 void OpusAudioDecoder::Decode(const scoped_refptr<DecoderBuffer>& buffer,
332 if (!Decode(input, &output_buffer)) {
441 bool OpusAudioDecoder::Decode(const scoped_refptr<DecoderBuffer>& input,
vpx_video_decoder.cc 57 // For VP9 decode when using the default thread count, increase the number
58 // of decode threads to equal the maximum number of tiles possible for
303 void VpxVideoDecoder::Decode(const scoped_refptr<DecoderBuffer>& buffer,
  /external/chromium_org/net/tools/dump_cache/
url_to_filename_encoder.cc 169 bool UrlToFilenameEncoder::Decode(const string& encoded_filename,
247 // inability to represent both /a/b/c and /a/b/c/d, and inability to decode
  /external/chromium_org/net/websockets/
websocket_frame_parser.cc 47 bool WebSocketFrameParser::Decode(
66 // data to the next round of Decode().
  /external/chromium_org/ppapi/proxy/
ppb_video_decoder_proxy.cc 37 virtual int32_t Decode(const PP_VideoBitstreamBuffer_Dev* bitstream_buffer,
68 int32_t VideoDecoder::Decode(
241 enter.SetResult(enter.object()->Decode(&bitstream, enter.callback()));
video_decoder_resource.cc 150 int32_t VideoDecoderResource::Decode(uint32_t decode_id,
163 // If we allow the plugin to call Decode again, we must have somewhere to
241 // the plugin call Decode again.
306 // Cause any pending Decode or GetPicture callbacks to abort after we return,
457 // If the plugin is waiting, let it call Decode again.
  /external/libvorbis/doc/
04-codec.tex 5 \section{Codec Setup and Packet Decode} \label{vorbis:spec:codec}
10 bit-by-bit decode specification of Vorbis I. This document assumes a
11 high-level understanding of the Vorbis decode process, which is
17 \subsection{Header decode and decode setup}
21 and the setup header. All are required for decode compliance. An
26 \subsubsection{Common header decode}
36 Decode continues according to packet type; the identification header
86 Comment header decode and data specification is covered in
101 needed for decode. The setup header contains, in order, the lists o
    [all...]
  /external/lzma/CPP/7zip/Compress/
RangeCoder.h 143 void Decode(UInt32 start, UInt32 size)
  /external/lzma/CS/7zip/Compress/RangeCoder/
RangeCoder.cs 175 public void Decode(uint start, uint size, uint total)
  /external/skia/dm/
DMWriteTask.cpp 89 static bool Decode(const char* path, SkImageInfo info, SkBitmap* bitmap) {
188 if (!PngAndRaw::Decode(path.c_str(), bitmap.info(), &expected)) {
  /external/chromium_org/content/common/gpu/media/
android_video_decode_accelerator.cc 386 void AndroidVideoDecodeAccelerator::Decode(
449 Decode(media::BitstreamBuffer(-1, base::SharedMemoryHandle(), 0));
vt_video_decode_accelerator.cc 194 void VTVideoDecodeAccelerator::Decode(const media::BitstreamBuffer& bitstream) {
304 // returned in decode order; this makes it easier to avoid deadlock.
  /external/chromium_org/google_apis/gaia/
oauth_request_signer.cc 298 bool OAuthRequestSigner::Decode(const std::string& text,
  /external/chromium_org/media/base/android/
media_decoder_job.cc 113 bool MediaDecoderJob::Decode(
179 // Do nothing, flush when the next Decode() happens.
226 DVLOG(1) << __FUNCTION__ << " : delete is pending decode completion";
335 // and request the MediaCodec to be recreated on next Decode().
383 // Once output EOS has occurred, we should not be asked to decode again.
384 // MediaCodec has undefined behavior if similarly asked to decode after output
  /external/chromium_org/media/cast/test/
fake_media_source.cc 251 Decode(true);
287 Decode(false);
323 Decode(false);
331 Decode(true);
345 Decode(true);
433 CHECK(result >= 0) << "Failed to decode audio.";
480 // Nothing can be scaled. Decode some more.
517 << "Video decode error.";
545 void FakeMediaSource::Decode(bool decode_audio) {
  /external/chromium_org/sdch/open-vcdiff/src/
vcdiff_main.cc 47 "Target file (default is stdin for encode, stdout for decode");
50 "stdin for decode");
71 " {encode | delta | decode | patch }[ <options> ]\n"
73 "decode or patch: reconstruct target file from dictionary and delta file";
84 // or decode operation.
86 bool Decode();
444 bool VCDiffFileBasedCoder::Decode() {
478 std::cerr << "Error trying to decode data chunk of length "
490 std::cerr << "Decode error; '" << FLAGS_delta
542 std::cerr << "Error trying to decode data chunk of length
    [all...]

Completed in 1438 milliseconds

1 23 4 5 6