fixing terms

This commit is contained in:
talksik
2023-06-30 14:57:29 -07:00
parent 036a9af122
commit 21f9438f0b
+2 -2
View File
@@ -94,7 +94,7 @@ match event {
rtc_track.on_frame(Box::new(move |frame, buffer| {
// Just received a video frame!
// The buffer is YuvEncoded, you can decode it to ABGR by using our yuv_helper
// See the simple_room example for the conversion
// See the basic_room example for the conversion
});
} else {
// Audio Track..
@@ -106,7 +106,7 @@ match event {
## Examples
We made a [simple room demo](https://github.com/livekit/client-sdk-native/tree/main/examples/basic_room) leveraging all the current SDK features. Videos are rendered using wgpu and egui.
We made a [basic room demo](https://github.com/livekit/client-sdk-native/tree/main/examples/basic_room) leveraging all the current SDK features. Videos are rendered using wgpu and egui.
![](https://github.com/livekit/client-sdk-rust/blob/main/examples/images/simple-room-demo.gif)