Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(484)

Unified Diff: webrtc/sdk/objc/Framework/Classes/PeerConnection/RTCVideoCodecH264.mm

Issue 2987253003: ObjC: Add implementationName for injectable codecs (Closed)
Patch Set: Created 3 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | webrtc/sdk/objc/Framework/Classes/VideoToolbox/objc_video_decoder_factory.mm » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/sdk/objc/Framework/Classes/PeerConnection/RTCVideoCodecH264.mm
diff --git a/webrtc/sdk/objc/Framework/Classes/PeerConnection/RTCVideoCodecH264.mm b/webrtc/sdk/objc/Framework/Classes/PeerConnection/RTCVideoCodecH264.mm
index 7b38ec047cec1dfd2f1ee3080e91b7982117f077..b1fcd1b8a6d516d899f4d31b8141934318001252 100644
--- a/webrtc/sdk/objc/Framework/Classes/PeerConnection/RTCVideoCodecH264.mm
+++ b/webrtc/sdk/objc/Framework/Classes/PeerConnection/RTCVideoCodecH264.mm
@@ -181,6 +181,10 @@ class H264VideoToolboxDecodeCompleteCallback : public webrtc::DecodedImageCallba
high:kHighH264QpThreshold];
}
+- (NSString *)implementationName {
+ return @"VideoToolbox";
+}
+
@end
// Decoder.
@@ -247,6 +251,10 @@ class H264VideoToolboxDecodeCompleteCallback : public webrtc::DecodedImageCallba
image, missingFrames, header.release(), &codecSpecificInfo, renderTimeMs);
}
+- (NSString *)implementationName {
+ return @"VideoToolbox";
+}
+
@end
// Encoder factory.
« no previous file with comments | « no previous file | webrtc/sdk/objc/Framework/Classes/VideoToolbox/objc_video_decoder_factory.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698