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

Unified Diff: webrtc/modules/video_coding/codecs/h264/include/h264.h

Issue 1306813009: H.264 video codec support using OpenH264/FFmpeg (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Addressed stefan and hta comments Created 5 years, 3 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
Index: webrtc/modules/video_coding/codecs/h264/include/h264.h
diff --git a/webrtc/modules/video_coding/codecs/h264/include/h264.h b/webrtc/modules/video_coding/codecs/h264/include/h264.h
index 3f52839a6cbce59470c2cf07c5cf241c2c607608..c7ee9818f4e8e37307996df7c7eae22c577d2b37 100644
--- a/webrtc/modules/video_coding/codecs/h264/include/h264.h
+++ b/webrtc/modules/video_coding/codecs/h264/include/h264.h
@@ -30,7 +30,10 @@ namespace webrtc {
class H264Encoder : public VideoEncoder {
public:
static H264Encoder* Create();
+ // If H.264 is supported (any implementation).
static bool IsSupported();
+ // If H.264 is supported with OpenH264/H264EncoderImpl implementation.
+ static bool IsSupportedOpenH264();
~H264Encoder() override {}
};

Powered by Google App Engine
This is Rietveld 408576698