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

Function ipvideo_decode_block_opcode_0xB

libavcodec/interplayvideo.c:466–478  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

464}
465
466static int ipvideo_decode_block_opcode_0xB(IpvideoContext *s, AVFrame *frame)
467{
468 int y;
469
470 /* 64-color encoding (each pixel in block is a different color) */
471 for (y = 0; y < 8; y++) {
472 bytestream2_get_buffer(&s->stream_ptr, s->pixel_ptr, 8);
473 s->pixel_ptr += s->stride;
474 }
475
476 /* report success */
477 return 0;
478}
479
480static int ipvideo_decode_block_opcode_0xC(IpvideoContext *s, AVFrame *frame)
481{

Callers

nothing calls this directly

Calls 1

bytestream2_get_bufferFunction · 0.85

Tested by

no test coverage detected