h265:从比特流文件中解析切片头

时间:2014-09-15 14:59:39

标签: python parsing hevc bitstream h.265

我需要使用python BitStream从HEVC比特流中读取POC编号。目前我读了nal单元头。有没有简单的方法来获得它?

我已启用跟踪HM14.0,但EncTrace.txt不包含我的所有数据包。

有什么想法吗?

编辑:我附上了我的python代码。这是我的bitstream file

import re

import collections
import bitstring
from bitstring import BitStream, BitArray, ConstBitStream, pack
from bitstring import ByteStore, offsetcopy
import unicodedata


text_file = open("nal_Output.txt", "wb")

s = BitStream(filename='new.str')

#Find number of packets
pcks = list(s.findall('0x000001', bytealigned=True))


s.pos=0
num_of_pcks = len(pcks)
num_of_POC_pcks =0
for x in range(0, num_of_pcks):
    s.pos =pcks[x]+24
    #print x
    if x < num_of_pcks-1:
        no_p = pcks[x+1]-pcks[x]-24
    else:
        no_p = 0

    forbidden_zero_bit  = s.read('uint:1')
    nal_unit_type = s.read('uint:6')
    nuh_layer_id = s.read('uint:6')
    nuh_temporal_id_plus1 = s.read('uint:3')

    #nal unit type 39 is for SEI messages: one byte message
    if int(nal_unit_type) >31 :
        #print 'nal=39'
        #size_of_pck = (no_p+24+8)/8
        packet = 0
    elif int(nal_unit_type) <32:
        #print int(nal_unit_type)
        num_of_POC_pcks = num_of_POC_pcks+1
        size_of_pck = (no_p+24)/8
        text_file.write("NumBytesInNALunit: {0}\n".format(str(size_of_pck)))
    s.read(no_p)

print num_of_POC_pcks 

text_file.close()

1 个答案:

答案 0 :(得分:0)

标准中的第8.3.1章告诉您PicOrderCntVal是如何派生的。 在python中,这是非常重要的...

使用引用SW,在TDecCavlc::parseSliceHeader中的函数source/Lib/TLibDecoder/TDecCAVLC.cpp中解析切片头,这也是读取POC值的位置。

enter image description here