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

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: Re-enable H264 in video_loopback and screenshare_loopback after rebase (video_quality_test) 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..f48cf3d09d7cc685102e47185f66b085f08cc12e 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();
hta - Chromium 2015/10/01 09:45:51 I can't see anyone who calls this function. 1) Is
hbos 2015/10/01 12:19:45 My bad, it was used in a prior PS. It's not needed
stefan-webrtc 2015/10/01 13:13:52 Then I guess you want to delete it? :)
hbos 2015/11/27 14:43:42 Oh, alright then! :)
~H264Encoder() override {}
};
@@ -38,7 +41,10 @@ class H264Encoder : public VideoEncoder {
class H264Decoder : public VideoDecoder {
public:
static H264Decoder* Create();
+ // If H.264 is supported (any implementation).
static bool IsSupported();
+ // If H.264 is supported with OpenH264/H264DecoderImpl implementation.
+ static bool IsSupportedOpenH264();
~H264Decoder() override {}
};

Powered by Google App Engine
This is Rietveld 408576698