1234567891011121314151617181920212223242526272829303132333435 |
- #ifndef API_VIDEO_VIDEO_STREAM_DECODER_CREATE_H_
- #define API_VIDEO_VIDEO_STREAM_DECODER_CREATE_H_
- #include <map>
- #include <memory>
- #include <utility>
- #include "api/task_queue/task_queue_factory.h"
- #include "api/video/video_stream_decoder.h"
- #include "api/video_codecs/sdp_video_format.h"
- namespace webrtc {
- std::unique_ptr<VideoStreamDecoderInterface> CreateVideoStreamDecoder(
- VideoStreamDecoderInterface::Callbacks* callbacks,
- VideoDecoderFactory* decoder_factory,
- TaskQueueFactory* task_queue_factory,
- std::map<int, std::pair<SdpVideoFormat, int>> decoder_settings);
- }
- #endif
|