Skip to content

Commit

Permalink
Fix typo and missing file
Browse files Browse the repository at this point in the history
  • Loading branch information
TheElixZammuto committed Nov 26, 2024
1 parent 30601a9 commit cf1d0b4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/rtsp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -976,7 +976,7 @@ namespace rtsp_stream {
args.try_emplace("x-ml-video.configuredBitrateKbps"sv, "0"sv);
args.try_emplace("x-ss-general.encryptionEnabled"sv, "0"sv);
args.try_emplace("x-ss-video[0].chromaSamplingType"sv, "0"sv);
args.try_emplace("x-nv-video[0].enableIntraRefresh"sv, "0"sv);
args.try_emplace("x-ss-video[0].intraRefresh"sv, "0"sv);

stream::config_t config;

Expand Down
2 changes: 2 additions & 0 deletions src/video.h
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,8 @@ namespace video {
int dynamicRange;

int chromaSamplingType; // 0 - 4:2:0, 1 - 4:4:4

int enableIntraRefresh; //0 - disabled, 1 - enabled
};

platf::mem_type_e
Expand Down

0 comments on commit cf1d0b4

Please sign in to comment.