Index: webrtc/modules/video_coding/codecs/test/videoprocessor.h |
diff --git a/webrtc/modules/video_coding/codecs/test/videoprocessor.h b/webrtc/modules/video_coding/codecs/test/videoprocessor.h |
index 3ae3dc5c0e5cfc5133b28078856f49edd542f836..072a3962ba8e12c280319502ff9a84fcb2d417c0 100644 |
--- a/webrtc/modules/video_coding/codecs/test/videoprocessor.h |
+++ b/webrtc/modules/video_coding/codecs/test/videoprocessor.h |
@@ -93,8 +93,14 @@ struct TestConfig { |
// If printing of information to stdout shall be performed during processing. |
bool verbose = true; |
- // If HW or SW codec should be used. |
- bool hw_codec = false; |
+ // Should hardware accelerated codecs be used? |
+ bool hw_encoder = false; |
+ bool hw_decoder = false; |
+ |
+ // Should the hardware codecs be wrapped in software fallbacks? |
+ bool sw_fallback_encoder = false; |
+ // TODO(brandtr): Add support for SW decoder fallbacks, when |
+ // webrtc::VideoDecoder's can be wrapped in std::unique_ptr's. |
}; |
// Handles encoding/decoding of video using the VideoEncoder/VideoDecoder |