Skip to content

Commit c44141c

Browse files
committed
switch to playbin, improve public api, performance
1 parent 36d2b90 commit c44141c

File tree

5 files changed

+193
-128
lines changed

5 files changed

+193
-128
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Features:
1313
- Video buffering when streaming on a network.
1414
- Audio support.
1515
- Programmatic control.
16-
- Capture thumbnails from a set of timestamps.
16+
- Can capture thumbnails from a set of timestamps.
1717
- Good performance (i.e., comparable to other video players). GStreamer (with the right plugins) will perform hardware-accelerated decoding, and the color space (YUV to RGB) is converted on the GPU whilst rendering the frame.
1818

1919
Limitations (hopefully to be fixed):

examples/minimal.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ impl App {
6464
Message::SeekRelease => {
6565
self.dragging = false;
6666
self.video
67-
.seek(Duration::from_secs_f64(self.position))
67+
.seek(Duration::from_secs_f64(self.position), false)
6868
.expect("seek");
6969
self.video.set_paused(false);
7070
}

src/shader.wgsl

+6-1
Original file line numberDiff line numberDiff line change
@@ -54,5 +54,10 @@ fn fs_main(in: VertexOutput) -> @location(0) vec4<f32> {
5454
rgb.y = dot(yuv, yuv2g);
5555
rgb.z = dot(yuv, yuv2b);
5656

57-
return vec4<f32>(pow(rgb, vec3<f32>(2.2)), 1.0);
57+
let threshold = rgb <= vec3<f32>(0.04045);
58+
let hi = pow((rgb + vec3<f32>(0.055)) / vec3<f32>(1.055), vec3<f32>(2.4));
59+
let lo = rgb * vec3<f32>(1.0 / 12.92);
60+
rgb = select(hi, lo, threshold);
61+
62+
return vec4<f32>(rgb, 1.0);
5863
}

0 commit comments

Comments
 (0)