OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:nalu_ptr
(Results
1 - 2
of
2
) sorted by null
/external/webrtc/webrtc/modules/video_coding/
session_info.cc
182
const uint8_t*
nalu_ptr
= packet_buffer + kH264NALHeaderLengthInBytes;
local
183
while (
nalu_ptr
< packet_buffer + packet.sizeBytes) {
184
size_t length = BufferToUWord16(
nalu_ptr
);
187
nalu_ptr
+= kLengthFieldLength + length;
190
nalu_ptr
= packet_buffer + kH264NALHeaderLengthInBytes;
192
while (
nalu_ptr
< packet_buffer + packet.sizeBytes) {
193
size_t length = BufferToUWord16(
nalu_ptr
);
194
nalu_ptr
+= kLengthFieldLength;
195
frame_buffer_ptr += Insert(
nalu_ptr
, length, packet.insertStartCode,
197
nalu_ptr
+= length
[
all
...]
/external/webrtc/webrtc/modules/rtp_rtcp/source/
rtp_format_h264.cc
44
bool VerifyStapANaluLengths(const uint8_t*
nalu_ptr
, size_t length_remaining) {
49
uint16_t nalu_size =
nalu_ptr
[0] << 8 |
nalu_ptr
[1];
50
nalu_ptr
+= sizeof(uint16_t);
54
nalu_ptr
+= nalu_size;
Completed in 440 milliseconds