Skip to content

Commit dc290d2

Browse files
committed
refactor: Use (empty) AudioDataFlags struct instead plain u32
1 parent 2a989e7 commit dc290d2

File tree

2 files changed

+8
-9
lines changed

2 files changed

+8
-9
lines changed

gamestreaming_native/src/packets/audio.rs

+7-8
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,11 @@ pub struct AudioControlFlags {
3939
stop_stream: bool,
4040
}
4141

42-
#[derive(Debug, Clone, PartialEq, Eq)]
43-
pub struct AudioDataFlags {}
42+
#[derive(Debug, Clone, DekuRead, DekuWrite, PartialEq, Eq)]
43+
pub struct AudioDataFlags {
44+
// TODO: Found out what these are
45+
pub unknown: u32,
46+
}
4447

4548
#[derive(Debug, Clone, DekuRead, DekuWrite, PartialEq, Eq)]
4649
pub struct PCMAudioFormat {
@@ -80,7 +83,7 @@ pub struct AudioControl {
8083

8184
#[derive(Debug, Clone, DekuRead, DekuWrite, PartialEq, Eq)]
8285
pub struct AudioData {
83-
pub flags: u32,
86+
pub flags: AudioDataFlags,
8487
pub frame_id: u32,
8588
pub timestamp: u64,
8689
#[deku(update = "self.data.len()")]
@@ -106,13 +109,9 @@ mod tests {
106109
#[test]
107110
fn parse_audio_control_flags() {
108111
fn create_flag(val: [u8; 4]) -> AudioControlFlags {
109-
let (rest, flags) =
112+
let (_, flags) =
110113
AudioControlFlags::from_bytes((&val, 0)).expect("Failed to create flags");
111114

112-
// Ensure all bits were processed
113-
assert!(rest.0.is_empty());
114-
assert_eq!(rest.1, 0);
115-
116115
flags
117116
}
118117
let start_flag = create_flag([0x10, 0, 0, 0]);

gamestreaming_native/src/packets/ping.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ mod test {
7676
.expect("Failed to get ping signing context");
7777

7878
// Udp payload + 2 is ping packet/payload
79-
let (rest, packet) = PingPayload::from_bytes((&packet_data[2..], 0))
79+
let (_, packet) = PingPayload::from_bytes((&packet_data[2..], 0))
8080
.expect("Failed to deserialize Ping packet");
8181

8282
assert_eq!(packet.ping_type, 0x01);

0 commit comments

Comments
 (0)