123456789101112131415161718192021222324 |
- #ifndef TEST_SCENARIO_HARDWARE_CODECS_H_
- #define TEST_SCENARIO_HARDWARE_CODECS_H_
- #include <memory>
- #include "api/video_codecs/video_decoder_factory.h"
- #include "api/video_codecs/video_encoder_factory.h"
- namespace webrtc {
- namespace test {
- std::unique_ptr<VideoEncoderFactory> CreateHardwareEncoderFactory();
- std::unique_ptr<VideoDecoderFactory> CreateHardwareDecoderFactory();
- }
- }
- #endif
|