MCPcopy Create free account
hub / github.com/Tencent/libpag / writeInt32

Method writeInt32

src/codec/utils/EncodeStream.cpp:83–88  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

81}
82
83void EncodeStream::writeInt32(int32_t value) {
84 if (checkCapacity(4)) {
85 dataView.setInt32(_position, value);
86 positionChanged(4);
87 }
88}
89
90void EncodeStream::writeUint32(uint32_t value) {
91 if (checkCapacity(4)) {

Callers 15

WriteMdatBoxFunction · 0.80
writeH264NalusMethod · 0.80
ftypMethod · 0.80
hdlrMethod · 0.80
mdhdMethod · 0.80
mfhdMethod · 0.80
smhdMethod · 0.80
vmhdMethod · 0.80
mvhdMethod · 0.80
sdtpMethod · 0.80
stscMethod · 0.80
stszMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected