1c12e749f2
- Divide FFI protocol into multiple files
- Audio support
- AV Streams/Sources
- Create tracks
- Use Dashmap to store handles
- Add a capture test
- Ignored by GHA atm
73 lines
1.9 KiB
C++
73 lines
1.9 KiB
C++
/*
|
|
* Copyright 2023 LiveKit
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the “License”);
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an “AS IS” BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "api/video/video_frame.h"
|
|
#include "livekit/video_frame_buffer.h"
|
|
#include "rtc_base/checks.h"
|
|
|
|
namespace livekit {
|
|
class VideoFrame;
|
|
class VideoFrameBuilder;
|
|
} // namespace livekit
|
|
#include "webrtc-sys/src/video_frame.rs.h"
|
|
|
|
namespace livekit {
|
|
|
|
class VideoFrame {
|
|
public:
|
|
explicit VideoFrame(const webrtc::VideoFrame& frame);
|
|
|
|
unsigned int width() const;
|
|
unsigned int height() const;
|
|
uint32_t size() const;
|
|
uint16_t id() const;
|
|
int64_t timestamp_us() const;
|
|
int64_t ntp_time_ms() const;
|
|
uint32_t transport_frame_id() const;
|
|
uint32_t timestamp() const;
|
|
|
|
VideoRotation rotation() const;
|
|
std::unique_ptr<VideoFrameBuffer> video_frame_buffer() const;
|
|
|
|
webrtc::VideoFrame get() const;
|
|
|
|
private:
|
|
webrtc::VideoFrame frame_;
|
|
};
|
|
|
|
// Allow to create VideoFrames from Rust,
|
|
// the builder pattern will be redone in Rust
|
|
class VideoFrameBuilder {
|
|
public:
|
|
VideoFrameBuilder() = default;
|
|
|
|
// TODO(theomonnom): other setters?
|
|
void set_video_frame_buffer(const VideoFrameBuffer& buffer);
|
|
void set_timestamp_us(int64_t timestamp_us);
|
|
void set_rotation(VideoRotation rotation);
|
|
void set_id(uint16_t id);
|
|
std::unique_ptr<VideoFrame> build();
|
|
|
|
private:
|
|
webrtc::VideoFrame::Builder builder_;
|
|
};
|
|
|
|
std::unique_ptr<VideoFrameBuilder> new_video_frame_builder();
|
|
|
|
} // namespace livekit
|