/external/chromium_org/third_party/webrtc/modules/video_coding/main/source/ |
packet.h | 44 webrtc::VideoCodecType codec; member in class:webrtc::VCMPacket
|
/external/chromium_org/third_party/webrtc/tools/e2e_quality/audio/ |
audio_e2e_harness.cc | 27 DEFINE_string(codec, "ISAC", "codec name"); 28 DEFINE_int32(rate, 16000, "codec sample rate in Hz"); 40 VoECodec* codec = VoECodec::GetInterface(voe); local 41 ASSERT_TRUE(codec != NULL); 59 for (int i = 0; i < codec->NumOfCodecs(); i++) { 60 ASSERT_EQ(0, codec->GetCodec(i, codec_params)); 68 ASSERT_EQ(0, codec->SetSendCodec(channel, codec_params));
|
/external/chromium_org/third_party/webrtc/video/ |
video_receive_stream.cc | 99 VideoCodec codec; local 100 memset(&codec, 0, sizeof(codec)); 101 codec.codecType = kVideoCodecULPFEC; 102 strcpy(codec.plName, "ulpfec"); 103 codec.plType = config_.rtp.fec.ulpfec_payload_type; 104 if (codec_->SetReceiveCodec(channel_, codec) != 0) { 105 LOG(LS_ERROR) << "Could not set ULPFEC codec. This shouldn't happen."; 110 VideoCodec codec; local 111 memset(&codec, 0, sizeof(codec)) [all...] |
/external/libvpx/libvpx/examples/ |
decode_with_drops.c | 16 // 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, "Failed to destroy codec.") [all...] |
/external/lzma/CPP/7zip/Compress/ |
CodecExports.cpp | 56 const CCodecInfo &codec = *g_Codecs[i];
local 57 if (id != codec.Id || encode && !codec.CreateEncoder || !encode && !codec.CreateDecoder)
59 if (!isFilter && codec.IsFilter || isFilter && !codec.IsFilter ||
60 codec.NumInStreams != 1 && !isCoder2 || codec.NumInStreams == 1 && isCoder2)
75 const CCodecInfo &codec = *g_Codecs[index];
local 76 if (!isFilter && codec.IsFilter || isFilter && !codec.IsFilter || 122 const CCodecInfo &codec = *g_Codecs[codecIndex]; local [all...] |
/frameworks/av/media/libstagefright/omx/ |
SoftOMXPlugin.cpp | 110 sp<SoftOMXComponent> codec = local 113 if (codec == NULL) { 120 OMX_ERRORTYPE err = codec->initCheck(); 128 codec->incStrong(this); 129 codec->setLibHandle(libHandle);
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/examples/ |
decode_with_drops.c | 16 // 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, "Failed to destroy codec.") [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/encodings/ |
bz2_codec.py | 1 """ Python 'bz2_codec' Codec - bz2 compression encoding 3 Unlike most of the other codecs which target Unicode, this codec 11 import bz2 # this codec needs the optional bz2 module ! namespace 13 ### Codec APIs 22 error handling for this codec. 40 error handling for this codec. 47 class Codec(codecs.Codec): 85 class StreamWriter(Codec,codecs.StreamWriter): 88 class StreamReader(Codec,codecs.StreamReader) [all...] |
zlib_codec.py | 1 """ Python 'zlib_codec' Codec - zlib compression encoding 3 Unlike most of the other codecs which target Unicode, this codec 10 import zlib # this codec needs the optional zlib module ! namespace 12 ### Codec APIs 21 error handling for this codec. 39 error handling for this codec. 46 class Codec(codecs.Codec): 85 class StreamWriter(Codec,codecs.StreamWriter): 88 class StreamReader(Codec,codecs.StreamReader) [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/encodings/ |
bz2_codec.py | 1 """ Python 'bz2_codec' Codec - bz2 compression encoding 3 Unlike most of the other codecs which target Unicode, this codec 11 import bz2 # this codec needs the optional bz2 module ! namespace 13 ### Codec APIs 22 error handling for this codec. 40 error handling for this codec. 47 class Codec(codecs.Codec): 85 class StreamWriter(Codec,codecs.StreamWriter): 88 class StreamReader(Codec,codecs.StreamReader) [all...] |
zlib_codec.py | 1 """ Python 'zlib_codec' Codec - zlib compression encoding 3 Unlike most of the other codecs which target Unicode, this codec 10 import zlib # this codec needs the optional zlib module ! namespace 12 ### Codec APIs 21 error handling for this codec. 39 error handling for this codec. 46 class Codec(codecs.Codec): 85 class StreamWriter(Codec,codecs.StreamWriter): 88 class StreamReader(Codec,codecs.StreamReader) [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
org.apache.commons.codec_1.3.0.v20100518-1140.jar | |
/external/robolectric/lib/main/ |
commons-codec-1.6.jar | |
/cts/suite/cts/deviceTests/videoperf/src/com/android/cts/videoperf/ |
CodecInfo.java | 29 * Utility class for getting codec information like bit rate, fps, and etc. 37 /** if codec is supporting YUV semiplanar format */ 39 /** if codec is supporting YUV planar format */ 45 * Check if given codec with given (w,h) is supported. 46 * @param mimeType codec type in mime format like MediaFormat.MIMETYPE_VIDEO_AVC 49 * @param isEncoder whether the codec is encoder or decoder 56 String codec = isEncoder local 59 if (codec == null) { // not supported 64 if (info.getName().equals(codec)) {
|
/cts/tests/tests/media/src/android/media/cts/ |
MediaCodecListTest.java | 176 Log.d(TAG, "codec: " + info.getName()); 179 MediaCodec codec = MediaCodec.createByCodecName(info.getName()); local 181 assertEquals(codec.getName(), info.getName()); 183 assertEquals(codec.getCodecInfo(), info); 185 codec.release(); 186 codec = null; 209 Log.d(TAG, "codec: " + info.getName()); 237 // codec ordering 248 // codec ordering 255 Log.d(TAG, "skipping non-regular codec " + info.getName()) 321 String codec = requiredCodec.mMimeTypeName local [all...] |
/external/apache-http/src/org/apache/commons/codec/binary/ |
BinaryCodec.java | 17 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; 83 * @see org.apache.commons.codec.BinaryEncoder#encode(byte[]) 97 * @see org.apache.commons.codec.Encoder#encode(java.lang.Object) 114 * @see org.apache.commons.codec.Decoder#decode(java.lang.Object) 138 * @see org.apache.commons.codec.Decoder#decode(Object) 150 * @see org.apache.commons.codec.Decoder#decode(Object [all...] |
Hex.java | 17 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/net/ |
QCodec.java | 17 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");
|
URLCodec.java | 17 package org.apache.commons.codec.net; 23 import org.apache.commons.codec.BinaryDecoder; 24 import org.apache.commons.codec.BinaryEncoder; 25 import org.apache.commons.codec.DecoderException; 26 import org.apache.commons.codec.EncoderException; 27 import org.apache.commons.codec.StringDecoder; 28 import org.apache.commons.codec.StringEncoder; 40 * This codec is meant to be a replacement for standard Java classes
|
/external/chromium_org/components/bookmarks/browser/ |
bookmark_storage.cc | 66 BookmarkCodec codec; local 68 codec.Decode(details->bb_node(), details->other_folder_node(), 71 details->set_computed_checksum(codec.computed_checksum()); 72 details->set_stored_checksum(codec.stored_checksum()); 73 details->set_ids_reassigned(codec.ids_reassigned()); 74 details->set_model_meta_info_map(codec.model_meta_info_map()); 76 codec.model_sync_transaction_version()); 186 BookmarkCodec codec; local 187 scoped_ptr<base::Value> value(codec.Encode(model_));
|
/external/chromium_org/components/cdm/browser/ |
cdm_message_filter_android.cc | 30 SupportedCodecs codec; member in struct:cdm::CodecInfo 58 if ((request.codecs & info.codec) && 62 supported_codecs |= info.codec; 109 DCHECK(request.codecs & content::EME_CODEC_ALL) << "unrecognized codec";
|
/external/chromium_org/media/base/ |
video_decoder_config.cc | 19 VideoDecoderConfig::VideoDecoderConfig(VideoCodec codec, 28 Initialize(codec, profile, format, coded_size, visible_rect, natural_size, 56 void VideoDecoderConfig::Initialize(VideoCodec codec, 69 UMA_HISTOGRAM_ENUMERATION("Media.VideoCodec", codec, kVideoCodecMax + 1); 83 codec_ = codec; 102 return ((codec() == config.codec()) && 116 s << "codec: " << codec() 132 VideoCodec VideoDecoderConfig::codec() const function in class:media::VideoDecoderConfig [all...] |
/external/chromium_org/third_party/libjingle/source/talk/media/base/ |
codec_unittest.cc | 28 #include "talk/media/base/codec.h" 32 using cricket::Codec; 47 Codec c0(96, "D", 1000, 0); 50 Codec c1 = c0; 78 Codec c5; 79 Codec c6(0, "", 0, 0); 123 // Test a codec with a static payload type. 135 // Test a codec with a dynamic payload type. 145 // Test a codec with a dynamic payload type, and auto bitrate. 202 // Test a codec with a static payload type 282 AudioCodec codec; local [all...] |
/external/chromium_org/third_party/libvpx/source/libvpx/examples/ |
decode_to_md5.c | 82 vpx_codec_ctx_t codec; local 103 die("Unknown input codec."); 107 if (vpx_codec_dec_init(&codec, decoder->codec_interface(), NULL, 0)) 108 die_codec(&codec, "Failed to initialize decoder"); 116 if (vpx_codec_decode(&codec, frame, (unsigned int)frame_size, NULL, 0)) 117 die_codec(&codec, "Failed to decode frame"); 119 while ((img = vpx_codec_get_frame(&codec, &iter)) != NULL) { 130 if (vpx_codec_destroy(&codec)) 131 die_codec(&codec, "Failed to destroy codec.") [all...] |
set_maps.c | 59 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, "Failed to set active map") 162 vpx_codec_ctx_t codec; local [all...] |