Skip to content

Commit

Permalink
Set default hash mode to only on keyframes
Browse files Browse the repository at this point in the history
  • Loading branch information
exelix11 committed Jan 4, 2024
1 parent 54dcbce commit 69114d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Client/Core/StreamManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public class StreamingOptions
public StreamKind Kind = StreamKind.Both;
public int AudioBatching = 3;
public bool UseNALReplay = true;
public bool UseNALReplayOnlyOnKeyframes = false;
public bool UseNALReplayOnlyOnKeyframes = true;

public bool HasVideo => Kind is StreamKind.Video or StreamKind.Both;
public bool HasAudio => Kind is StreamKind.Audio or StreamKind.Both;
Expand Down

0 comments on commit 69114d0

Please sign in to comment.