dholroyd / h264-reader

Rust reader for H264 bitsream syntax
Apache License 2.0
72 stars 25 forks source link

Export delta_pic_order_cnt_bottom verbatim if present #42

Closed petzeb closed 1 year ago

petzeb commented 1 year ago

The delta_pic_order_cnt_bottom is used in Type0 POC calculation to calculated BottomFieldOrderCnt as: BottomFieldOrderCnt = TopFieldOrderCnt + delta_pic_order_cnt_bottom

This changes the FieldAbsolute variant to expose the fields more explicitly as pic_order_cnt_lsb and delta_pic_order_cnt_bottom make it clearer for the user how the values should fit into the calculations.