Lines Matching defs:comp
39 BiCompression comp;
116 comp = bytestream_get_le32(&buf);
118 comp = BMP_RGB;
120 if (comp != BMP_RGB && comp != BMP_BITFIELDS && comp != BMP_RLE4 &&
121 comp != BMP_RLE8) {
122 av_log(avctx, AV_LOG_ERROR, "BMP coding %d not supported\n", comp);
126 if (comp == BMP_BITFIELDS) {
145 if (comp == BMP_BITFIELDS) {
167 if (comp == BMP_RGB)
169 else if (comp == BMP_BITFIELDS) {
221 if (n * avctx->height > dsize && comp != BMP_RLE4 && comp != BMP_RLE8) {
232 if (comp == BMP_RLE4 || comp == BMP_RLE8)
277 if (comp == BMP_RLE4 || comp == BMP_RLE8) {
278 if (comp == BMP_RLE8 && height < 0) {