From: Kostya Shishkov Date: Tue, 16 May 2017 16:47:55 +0000 (+0200) Subject: add PCM codecs to the register X-Git-Url: https://git.nihav.org/?a=commitdiff_plain;ds=sidebyside;h=b58d7656167205d9e8f48739f58637689d369314;hp=ccae5343c71a92519937b9eafd9af0fe0ce3d799;p=nihav.git add PCM codecs to the register --- diff --git a/src/register.rs b/src/register.rs index 76ff16f..1d6209d 100644 --- a/src/register.rs +++ b/src/register.rs @@ -137,6 +137,8 @@ static AVI_VIDEO_CODEC_REGISTER: &'static [(&[u8;4], &str)] = &[ static WAV_CODEC_REGISTER: &'static [(u16, &str)] = &[ (0x0000, "audio-pcm"), + (0x0001, "audio-pcm"), + (0x0003, "audio-pcm"), (0x0401, "audio-imc"), (0x0402, "audio-iac"), ]; @@ -170,4 +172,4 @@ mod test { let cd2 = get_codec_description(c2).unwrap(); println!("got {} and {}", cd1, cd2); } -} \ No newline at end of file +}