- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
根据“Slice Header Syntax”(在 ITU-T Rec. h264 中描述),frame_num
, pic_order_cnt_lsb
和 slice_group_change_cycle
有 u(v)
描述符,它是使用可变位数的无符号整数。
该文档指出
"the number of bits varies in a manner dependent on the value of other syntax elements."
frame_num
的位数吗? ,
pic_order_cnt_lsb
和
slice_group_change_cycle
?
read_bits(n)
函数,不幸的是我无法自己弄清楚。你能帮我吗?]
最佳答案
其他比特流值定义了要读取的比特数。frame_num
is used as an identifier for pictures and shall be represented by log2_max_frame_num_minus4 + 4 bits in the bitstream.
log2_max_frame_num_minus4 = get_ue_golomb(&h->gb);
// ...
sps->log2_max_frame_num = log2_max_frame_num_minus4 + 4;
// ...
h->frame_num = get_bits(&h->gb, h->sps.log2_max_frame_num);
pic_order_cnt_lsb
specifies the picture order count modulo MaxPicOrderCntLsb for the top field of a coded frame or for a coded field. The size of the pic_order_cnt_lsb syntax element is log2_max_pic_order_cnt_lsb_minus4 + 4 bits.
The value of the pic_order_cnt_lsb shall be in the range of 0 to MaxPicOrderCntLsb – 1, inclusive.
slice_group_change_cycle
The value of slice_group_change_cycle is represented in the bitstream by the following number of bits Ceil( Log2( PicSizeInMapUnits ÷ SliceGroupChangeRate + 1 ) )
关于avfoundation - h264 u(v) 解码 frame_num、pic_order_cnt_lsb 和 slice_group_change_cycle,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23963078/
根据“Slice Header Syntax”(在 ITU-T Rec. h264 中描述),frame_num , pic_order_cnt_lsb和 slice_group_change_cyc
我是一名优秀的程序员,十分优秀!