Skip to content

Commit

Permalink
ビルド修正
Browse files Browse the repository at this point in the history
  • Loading branch information
torikizi committed Oct 2, 2024
1 parent d0ce584 commit 72f2a91
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@

// WebRTC
#include <api/video/nv12_buffer.h>
#include <api/video/video_frame.h>
#include <common_video/h264/h264_bitstream_parser.h>
#include <common_video/h265/h265_bitstream_parser.h>
#include <common_video/include/bitrate_adjuster.h>
Expand Down
2 changes: 1 addition & 1 deletion src/sora-cpp-sdk/src/hwenc_vpl/vpl_video_encoder.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -536,7 +536,7 @@ int32_t VplVideoEncoderImpl::Encode(
? webrtc::VideoContentType::SCREENSHARE
: webrtc::VideoContentType::UNSPECIFIED;
encoded_image_.timing_.flags = webrtc::VideoSendTiming::kInvalid;
encoded_image_.SetRtpTimestamp(frame.timestamp());
encoded_image_.SetRtpTimestamp(frame.rtp_timestamp());
encoded_image_.ntp_time_ms_ = frame.ntp_time_ms();
encoded_image_.capture_time_ms_ = frame.render_time_ms();
encoded_image_.rotation_ = frame.rotation();
Expand Down

0 comments on commit 72f2a91

Please sign in to comment.