“我正在编写一个解码器......我发现它真的很难让它看起来好像我只是从规范中的各个部分复制一样”
我想你什么都不担心。在编写解码器时,出于可读性目的引用格式的官方规范是合乎逻辑的(例如:当代码在未来某个日期传递给另一个编码器时)。
您是否引用了第7 节中的示例伪代码:语法和语义?
“语法表指定了所有允许的比特流语法的超集。可以在其他子句中直接或间接地指定对语法的附加约束。”
NOTE – An actual decoder should implement means for identifying entry points into the bitstream and means to identify and handle non-conforming bitstreams. The methods for identifying and handling errors and other such situations are not specified here.
“下表列出了用于描述语法的伪代码示例。 出现时syntax_element
,它指定syntax element
从比特流中解析出 a,并且比特流指针前进到syntax element
比特流解析过程中超出的下一个位置。”