Searched refs:codec (Results 26 - 50 of 439) sorted by relevance

1234567891011>>

/external/robolectric/lib/main/
H A Dcommons-codec-1.6.jar ... MF org/ org/apache/ org/apache/commons/ org/apache/commons/codec/ org/apache/commons/codec/binary/ org/apache/commons/codec/digest ...
/external/chromium_org/remoting/codec/
H A Daudio_decoder.cc5 #include "remoting/codec/audio_decoder.h"
8 #include "remoting/codec/audio_decoder_opus.h"
9 #include "remoting/codec/audio_decoder_verbatim.h"
18 if (audio_config.codec == protocol::ChannelConfig::CODEC_VERBATIM) {
20 } else if (audio_config.codec == protocol::ChannelConfig::CODEC_OPUS) {
/external/chromium_org/third_party/libvpx/source/libvpx/examples/
H A Dsimple_decoder.c69 // The `vpx_codec_destroy` call frees any memory allocated by the codec.
99 vpx_codec_ctx_t codec; local
120 die("Unknown input codec.");
124 if (vpx_codec_dec_init(&codec, decoder->codec_interface(), NULL, 0))
125 die_codec(&codec, "Failed to initialize decoder.");
133 if (vpx_codec_decode(&codec, frame, (unsigned int)frame_size, NULL, 0))
134 die_codec(&codec, "Failed to decode frame.");
136 while ((img = vpx_codec_get_frame(&codec, &iter)) != NULL) {
143 if (vpx_codec_destroy(&codec))
144 die_codec(&codec, "Faile
[all...]
H A Dset_maps.c59 fprintf(stderr, "Usage: %s <codec> <width> <height> <infile> <outfile>\n",
65 vpx_codec_ctx_t *codec) {
92 if (vpx_codec_control(codec, VP8E_SET_ROI_MAP, &roi))
93 die_codec(codec, "Failed to set ROI map");
99 vpx_codec_ctx_t *codec) {
110 if (vpx_codec_control(codec, VP8E_SET_ACTIVEMAP, &map))
111 die_codec(codec, "Failed to set active map");
117 vpx_codec_ctx_t *codec) {
124 if (vpx_codec_control(codec, VP8E_SET_ACTIVEMAP, &map))
125 die_codec(codec, "Faile
64 set_roi_map(const vpx_codec_enc_cfg_t *cfg, vpx_codec_ctx_t *codec) argument
98 set_active_map(const vpx_codec_enc_cfg_t *cfg, vpx_codec_ctx_t *codec) argument
116 unset_active_map(const vpx_codec_enc_cfg_t *cfg, vpx_codec_ctx_t *codec) argument
128 encode_frame(vpx_codec_ctx_t *codec, vpx_image_t *img, int frame_index, VpxVideoWriter *writer) argument
162 vpx_codec_ctx_t codec; local
[all...]
H A Ddecode_with_drops.c16 // features of the codec.
76 vpx_codec_ctx_t codec; local
107 die("Unknown input codec.");
111 if (vpx_codec_dec_init(&codec, decoder->codec_interface(), NULL, 0))
112 die_codec(&codec, "Failed to initialize decoder.");
121 if (vpx_codec_decode(&codec, frame, (unsigned int)frame_size, NULL, 0))
122 die_codec(&codec, "Failed to decode frame.");
132 while ((img = vpx_codec_get_frame(&codec, &iter)) != NULL)
142 if (vpx_codec_destroy(&codec))
143 die_codec(&codec, "Faile
[all...]
/external/chromium_org/third_party/webrtc/voice_engine/
H A Dvoe_codec_impl.h26 virtual int GetCodec(int index, CodecInst& codec);
28 virtual int SetSendCodec(int channel, const CodecInst& codec);
30 virtual int GetSendCodec(int channel, CodecInst& codec);
32 virtual int GetRecCodec(int channel, CodecInst& codec);
39 const CodecInst& codec);
41 virtual int GetRecPayloadType(int channel, CodecInst& codec);
60 virtual int SetSecondarySendCodec(int channel, const CodecInst& codec,
65 virtual int GetSecondarySendCodec(int channel, CodecInst& codec);
/external/libvpx/libvpx/examples/
H A Dsimple_decoder.c71 // The `vpx_codec_destroy` call frees any memory allocated by the codec.
103 vpx_codec_ctx_t codec; local
124 die("Unknown input codec.");
128 if (vpx_codec_dec_init(&codec, decoder->interface(), NULL, 0))
129 die_codec(&codec, "Failed to initialize decoder.");
137 if (vpx_codec_decode(&codec, frame, (unsigned int)frame_size, NULL, 0))
138 die_codec(&codec, "Failed to decode frame.");
140 while ((img = vpx_codec_get_frame(&codec, &iter)) != NULL) {
147 if (vpx_codec_destroy(&codec))
148 die_codec(&codec, "Faile
[all...]
H A Dset_maps.c59 fprintf(stderr, "Usage: %s <codec> <width> <height> <infile> <outfile>\n",
65 vpx_codec_ctx_t *codec) {
91 if (vpx_codec_control(codec, VP8E_SET_ROI_MAP, &roi))
92 die_codec(codec, "Failed to set ROI map");
98 vpx_codec_ctx_t *codec) {
109 if (vpx_codec_control(codec, VP8E_SET_ACTIVEMAP, &map))
110 die_codec(codec, "Failed to set active map");
116 vpx_codec_ctx_t *codec) {
123 if (vpx_codec_control(codec, VP8E_SET_ACTIVEMAP, &map))
124 die_codec(codec, "Faile
64 set_roi_map(const vpx_codec_enc_cfg_t *cfg, vpx_codec_ctx_t *codec) argument
97 set_active_map(const vpx_codec_enc_cfg_t *cfg, vpx_codec_ctx_t *codec) argument
115 unset_active_map(const vpx_codec_enc_cfg_t *cfg, vpx_codec_ctx_t *codec) argument
127 encode_frame(vpx_codec_ctx_t *codec, vpx_image_t *img, int frame_index, VpxVideoWriter *writer) argument
156 vpx_codec_ctx_t codec = {0}; local
[all...]
H A Ddecode_with_drops.c16 // features of the codec.
78 vpx_codec_ctx_t codec; local
109 die("Unknown input codec.");
113 if (vpx_codec_dec_init(&codec, decoder->interface(), NULL, 0))
114 die_codec(&codec, "Failed to initialize decoder.");
123 if (vpx_codec_decode(&codec, frame, (unsigned int)frame_size, NULL, 0))
124 die_codec(&codec, "Failed to decode frame.");
134 while ((img = vpx_codec_get_frame(&codec, &iter)) != NULL)
144 if (vpx_codec_destroy(&codec))
145 die_codec(&codec, "Faile
[all...]
/external/apache-http/src/org/apache/commons/codec/net/
H A DQCodec.java17 package org.apache.commons.codec.net;
22 import org.apache.commons.codec.DecoderException;
23 import org.apache.commons.codec.EncoderException;
24 import org.apache.commons.codec.StringDecoder;
25 import org.apache.commons.codec.StringEncoder;
259 + " cannot be encoded using Q codec");
283 + " cannot be decoded using Q codec");
/external/chromium_org/third_party/skia/gm/
H A Dcmykjpeg.cpp36 SkImageDecoder* codec = SkImageDecoder::Factory(&stream); variable
37 if (codec) {
39 codec->setDitherImage(dither);
40 codec->decode(&stream, &fBitmap, kN32_SkColorType, SkImageDecoder::kDecodePixels_Mode);
41 SkDELETE(codec); variable
/external/chromium_org/third_party/skia/src/images/
H A DSkImageDecoder_FactoryRegistrar.cpp22 SkImageDecoder* codec = NULL; local
25 codec = curr->factory()(stream);
34 SkDELETE(codec);
38 if (codec) {
39 return codec;
/external/skia/gm/
H A Dcmykjpeg.cpp42 SkImageDecoder* codec = SkImageDecoder::Factory(&stream); variable
43 if (codec) {
45 codec->setDitherImage(dither);
46 codec->decode(&stream, &fBitmap, kN32_SkColorType, SkImageDecoder::kDecodePixels_Mode);
47 SkDELETE(codec); variable
/external/skia/src/images/
H A DSkImageDecoder_FactoryRegistrar.cpp22 SkImageDecoder* codec = NULL; local
25 codec = curr->factory()(stream);
34 SkDELETE(codec);
38 if (codec) {
39 return codec;
/external/lzma/CPP/7zip/Common/
H A DCreateCoder.cpp97 const CCodecInfo &codec = *g_Codecs[i]; local
98 if (name.CompareNoCase(codec.Name) == 0)
100 methodId = codec.Id;
101 numInStreams = codec.NumInStreams;
110 const CCodecInfoEx &codec = (*externalCodecs)[i]; local
111 if (codec.Name.CompareNoCase(name) == 0)
113 methodId = codec.Id;
114 numInStreams = codec.NumInStreams;
115 numOutStreams = codec.NumOutStreams;
132 const CCodecInfo &codec local
143 const CCodecInfoEx &codec = (*externalCodecs)[i]; local
166 const CCodecInfo &codec = *g_Codecs[i]; local
198 const CCodecInfoEx &codec = (*externalCodecs)[i]; local
[all...]
/external/owasp/sanitizer/lib/commons-codec-1.4/
H A Dcommons-codec-1.4.jar ... MF org/ org/apache/ org/apache/commons/ org/apache/commons/codec/ org/apache/commons/codec/binary/ org/apache/commons/codec/digest ...
/external/pdfium/core/src/fxge/Microsoft SDK/include/
H A DGdiPlusImageCodec.h61 IN const ImageCodecInfo* codec)
63 return DllExports::GdipAddImageCodec(codec);
68 IN const ImageCodecInfo* codec)
70 return DllExports::GdipRemoveImageCodec(codec);
60 AddImageCodec( IN const ImageCodecInfo* codec) argument
67 RemoveImageCodec( IN const ImageCodecInfo* codec) argument
/external/chromium_org/third_party/libvpx/source/libvpx/test/
H A Dpostproc.sh27 # Runs postproc using $1 as input file. $2 is the codec name, and is used
32 local codec="$2"
33 local output_file="${VPX_TEST_OUTPUT_DIR}/postproc_${codec}.raw"
H A Dsimple_decoder.sh27 # Runs simple_decoder using $1 as input file. $2 is the codec name, and is used
32 local codec="$2"
33 local output_file="${VPX_TEST_OUTPUT_DIR}/simple_decoder_${codec}.raw"
H A Dvp8cx_set_ref.sh27 # $1 is the codec name, which vp8cx_set_ref does not support at present: It's
29 # TODO(tomfinegan): Pass the codec param once the example is updated to support
33 local codec="$1"
34 local output_file="${VPX_TEST_OUTPUT_DIR}/vp8cx_set_ref_${codec}.ivf"
/external/chromium_org/third_party/opus/src/doc/
H A Dbuild_oggdraft.sh52 xml2rfc draft-ietf-codec-oggopus.xml --text --html
/external/chromium_org/third_party/webrtc/voice_engine/include/
H A Dvoe_codec.h22 // VoECodec* codec = VoECodec::GetInterface(voe);
24 // int num_of_codecs = codec->NumOfCodecs()
28 // codec->Release();
57 // Get the |codec| information for a specified list |index|.
58 virtual int GetCodec(int index, CodecInst& codec) = 0;
60 // Sets the |codec| for the |channel| to be used for sending.
61 virtual int SetSendCodec(int channel, const CodecInst& codec) = 0;
63 // Gets the |codec| parameters for the sending codec on a specified
65 virtual int GetSendCodec(int channel, CodecInst& codec)
[all...]
/external/chromium_org/third_party/WebKit/Source/wtf/text/
H A DTextCodecUTF8Test.cpp49 OwnPtr<TextCodec> codec(newTextCodec(encoding));
55 const String& result = codec->decode(testCase, testCaseSize, DataEOF, false, sawError);
66 OwnPtr<TextCodec> codec(newTextCodec(encoding));
73 const String& result = codec->decode(testCase, testCaseSize, DataEOF, false, sawError);
83 OwnPtr<TextCodec> codec(newTextCodec(encoding));
86 const String& result = codec->decode("\xff", 1, DataEOF, false, sawError);
/external/chromium_org/media/base/android/java/src/org/chromium/media/
H A DWebAudioMediaCodecBridge.java95 MediaCodec codec;
97 codec = MediaCodec.createDecoderByType(mime);
104 codec.configure(format, null /* surface */, null /* crypto */, 0 /* flags */);
105 codec.start();
107 ByteBuffer[] codecInputBuffers = codec.getInputBuffers();
108 ByteBuffer[] codecOutputBuffers = codec.getOutputBuffers();
121 int inputBufIndex = codec.dequeueInputBuffer(TIMEOUT_MICROSECONDS);
135 codec.queueInputBuffer(inputBufIndex,
149 final int outputBufIndex = codec.dequeueOutputBuffer(info, TIMEOUT_MICROSECONDS);
177 codec
[all...]
/external/chromium_org/mojo/public/js/bindings/
H A Dvalidator.js6 "mojo/public/js/bindings/codec",
7 ], function(codec) {
28 return cls === codec.String || cls === codec.NullableString;
32 return cls === codec.Handle || cls === codec.NullableHandle;
36 return type === codec.NullableString || type === codec.NullableHandle ||
37 type instanceof codec.NullableArrayOf ||
38 type instanceof codec
[all...]

Completed in 6886 milliseconds

1234567891011>>