| 464 | } |
| 465 | |
| 466 | static 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 | |
| 480 | static int ipvideo_decode_block_opcode_0xC(IpvideoContext *s, AVFrame *frame) |
| 481 | { |
nothing calls this directly
no test coverage detected