Go语言解析H265 SPS

本文深入探讨如何使用Go语言解析H265的Sequence Parameter Set (SPS)信息,涵盖关键步骤和技术细节,对于理解H265编码及视频处理具有指导意义。
摘要由CSDN通过智能技术生成
import (
	"math"
)

type Params struct {
	width           uint32
	height          uint32
	profile, level  uint32
	nal_length_size int16
}

type NALBitstream struct {
	m_data  []byte
	m_len   int
	m_idx   int
	m_bits  int
	m_byte  uint8
	m_zeros int
}

func NewNALBitstream(data []byte, size int) *NALBitstream {
	ret := &NALBitstream{
		m_len:   size,
		m_idx:   0,
		m_bits:  0,
		m_byte:  0,
		m_zeros: 0,
	}
	//copy(,data)
	ret.m_data = data
	return ret
}

func (nalb *NALBitstream) GetBYTE() byte {
	if nalb.m_idx >= nalb.m_len {
		return byte(0)
	}
	b := nalb.m_data[nalb.m_idx]
	nalb.m_idx++
	if b == byte(0) {
		nalb.m_zeros++
		if (nalb.m_idx < nalb.m_len) && (nalb.m_zeros == 2) && (nalb.m_data[nalb.m_idx] == 0x03) {
			nalb.m_idx++
			nalb.m_zeros = 0
		}
	} else {
		nalb.m_zeros = 0
	}
	return b
}

func (nalb *NALBitstream) GetBit() uint32 {
	if nal
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值