Home
last modified time | relevance | path

Searched refs:codecName (Results 1 – 19 of 19) sorted by relevance

/external/openscreen/cast/streaming/
Doffer_messages_unittest.cc29 "codecName": "h264",
59 "codecName": "vp8",
75 "codecName": "opus",
213 "codecName": "opus", in TEST()
227 "codecName": "opus", in TEST()
242 "codecName": "opus", in TEST()
263 "codecName": "opus", in TEST()
285 "codecName": "opus", in TEST()
302 "codecName": "opus", in TEST()
319 "codecName": "opus", in TEST()
[all …]
Dreceiver_session_unittest.cc41 "codecName": "vp9",
62 "codecName": "vp8",
83 "codecName": "opus",
107 "codecName": "vp8",
139 "codecName": "vp12",
171 "codecName": "opus",
/external/exoplayer/tree/extensions/ffmpeg/src/main/java/com/google/android/exoplayer2/ext/ffmpeg/
DFfmpegLibrary.java72 String codecName = getCodecName(mimeType); in supportsFormat() local
73 if (codecName == null) { in supportsFormat()
76 if (!ffmpegHasDecoder(codecName)) { in supportsFormat()
77 Log.w(TAG, "No " + codecName + " decoder available. Check the FFmpeg build configuration."); in supportsFormat()
131 private static native boolean ffmpegHasDecoder(String codecName); in ffmpegHasDecoder() argument
DFfmpegAudioDecoder.java44 private final String codecName; field in FfmpegAudioDecoder
66 codecName = Assertions.checkNotNull(FfmpegLibrary.getCodecName(format.sampleMimeType)); in FfmpegAudioDecoder()
71 ffmpegInitialize(codecName, extraData, outputFloat, format.sampleRate, format.channelCount); in FfmpegAudioDecoder()
80 return "ffmpeg" + FfmpegLibrary.getVersion() + "-" + codecName; in getName()
123 if (sampleRate == 0 && "alac".equals(codecName)) { in decode()
211 String codecName, in ffmpegInitialize() argument
/external/exoplayer/tree/extensions/ffmpeg/src/main/jni/
Dffmpeg_jni.cc74 AVCodec *getCodecByName(JNIEnv* env, jstring codecName);
116 LIBRARY_FUNC(jboolean, ffmpegHasDecoder, jstring codecName) { in LIBRARY_FUNC() argument
117 return getCodecByName(env, codecName) != NULL; in LIBRARY_FUNC()
120 AUDIO_DECODER_FUNC(jlong, ffmpegInitialize, jstring codecName, in AUDIO_DECODER_FUNC() argument
123 AVCodec *codec = getCodecByName(env, codecName); in AUDIO_DECODER_FUNC()
210 AVCodec *getCodecByName(JNIEnv* env, jstring codecName) { in getCodecByName() argument
211 if (!codecName) { in getCodecByName()
214 const char *codecNameChars = env->GetStringUTFChars(codecName, NULL); in getCodecByName()
216 env->ReleaseStringUTFChars(codecName, codecNameChars); in getCodecByName()
/external/webrtc/sdk/android/api/org/webrtc/
DHardwareVideoEncoderFactory.java104 String codecName = info.getName(); in createEncoder() local
125 return new HardwareVideoEncoder(new MediaCodecWrapperFactoryImpl(), codecName, type, in createEncoder()
127 getForcedKeyFrameIntervalMs(type, codecName), createBitrateAdjuster(type, codecName), in createEncoder()
258 private int getForcedKeyFrameIntervalMs(VideoCodecMimeType type, String codecName) { in getForcedKeyFrameIntervalMs() argument
259 if (type == VideoCodecMimeType.VP8 && codecName.startsWith(QCOM_PREFIX)) { in getForcedKeyFrameIntervalMs()
273 private BitrateAdjuster createBitrateAdjuster(VideoCodecMimeType type, String codecName) { in createBitrateAdjuster() argument
274 if (codecName.startsWith(EXYNOS_PREFIX)) { in createBitrateAdjuster()
/external/webrtc/sdk/objc/components/video_codec/
DRTCVideoEncoderFactoryH264.m20 NSString *codecName = kRTCVideoCodecH264Name;
28 [[RTC_OBJC_TYPE(RTCVideoCodecInfo) alloc] initWithName:codecName
38 [[RTC_OBJC_TYPE(RTCVideoCodecInfo) alloc] initWithName:codecName
DRTCVideoDecoderFactoryH264.m20 NSString *codecName = kRTCVideoCodecH264Name;
28 [[RTC_OBJC_TYPE(RTCVideoCodecInfo) alloc] initWithName:codecName
38 [[RTC_OBJC_TYPE(RTCVideoCodecInfo) alloc] initWithName:codecName
/external/webrtc/sdk/android/src/java/org/webrtc/
DAndroidVideoDecoder.java58 private final String codecName; field in AndroidVideoDecoder
131 AndroidVideoDecoder(MediaCodecWrapperFactory mediaCodecWrapperFactory, String codecName, in AndroidVideoDecoder() argument
137 "ctor name: " + codecName + " type: " + codecType + " color format: " + colorFormat in AndroidVideoDecoder()
140 this.codecName = codecName; in AndroidVideoDecoder()
164 "initDecodeInternal name: " + codecName + " type: " + codecType + " width: " + width in initDecodeInternal()
182 codec = mediaCodecWrapperFactory.createByCodecName(codecName); in initDecodeInternal()
184 Logging.e(TAG, "Cannot create media decoder " + codecName); in initDecodeInternal()
305 return codecName; in getImplementationName()
DHardwareVideoEncoder.java105 private final String codecName; field in HardwareVideoEncoder
182 public HardwareVideoEncoder(MediaCodecWrapperFactory mediaCodecWrapperFactory, String codecName, in HardwareVideoEncoder() argument
187 this.codecName = codecName; in HardwareVideoEncoder()
229 codec = mediaCodecWrapperFactory.createByCodecName(codecName); in initEncodeInternal()
231 Logging.e(TAG, "Cannot create media encoder " + codecName); in initEncodeInternal()
/external/exoplayer/tree/library/core/src/main/java/com/google/android/exoplayer2/mediacodec/
DMediaCodecUtil.java627 String codecName = Util.toLowerInvariant(codecInfo.getName()); in isSoftwareOnly() local
628 if (codecName.startsWith("arc.")) { // App Runtime for Chrome (ARC) codecs in isSoftwareOnly()
631 return codecName.startsWith("omx.google.") in isSoftwareOnly()
632 || codecName.startsWith("omx.ffmpeg.") in isSoftwareOnly()
633 || (codecName.startsWith("omx.sec.") && codecName.contains(".sw.")) in isSoftwareOnly()
634 || codecName.equals("omx.qcom.video.decoder.hevcswvdec") in isSoftwareOnly()
635 || codecName.startsWith("c2.android.") in isSoftwareOnly()
636 || codecName.startsWith("c2.google.") in isSoftwareOnly()
637 || (!codecName.startsWith("omx.") && !codecName.startsWith("c2.")); in isSoftwareOnly()
653 String codecName = Util.toLowerInvariant(codecInfo.getName()); in isVendor() local
[all …]
DMediaCodecRenderer.java1029 String codecName = codecInfo.name; in initCodec() local
1042 TraceUtil.beginSection("createCodec:" + codecName); in initCodec()
1043 codec = MediaCodec.createByCodecName(codecName); in initCodec()
1094 codecAdaptationWorkaroundMode = codecAdaptationWorkaroundMode(codecName); in initCodec()
1095 codecNeedsReconfigureWorkaround = codecNeedsReconfigureWorkaround(codecName); in initCodec()
1096 codecNeedsDiscardToSpsWorkaround = codecNeedsDiscardToSpsWorkaround(codecName, codecFormat); in initCodec()
1097 codecNeedsFlushWorkaround = codecNeedsFlushWorkaround(codecName); in initCodec()
1098 codecNeedsSosFlushWorkaround = codecNeedsSosFlushWorkaround(codecName); in initCodec()
1099 codecNeedsEosFlushWorkaround = codecNeedsEosFlushWorkaround(codecName); in initCodec()
1100 codecNeedsEosOutputExceptionWorkaround = codecNeedsEosOutputExceptionWorkaround(codecName); in initCodec()
[all …]
/external/oss-fuzz/projects/kcodecs/
Dkcodecs_fuzzer.cc74 for (const char *codecName : codecs) { in LLVMFuzzerTestOneInput() local
75 KCodecs::Codec *c = KCodecs::Codec::codecForName(codecName); in LLVMFuzzerTestOneInput()
/external/webrtc/sdk/objc/api/peerconnection/
DRTCVideoEncoderSettings+Private.mm21 const char *codecName = CodecTypeToPayloadString(videoCodec->codecType);
22 self.name = [NSString stringWithUTF8String:codecName];
/external/webrtc/sdk/android/instrumentationtests/src/org/webrtc/
DAndroidVideoDecoderInstrumentationTest.java58 public AndroidVideoDecoderInstrumentationTest(String codecName, boolean useEglContext) { in AndroidVideoDecoderInstrumentationTest() argument
59 if (codecName.equals("H264")) { in AndroidVideoDecoderInstrumentationTest()
62 this.codecType = new VideoCodecInfo(codecName, new HashMap<>()); in AndroidVideoDecoderInstrumentationTest()
/external/webrtc/sdk/objc/native/src/
Dobjc_video_decoder_factory.mm96 NSString *codecName = [NSString stringWithUTF8String:format.name.c_str()];
98 if ([codecName isEqualToString:codecInfo.name]) {
/external/exoplayer/tree/library/core/src/main/java/com/google/android/exoplayer2/audio/
DMediaCodecAudioRenderer.java800 private static boolean codecNeedsDiscardChannelsWorkaround(String codecName) { in codecNeedsDiscardChannelsWorkaround() argument
802 return Util.SDK_INT < 24 && "OMX.SEC.aac.dec".equals(codecName) in codecNeedsDiscardChannelsWorkaround()
814 private static boolean codecNeedsEosBufferTimestampWorkaround(String codecName) { in codecNeedsEosBufferTimestampWorkaround() argument
816 && "OMX.SEC.mp3.dec".equals(codecName) in codecNeedsEosBufferTimestampWorkaround()
/external/webrtc/sdk/android/tests/src/org/webrtc/
DHardwareVideoEncoderTest.java65 TestEncoder(MediaCodecWrapperFactory mediaCodecWrapperFactory, String codecName, in TestEncoder() argument
69 super(mediaCodecWrapperFactory, codecName, codecType, surfaceColorFormat, yuvColorFormat, in TestEncoder()
DAndroidVideoDecoderTest.java64 public TestDecoder(MediaCodecWrapperFactory mediaCodecFactory, String codecName, in TestDecoder() argument
66 super(mediaCodecFactory, codecName, codecType, colorFormat, sharedContext); in TestDecoder()