simpler method of delta coding

This commit is contained in:
minjaesong
2025-09-25 00:47:39 +09:00
parent 2b59d5dd8d
commit e2dd0744d2
2 changed files with 3 additions and 1 deletions

View File

@@ -2778,7 +2778,7 @@ int main(int argc, char *argv[]) {
int count_iframe = 0;
int count_pframe = 0;
KEYFRAME_INTERVAL = enc->output_fps >> 2; // refresh often because deltas in DWT are more visible than DCT
KEYFRAME_INTERVAL = CLAMP(enc->output_fps >> 3, 3, 30); // refresh often because deltas in DWT are more visible than DCT
while (continue_encoding) {
// Check encode limit if specified