1use std::fmt;
8use serde_json::Value;
9use serde::{Serialize, Deserialize};
10use anyhow::Result;
11use crate::ToBytes;
12
13
14#[derive(Clone, PartialEq, Eq, Serialize, Deserialize)]
15pub struct WisePlayPsshData {
16 pub json: Value,
17}
18
19impl fmt::Debug for WisePlayPsshData {
20 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
21 write!(f, "WisePlayPsshData<{}>", self.json)
22 }
23}
24
25impl ToBytes for WisePlayPsshData {
26 fn to_bytes(&self) -> Vec<u8> {
27 self.json.to_string().into_bytes()
28 }
29}
30
31pub fn parse_pssh_data(buf: &[u8]) -> Result<WisePlayPsshData> {
32 let json = serde_json::from_slice(buf)?;
33 Ok(WisePlayPsshData { json })
34}