Home
last modified time | relevance | path

Searched refs:CodecType (Results 1 – 8 of 8) sorted by relevance

/external/webrtc/webrtc/call/
Dpacket_injection_tests.cc20 enum class CodecType { enum in webrtc::PacketInjectionTest
27 void InjectIncorrectPacket(CodecType codec_type,
35 void PacketInjectionTest::InjectIncorrectPacket(CodecType codec_type, in InjectIncorrectPacket()
47 case CodecType::kVp8: in InjectIncorrectPacket()
50 case CodecType::kH264: in InjectIncorrectPacket()
88 InjectIncorrectPacket(CodecType::kH264, 101, kPacket, sizeof(kPacket)); in TEST_F()
/external/v4l2_codec2/tests/
DC2VDAComponent_test.cpp119 enum class CodecType { UNKNOWN, H264, VP8, VP9 }; enum
123 CodecType mCodec = CodecType::UNKNOWN;
266 const TestVideoFile::CodecType codec, sp<IMediaSource>* source) { in getMediaSourceFromFile()
284 if (codec == TestVideoFile::CodecType::H264) { in getMediaSourceFromFile()
286 } else if (codec == TestVideoFile::CodecType::VP8) { in getMediaSourceFromFile()
288 } else if (codec == TestVideoFile::CodecType::VP9) { in getMediaSourceFromFile()
337 mTestVideoFile->mCodec = TestVideoFile::CodecType::H264; in parseTestVideoData()
339 mTestVideoFile->mCodec = TestVideoFile::CodecType::VP8; in parseTestVideoData()
341 mTestVideoFile->mCodec = TestVideoFile::CodecType::VP9; in parseTestVideoData()
343 ASSERT_NE(mTestVideoFile->mCodec, TestVideoFile::CodecType::UNKNOWN); in parseTestVideoData()
[all …]
/external/libmojo/mojo/public/tools/bindings/generators/
Dmojom_js_generator.py113 def CodecType(kind): function
150 return "codec.PackedBool" if mojom.IsBoolKind(kind) else CodecType(kind)
156 return "decodeStruct(%s)" % CodecType(kind)
165 return "decodeArrayPointer(%s)" % CodecType(kind.kind)
167 return "decodeUnion(%s)" % CodecType(kind)
176 return "encodeStruct(%s, " % CodecType(kind)
187 return "encodeArrayPointer(%s, " % CodecType(kind.kind)
/external/webrtc/talk/media/base/
Dcodec.h198 enum CodecType { enum
205 CodecType GetCodecType() const;
Dcodec.cc269 VideoCodec::CodecType VideoCodec::GetCodecType() const { in GetCodecType()
/external/python/cpython2/Mac/Modules/qt/
Dqtsupport.py222 CodecType = OSTypeType("CodecType") variable
D_Qtmodule.c8687 CodecType cType; in Qt_VideoMediaSetCodecParameter()
8719 CodecType cType; in Qt_VideoMediaGetCodecParameter()
10387 CodecType cType; in Qt_GetMaxCompressionSize()
10421 CodecType cType; in Qt_GetCompressionTime()
10459 CodecType cType; in Qt_CompressImage()
10712 CodecType cType; in Qt_FindCodec()
10741 CodecType cType; in Qt_CompressPicture()
10768 CodecType cType; in Qt_CompressPictureFile()
10798 CodecType cType; in Qt_ConvertImage()
/external/webrtc/talk/media/webrtc/
Dwebrtcvideoengine2.cc2581 std::map<int, VideoCodec::CodecType> payload_codec_type; in MapCodecs()