Searched defs:codec (Results 51 - 75 of 148) sorted by relevance

123456

/external/libvpx/libvpx/test/
H A Ddecode_api_test.cc76 // Test VP9 codec controls after a decode error to ensure the code doesn't
116 const vpx_codec_iface_t *const codec = &vpx_codec_vp9_dx_algo; local
125 EXPECT_EQ(VPX_CODEC_OK, vpx_codec_dec_init(&dec, codec, NULL, 0));
142 const vpx_codec_iface_t *const codec = &vpx_codec_vp9_dx_algo; local
157 EXPECT_EQ(VPX_CODEC_OK, vpx_codec_dec_init(&dec, codec, NULL, 0));
170 vpx_codec_peek_stream_info(codec, data, data_sz, &si));
H A Ddecode_test_driver.h150 explicit DecoderTest(const CodecFactory *codec) argument
151 : codec_(codec), cfg_(), flags_(0) {}
/external/pdfium/third_party/libtiff/
H A Dtif_codec.c136 * Check whether we have working codec for the specific coding scheme.
138 * @return returns 1 if the codec is configured and working. Otherwise
145 const TIFFCodec* codec = TIFFFindCODEC(scheme); local
147 if(codec == NULL) {
150 if(codec->init == NULL) {
153 if(codec->init != NotConfigured){
/external/skia/include/codec/
H A DSkAndroidCodec.h17 * Abstract interface defining image codec functionality that is necessary for
100 * dimensions, the codec may round up or down, depending on what is most
103 * Finally, the codec will always recommend a non-zero output, so the output
110 * Return (via desiredSubset) a subset which can decoded from this codec,
125 * supported by the codec.
185 * the codec must copy N colors into that storage, (where N is the
199 * The codec may implement this downscaling by sampling or another
224 * to scale or subset. If the codec cannot perform this
228 * SkPMColor values in options->fColorPtr. On success the codec must copy N colors into
265 SkCodec* codec() cons function in class:SkAndroidCodec
[all...]
/external/sl4a/Common/src/org/apache/commons/codec/binary/
H A DStringUtils.java18 package org.apache.commons.codec.binary;
22 import org.apache.commons.codec.CharEncoding;
/external/tinycompress/include/tinycompress/
H A Dtinycompress.h66 * @codec: codec type and parameters requested
71 struct snd_codec *codec; member in struct:compr_config
239 * is_codec_supported:check if the given codec is supported
245 * @codec: codec type and parameters to be checked
248 unsigned int flags, struct snd_codec *codec);
/external/webrtc/talk/media/base/
H A Dcodec_unittest.cc28 #include "talk/media/base/codec.h"
122 // Test a codec with a static payload type.
134 // Test a codec with a dynamic payload type.
144 // Test a codec with a dynamic payload type, and auto bitrate.
201 // Test a codec with a static payload type.
206 // Test a codec with a dynamic payload type.
217 // Test a codec with a static payload type.
222 // Test a codec with a dynamic payload type.
233 AudioCodec codec; local
234 codec
[all...]
/external/webrtc/webrtc/modules/audio_coding/acm2/
H A Dacm_send_test_oldapi.cc55 CodecInst codec; local
56 RTC_CHECK_EQ(0, AudioCodingModule::Codec(payload_name, &codec,
58 codec.pltype = payload_type;
59 codec.pacsize = frame_size_samples;
60 codec_registered_ = (acm_->RegisterSendCodec(codec) == 0);
H A Dcodec_manager.cc24 // Check if the given codec is a valid to be registered as send codec.
38 "Invalid codec setting for the send codec.");
42 // Telephone-event cannot be a send codec.
45 "telephone-event cannot be a send codec");
59 bool IsOpus(const CodecInst& codec) { argument
62 !STR_CASE_CMP(codec.plname, "opus") ||
158 // Check that the send codec is mono. We don't support VAD/DTX for stereo
/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/apache-http/src/org/apache/commons/codec/binary/
H A DBase64.java17 package org.apache.commons.codec.binary;
19 import org.apache.commons.codec.BinaryDecoder;
20 import org.apache.commons.codec.BinaryEncoder;
21 import org.apache.commons.codec.DecoderException;
22 import org.apache.commons.codec.EncoderException;
/external/apache-http/src/org/apache/commons/codec/language/
H A DMetaphone.java17 package org.apache.commons.codec.language;
19 import org.apache.commons.codec.EncoderException;
20 import org.apache.commons.codec.StringEncoder;
/external/libvpx/libvpx/examples/
H A Dset_maps.c58 fprintf(stderr, "Usage: %s <codec> <width> <height> <infile> <outfile>\n",
64 vpx_codec_ctx_t *codec) {
90 if (vpx_codec_control(codec, VP8E_SET_ROI_MAP, &roi))
91 die_codec(codec, "Failed to set ROI map");
97 vpx_codec_ctx_t *codec) {
107 if (vpx_codec_control(codec, VP8E_SET_ACTIVEMAP, &map))
108 die_codec(codec, "Failed to set active map");
114 vpx_codec_ctx_t *codec) {
121 if (vpx_codec_control(codec, VP8E_SET_ACTIVEMAP, &map))
122 die_codec(codec, "Faile
63 set_roi_map(const vpx_codec_enc_cfg_t *cfg, vpx_codec_ctx_t *codec) argument
96 set_active_map(const vpx_codec_enc_cfg_t *cfg, vpx_codec_ctx_t *codec) argument
113 unset_active_map(const vpx_codec_enc_cfg_t *cfg, vpx_codec_ctx_t *codec) argument
125 encode_frame(vpx_codec_ctx_t *codec, vpx_image_t *img, int frame_index, VpxVideoWriter *writer) argument
155 vpx_codec_ctx_t codec; local
[all...]
H A Dsimple_encoder.c39 // documentation for your codec to see if it provides any default
82 // The `vpx_codec_destroy` call frees any memory allocated by the codec.
111 "Usage: %s <codec> <width> <height> <infile> <outfile> "
118 static int encode_frame(vpx_codec_ctx_t *codec, vpx_image_t *img, argument
124 vpx_codec_encode(codec, img, frame_index, 1, flags, VPX_DL_GOOD_QUALITY);
125 if (res != VPX_CODEC_OK) die_codec(codec, "Failed to encode frame");
127 while ((pkt = vpx_codec_get_cx_data(codec, &iter)) != NULL) {
135 die_codec(codec, "Failed to write compressed frame");
148 vpx_codec_ctx_t codec; local
181 if (!encoder) die("Unsupported codec
[all...]
H A Dtwopass_encoder.c63 "Usage: %s <codec> <width> <height> <infile> <outfile> "
126 vpx_codec_ctx_t codec; local
130 if (vpx_codec_enc_init(&codec, encoder->codec_interface(), cfg, 0))
131 die_codec(&codec, "Failed to initialize encoder");
136 get_frame_stats(&codec, raw, frame_count, 1, 0, VPX_DL_GOOD_QUALITY,
142 while (get_frame_stats(&codec, NULL, frame_count, 1, 0, VPX_DL_GOOD_QUALITY,
147 if (vpx_codec_destroy(&codec)) die_codec(&codec, "Failed to destroy codec.");
160 vpx_codec_ctx_t codec; local
193 vpx_codec_ctx_t codec; local
[all...]
/external/libvpx/libvpx/
H A Dvpxenc.h37 const struct VpxInterface *codec; member in struct:VpxEncoderConfig
/external/skia/src/android/
H A DSkBitmapRegionCodec.cpp14 SkBitmapRegionCodec::SkBitmapRegionCodec(SkAndroidCodec* codec) argument
15 : INHERITED(codec->getInfo().width(), codec->getInfo().height())
16 , fCodec(codec)
45 // Ask the codec for a scaled subset
88 // the codec recognizes kGray8, we need to decode into a kAlpha8
/external/skia/tests/
H A DCodecPartialTest.cpp19 static SkImageInfo standardize_info(SkCodec* codec) { argument
20 SkImageInfo defaultInfo = codec->getInfo();
27 std::unique_ptr<SkCodec> codec(SkCodec::NewFromData(std::move(data)));
28 if (!codec) {
32 const SkImageInfo info = standardize_info(codec.get());
34 return SkCodec::kSuccess == codec->getPixels(info, dst->getPixels(), dst->rowBytes());
71 ERRORF(r, "Failed to create codec for %s", name);
149 std::unique_ptr<SkCodec> codec(SkCodec::NewFromData(file));
150 if (!codec) {
151 ERRORF(r, "Failed to create codec fro
[all...]
/external/webrtc/talk/media/webrtc/
H A Dwebrtcvoe.h99 webrtc::VoECodec* codec,
107 codec_(codec),
117 webrtc::VoECodec* codec() const { return codec_.get(); } function in class:cricket::VoEWrapper
97 VoEWrapper(webrtc::VoEAudioProcessing* processing, webrtc::VoEBase* base, webrtc::VoECodec* codec, webrtc::VoEHardware* hw, webrtc::VoENetwork* network, webrtc::VoERTP_RTCP* rtp, webrtc::VoEVolumeControl* volume) argument
/external/webrtc/webrtc/modules/video_coding/test/
H A Dvcm_payload_sink_factory.cc139 VideoCodec codec; local
140 VideoCodingModule::Codec(it->codec_type(), &codec);
141 codec.plType = it->payload_type();
142 if (vcm->RegisterReceiveCodec(&codec, 1) < 0) {
/external/webrtc/webrtc/modules/video_coding/
H A Dvideo_coding_impl.cc295 void VideoCodingModule::Codec(VideoCodecType codecType, VideoCodec* codec) { argument
296 VCMCodecDataBase::Codec(codecType, codec);
/external/webrtc/webrtc/video/
H A Dvideo_encoder_unittest.cc164 VideoCodec codec = {}; local
165 fallback_wrapper_.InitEncode(&codec, 2, kMaxPayloadSize);
/external/kernel-headers/original/uapi/sound/
H A Dcompress_offload.h47 * @codec: codec parameters
52 struct snd_codec codec; member in struct:snd_compr_params
113 * struct snd_compr_codec_caps - query capability of codec
114 * @codec: codec for which capability is queried
115 * @num_descriptors: number of codec descriptors
116 * @descriptor: array of codec capability descriptor
119 __u32 codec; member in struct:snd_compr_codec_caps
149 * SNDRV_COMPRESS_GET_CODEC_CAPS: Query capability of a codec
[all...]
/external/libvncserver/client_examples/
H A Dvnc2mpg.c60 c = &st->codec;
62 c = st->codec;
121 AVCodec *codec; local
125 c = &st->codec;
127 c = st->codec;
131 codec = avcodec_find_encoder(c->codec_id);
132 if (!codec) {
133 fprintf(stderr, "codec not found\n");
137 /* open the codec */
138 if (avcodec_open(c, codec) <
[all...]
/external/lzma/CPP/7zip/Common/
H A DCreateCoder.cpp124 const CCodecInfo &codec = *g_Codecs[i]; local
125 if (name.IsEqualToNoCase(codec.Name))
127 methodId = codec.Id;
128 numInStreams = codec.NumInStreams;
137 const CCodecInfoEx &codec = __externalCodecs->Codecs[i]; local
138 if (codec.Name.IsEqualToNoCase(name))
140 methodId = codec.Id;
141 numInStreams = codec.NumInStreams;
142 numOutStreams = codec.NumOutStreams;
156 const CCodecInfo &codec local
167 const CCodecInfoEx &codec = __externalCodecs->Codecs[i]; local
185 const CHasherInfo &codec = *g_Hashers[i]; local
196 const CHasherInfoEx &codec = __externalCodecs->Hashers[i]; local
232 const CCodecInfo &codec = *g_Codecs[i]; local
262 const CCodecInfoEx &codec = __externalCodecs->Codecs[i]; local
368 const CHasherInfo &codec = *g_Hashers[i]; local
381 const CHasherInfoEx &codec = __externalCodecs->Hashers[i]; local
[all...]

Completed in 6780 milliseconds

123456