diff options
| author | 2024-01-21 18:53:13 -0500 | |
|---|---|---|
| committer | 2024-01-21 18:53:13 -0500 | |
| commit | dd2036e23a1f800f13b821eaa862403de1aa17f0 (patch) | |
| tree | 85f241c30364319e8cf41114c8ff361046a51567 /src/libsink | |
| parent | 88ea5bdca85fc0954d1dd64309a308199c1af4a8 (diff) | |
| download | camu-dd2036e23a1f800f13b821eaa862403de1aa17f0.tar.gz camu-dd2036e23a1f800f13b821eaa862403de1aa17f0.tar.bz2 camu-dd2036e23a1f800f13b821eaa862403de1aa17f0.zip | |
Add files for wsl environment, small fixes
Signed-off-by: Andrew Opalach <andrew@akon.city>
Diffstat (limited to 'src/libsink')
| -rw-r--r-- | src/libsink/sink.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsink/sink.c b/src/libsink/sink.c index 343275b..3eecf5f 100644 --- a/src/libsink/sink.c +++ b/src/libsink/sink.c @@ -388,7 +388,7 @@ static void client_callback(void *userdata, u8 op, struct bmu_vcr_stream *stream case BIMU_CLIENT_SET: { u64 ts = aki_get_timestamp(); struct bmu_seek_req *req = (struct bmu_seek_req *)opaque; - //req->delay = 0; // Ignore delay. + req->delay = 0; // Ignore delay. req->ts -= req->delay; bool late = ts <= req->ts; if (late) {} |