| 1459 | } |
| 1460 | |
| 1461 | static int unsupported(AVCodecContext *avctx) |
| 1462 | { |
| 1463 | IffContext *s = avctx->priv_data; |
| 1464 | avpriv_request_sample(avctx, "bitmap (compression 0x%0x, bpp %i, ham %i, interlaced %i)", s->compression, s->bpp, s->ham, s->is_interlaced); |
| 1465 | return AVERROR_INVALIDDATA; |
| 1466 | } |
| 1467 | |
| 1468 | static int parse_packet_header(AVCodecContext *const avctx, |
| 1469 | GetByteContext *gb) |
no test coverage detected