12345678910111213141516171819202122232425262728293031 |
- #ifndef MODULES_VIDEO_CODING_CODECS_VP9_SVC_CONFIG_H_
- #define MODULES_VIDEO_CODING_CODECS_VP9_SVC_CONFIG_H_
- #include <stddef.h>
- #include <vector>
- #include "api/video_codecs/spatial_layer.h"
- namespace webrtc {
- std::vector<SpatialLayer> GetSvcConfig(size_t input_width,
- size_t input_height,
- float max_framerate_fps,
- size_t first_active_layer,
- size_t num_spatial_layers,
- size_t num_temporal_layers,
- bool is_screen_sharing);
- }
- #endif
|