MCPcopy Create free account
hub / github.com/FFmpeg/FFmpeg / seq_decode_op2

Function seq_decode_op2

libavcodec/tiertexseqv.c:128–145  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

126}
127
128static const unsigned char *seq_decode_op2(SeqVideoContext *seq,
129 const unsigned char *src,
130 const unsigned char *src_end,
131 unsigned char *dst)
132{
133 int i;
134
135 if (src_end - src < 8 * 8)
136 return NULL;
137
138 for (i = 0; i < 8; i++) {
139 memcpy(dst, src, 8);
140 src += 8;
141 dst += seq->frame->linesize[0];
142 }
143
144 return src;
145}
146
147static const unsigned char *seq_decode_op3(SeqVideoContext *seq,
148 const unsigned char *src,

Callers 1

seqvideo_decodeFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected