google / lyra

A Very Low-Bitrate Codec for Speech Compression

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

What is the packet structure for the encoded ".lyra" file ?

zxinhui-fb opened this issue · comments

Is there any packet structure in the ".lyra' file ?
by looking at the source code, it seems the '.lyra' file only consists of bit stream byte by byte without any internal structure.

https://github.com/google/lyra/blob/main/encoder_main_lib.cc#L87

That is correct. Currently the Lyra packet has no internal structure and only contains the bits from the quantization model. That is because, as is, we don't need any additional information to be sent over, and haven't committed to a stable bitstream yet to maintain development flexibility.

thanks!