Mercurial > libavcodec.hg
annotate iff.c @ 11725:e9537b2d70ce libavcodec
Grayscale support. Patch by Sebastian Vater <cdgs basty googlemail com>.
| author | rbultje |
|---|---|
| date | Thu, 13 May 2010 19:16:03 +0000 |
| parents | 92f4ca7a4002 |
| children | 7c35c611faa4 |
| rev | line source |
|---|---|
| 11074 | 1 /* |
| 2 * IFF PBM/ILBM bitmap decoder | |
| 3 * Copyright (c) 2010 Peter Ross <pross@xvid.org> | |
|
11661
7a5f3c94b9ad
Switch some ints to unsigned (they can only have positive values, this allows
rbultje
parents:
11660
diff
changeset
|
4 * Copyright (c) 2010 Sebastian Vater <cdgs.basty@googlemail.com> |
| 11074 | 5 * |
| 6 * This file is part of FFmpeg. | |
| 7 * | |
| 8 * FFmpeg is free software; you can redistribute it and/or | |
| 9 * modify it under the terms of the GNU Lesser General Public | |
| 10 * License as published by the Free Software Foundation; either | |
| 11 * version 2.1 of the License, or (at your option) any later version. | |
| 12 * | |
| 13 * FFmpeg is distributed in the hope that it will be useful, | |
| 14 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
| 16 * Lesser General Public License for more details. | |
| 17 * | |
| 18 * You should have received a copy of the GNU Lesser General Public | |
| 19 * License along with FFmpeg; if not, write to the Free Software | |
| 20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA | |
| 21 */ | |
| 22 | |
| 23 /** | |
|
11644
7dd2a45249a9
Remove explicit filename from Doxygen @file commands.
diego
parents:
11560
diff
changeset
|
24 * @file |
| 11074 | 25 * IFF PBM/ILBM bitmap decoder |
| 26 */ | |
| 27 | |
| 28 #include "bytestream.h" | |
| 29 #include "avcodec.h" | |
| 11175 | 30 #include "get_bits.h" |
|
11395
5b9d41da4152
IFF: move ff_cmap_read_palette() prototype to a header file
mru
parents:
11336
diff
changeset
|
31 #include "iff.h" |
| 11175 | 32 |
| 33 typedef struct { | |
| 34 AVFrame frame; | |
|
11678
e1dd1ff1ab27
Revert r22974 int->unsigned parts that don't have any meaningful effect.
rbultje
parents:
11663
diff
changeset
|
35 int planesize; |
| 11175 | 36 uint8_t * planebuf; |
| 37 } IffContext; | |
| 11074 | 38 |
|
11691
24827da9c8dc
Optimize decodeplane8(), patch by Sebastian Vater <cdgs basty googlemail com>.
rbultje
parents:
11679
diff
changeset
|
39 #define LUT8_PART(plane, v) \ |
|
24827da9c8dc
Optimize decodeplane8(), patch by Sebastian Vater <cdgs basty googlemail com>.
rbultje
parents:
11679
diff
changeset
|
40 AV_LE2ME64C(UINT64_C(0x0000000)<<32 | v) << plane, \ |
|
24827da9c8dc
Optimize decodeplane8(), patch by Sebastian Vater <cdgs basty googlemail com>.
rbultje
parents:
11679
diff
changeset
|
41 AV_LE2ME64C(UINT64_C(0x1000000)<<32 | v) << plane, \ |
|
24827da9c8dc
Optimize decodeplane8(), patch by Sebastian Vater <cdgs basty googlemail com>.
rbultje
parents:
11679
diff
changeset
|
42 AV_LE2ME64C(UINT64_C(0x0010000)<<32 | v) << plane, \ |
|
24827da9c8dc
Optimize decodeplane8(), patch by Sebastian Vater <cdgs basty googlemail com>.
rbultje
parents:
11679
diff
changeset
|
43 AV_LE2ME64C(UINT64_C(0x1010000)<<32 | v) << plane, \ |
|
24827da9c8dc
Optimize decodeplane8(), patch by Sebastian Vater <cdgs basty googlemail com>.
rbultje
parents:
11679
diff
changeset
|
44 AV_LE2ME64C(UINT64_C(0x0000100)<<32 | v) << plane, \ |
|
24827da9c8dc
Optimize decodeplane8(), patch by Sebastian Vater <cdgs basty googlemail com>.
rbultje
parents:
11679
diff
changeset
|
45 AV_LE2ME64C(UINT64_C(0x1000100)<<32 | v) << plane, \ |
|
24827da9c8dc
Optimize decodeplane8(), patch by Sebastian Vater <cdgs basty googlemail com>.
rbultje
parents:
11679
diff
changeset
|
46 AV_LE2ME64C(UINT64_C(0x0010100)<<32 | v) << plane, \ |
|
24827da9c8dc
Optimize decodeplane8(), patch by Sebastian Vater <cdgs basty googlemail com>.
rbultje
parents:
11679
diff
changeset
|
47 AV_LE2ME64C(UINT64_C(0x1010100)<<32 | v) << plane, \ |
|
24827da9c8dc
Optimize decodeplane8(), patch by Sebastian Vater <cdgs basty googlemail com>.
rbultje
parents:
11679
diff
changeset
|
48 AV_LE2ME64C(UINT64_C(0x0000001)<<32 | v) << plane, \ |
|
24827da9c8dc
Optimize decodeplane8(), patch by Sebastian Vater <cdgs basty googlemail com>.
rbultje
parents:
11679
diff
changeset
|
49 AV_LE2ME64C(UINT64_C(0x1000001)<<32 | v) << plane, \ |
|
24827da9c8dc
Optimize decodeplane8(), patch by Sebastian Vater <cdgs basty googlemail com>.
rbultje
parents:
11679
diff
changeset
|
50 AV_LE2ME64C(UINT64_C(0x0010001)<<32 | v) << plane, \ |
|
24827da9c8dc
Optimize decodeplane8(), patch by Sebastian Vater <cdgs basty googlemail com>.
rbultje
parents:
11679
diff
changeset
|
51 AV_LE2ME64C(UINT64_C(0x1010001)<<32 | v) << plane, \ |
|
24827da9c8dc
Optimize decodeplane8(), patch by Sebastian Vater <cdgs basty googlemail com>.
rbultje
parents:
11679
diff
changeset
|
52 AV_LE2ME64C(UINT64_C(0x0000101)<<32 | v) << plane, \ |
|
24827da9c8dc
Optimize decodeplane8(), patch by Sebastian Vater <cdgs basty googlemail com>.
rbultje
parents:
11679
diff
changeset
|
53 AV_LE2ME64C(UINT64_C(0x1000101)<<32 | v) << plane, \ |
|
24827da9c8dc
Optimize decodeplane8(), patch by Sebastian Vater <cdgs basty googlemail com>.
rbultje
parents:
11679
diff
changeset
|
54 AV_LE2ME64C(UINT64_C(0x0010101)<<32 | v) << plane, \ |
|
24827da9c8dc
Optimize decodeplane8(), patch by Sebastian Vater <cdgs basty googlemail com>.
rbultje
parents:
11679
diff
changeset
|
55 AV_LE2ME64C(UINT64_C(0x1010101)<<32 | v) << plane |
|
24827da9c8dc
Optimize decodeplane8(), patch by Sebastian Vater <cdgs basty googlemail com>.
rbultje
parents:
11679
diff
changeset
|
56 |
|
24827da9c8dc
Optimize decodeplane8(), patch by Sebastian Vater <cdgs basty googlemail com>.
rbultje
parents:
11679
diff
changeset
|
57 #define LUT8(plane) { \ |
|
24827da9c8dc
Optimize decodeplane8(), patch by Sebastian Vater <cdgs basty googlemail com>.
rbultje
parents:
11679
diff
changeset
|
58 LUT8_PART(plane, 0x0000000), \ |
|
24827da9c8dc
Optimize decodeplane8(), patch by Sebastian Vater <cdgs basty googlemail com>.
rbultje
parents:
11679
diff
changeset
|
59 LUT8_PART(plane, 0x1000000), \ |
|
24827da9c8dc
Optimize decodeplane8(), patch by Sebastian Vater <cdgs basty googlemail com>.
rbultje
parents:
11679
diff
changeset
|
60 LUT8_PART(plane, 0x0010000), \ |
|
24827da9c8dc
Optimize decodeplane8(), patch by Sebastian Vater <cdgs basty googlemail com>.
rbultje
parents:
11679
diff
changeset
|
61 LUT8_PART(plane, 0x1010000), \ |
|
24827da9c8dc
Optimize decodeplane8(), patch by Sebastian Vater <cdgs basty googlemail com>.
rbultje
parents:
11679
diff
changeset
|
62 LUT8_PART(plane, 0x0000100), \ |
|
24827da9c8dc
Optimize decodeplane8(), patch by Sebastian Vater <cdgs basty googlemail com>.
rbultje
parents:
11679
diff
changeset
|
63 LUT8_PART(plane, 0x1000100), \ |
|
24827da9c8dc
Optimize decodeplane8(), patch by Sebastian Vater <cdgs basty googlemail com>.
rbultje
parents:
11679
diff
changeset
|
64 LUT8_PART(plane, 0x0010100), \ |
|
24827da9c8dc
Optimize decodeplane8(), patch by Sebastian Vater <cdgs basty googlemail com>.
rbultje
parents:
11679
diff
changeset
|
65 LUT8_PART(plane, 0x1010100), \ |
|
24827da9c8dc
Optimize decodeplane8(), patch by Sebastian Vater <cdgs basty googlemail com>.
rbultje
parents:
11679
diff
changeset
|
66 LUT8_PART(plane, 0x0000001), \ |
|
24827da9c8dc
Optimize decodeplane8(), patch by Sebastian Vater <cdgs basty googlemail com>.
rbultje
parents:
11679
diff
changeset
|
67 LUT8_PART(plane, 0x1000001), \ |
|
24827da9c8dc
Optimize decodeplane8(), patch by Sebastian Vater <cdgs basty googlemail com>.
rbultje
parents:
11679
diff
changeset
|
68 LUT8_PART(plane, 0x0010001), \ |
|
24827da9c8dc
Optimize decodeplane8(), patch by Sebastian Vater <cdgs basty googlemail com>.
rbultje
parents:
11679
diff
changeset
|
69 LUT8_PART(plane, 0x1010001), \ |
|
24827da9c8dc
Optimize decodeplane8(), patch by Sebastian Vater <cdgs basty googlemail com>.
rbultje
parents:
11679
diff
changeset
|
70 LUT8_PART(plane, 0x0000101), \ |
|
24827da9c8dc
Optimize decodeplane8(), patch by Sebastian Vater <cdgs basty googlemail com>.
rbultje
parents:
11679
diff
changeset
|
71 LUT8_PART(plane, 0x1000101), \ |
|
24827da9c8dc
Optimize decodeplane8(), patch by Sebastian Vater <cdgs basty googlemail com>.
rbultje
parents:
11679
diff
changeset
|
72 LUT8_PART(plane, 0x0010101), \ |
|
24827da9c8dc
Optimize decodeplane8(), patch by Sebastian Vater <cdgs basty googlemail com>.
rbultje
parents:
11679
diff
changeset
|
73 LUT8_PART(plane, 0x1010101), \ |
|
24827da9c8dc
Optimize decodeplane8(), patch by Sebastian Vater <cdgs basty googlemail com>.
rbultje
parents:
11679
diff
changeset
|
74 } |
|
24827da9c8dc
Optimize decodeplane8(), patch by Sebastian Vater <cdgs basty googlemail com>.
rbultje
parents:
11679
diff
changeset
|
75 |
|
24827da9c8dc
Optimize decodeplane8(), patch by Sebastian Vater <cdgs basty googlemail com>.
rbultje
parents:
11679
diff
changeset
|
76 // 8 planes * 8-bit mask |
|
24827da9c8dc
Optimize decodeplane8(), patch by Sebastian Vater <cdgs basty googlemail com>.
rbultje
parents:
11679
diff
changeset
|
77 static const uint64_t plane8_lut[8][256] = { |
|
24827da9c8dc
Optimize decodeplane8(), patch by Sebastian Vater <cdgs basty googlemail com>.
rbultje
parents:
11679
diff
changeset
|
78 LUT8(0), LUT8(1), LUT8(2), LUT8(3), |
|
24827da9c8dc
Optimize decodeplane8(), patch by Sebastian Vater <cdgs basty googlemail com>.
rbultje
parents:
11679
diff
changeset
|
79 LUT8(4), LUT8(5), LUT8(6), LUT8(7), |
|
24827da9c8dc
Optimize decodeplane8(), patch by Sebastian Vater <cdgs basty googlemail com>.
rbultje
parents:
11679
diff
changeset
|
80 }; |
|
24827da9c8dc
Optimize decodeplane8(), patch by Sebastian Vater <cdgs basty googlemail com>.
rbultje
parents:
11679
diff
changeset
|
81 |
| 11700 | 82 #define LUT32(plane) { \ |
| 83 0, 0, 0, 0, \ | |
| 84 0, 0, 0, 1 << plane, \ | |
| 85 0, 0, 1 << plane, 0, \ | |
| 86 0, 0, 1 << plane, 1 << plane, \ | |
| 87 0, 1 << plane, 0, 0, \ | |
| 88 0, 1 << plane, 0, 1 << plane, \ | |
| 89 0, 1 << plane, 1 << plane, 0, \ | |
| 90 0, 1 << plane, 1 << plane, 1 << plane, \ | |
| 91 1 << plane, 0, 0, 0, \ | |
| 92 1 << plane, 0, 0, 1 << plane, \ | |
| 93 1 << plane, 0, 1 << plane, 0, \ | |
| 94 1 << plane, 0, 1 << plane, 1 << plane, \ | |
| 95 1 << plane, 1 << plane, 0, 0, \ | |
| 96 1 << plane, 1 << plane, 0, 1 << plane, \ | |
| 97 1 << plane, 1 << plane, 1 << plane, 0, \ | |
| 98 1 << plane, 1 << plane, 1 << plane, 1 << plane, \ | |
| 99 } | |
| 100 | |
| 101 // 32 planes * 4-bit mask * 4 lookup tables each | |
| 102 static const uint32_t plane32_lut[32][16*4] = { | |
| 103 LUT32( 0), LUT32( 1), LUT32( 2), LUT32( 3), | |
| 104 LUT32( 4), LUT32( 5), LUT32( 6), LUT32( 7), | |
| 105 LUT32( 8), LUT32( 9), LUT32(10), LUT32(11), | |
| 106 LUT32(12), LUT32(13), LUT32(14), LUT32(15), | |
| 107 LUT32(16), LUT32(17), LUT32(18), LUT32(19), | |
| 108 LUT32(20), LUT32(21), LUT32(22), LUT32(23), | |
| 109 LUT32(24), LUT32(25), LUT32(26), LUT32(27), | |
| 110 LUT32(28), LUT32(29), LUT32(30), LUT32(31), | |
| 111 }; | |
| 112 | |
|
11725
e9537b2d70ce
Grayscale support. Patch by Sebastian Vater <cdgs basty googlemail com>.
rbultje
parents:
11720
diff
changeset
|
113 // Gray to RGB, required for palette table of grayscale images with bpp < 8 |
|
e9537b2d70ce
Grayscale support. Patch by Sebastian Vater <cdgs basty googlemail com>.
rbultje
parents:
11720
diff
changeset
|
114 static av_always_inline uint32_t gray2rgb(const uint32_t x) { |
|
e9537b2d70ce
Grayscale support. Patch by Sebastian Vater <cdgs basty googlemail com>.
rbultje
parents:
11720
diff
changeset
|
115 return x << 16 | x << 8 | x; |
|
e9537b2d70ce
Grayscale support. Patch by Sebastian Vater <cdgs basty googlemail com>.
rbultje
parents:
11720
diff
changeset
|
116 } |
|
e9537b2d70ce
Grayscale support. Patch by Sebastian Vater <cdgs basty googlemail com>.
rbultje
parents:
11720
diff
changeset
|
117 |
| 11074 | 118 /** |
| 119 * Convert CMAP buffer (stored in extradata) to lavc palette format | |
| 120 */ | |
| 121 int ff_cmap_read_palette(AVCodecContext *avctx, uint32_t *pal) | |
| 122 { | |
|
11678
e1dd1ff1ab27
Revert r22974 int->unsigned parts that don't have any meaningful effect.
rbultje
parents:
11663
diff
changeset
|
123 int count, i; |
| 11074 | 124 |
| 125 if (avctx->bits_per_coded_sample > 8) { | |
| 126 av_log(avctx, AV_LOG_ERROR, "bit_per_coded_sample > 8 not supported\n"); | |
| 127 return AVERROR_INVALIDDATA; | |
| 128 } | |
| 129 | |
| 130 count = 1 << avctx->bits_per_coded_sample; | |
|
11718
f2beca0bbf98
Handle palette underflows, fill remaining space with black (zero) data.
rbultje
parents:
11717
diff
changeset
|
131 // If extradata is smaller than actually needed, fill the remaining with black. |
|
f2beca0bbf98
Handle palette underflows, fill remaining space with black (zero) data.
rbultje
parents:
11717
diff
changeset
|
132 count = FFMIN(avctx->extradata_size / 3, count); |
|
11725
e9537b2d70ce
Grayscale support. Patch by Sebastian Vater <cdgs basty googlemail com>.
rbultje
parents:
11720
diff
changeset
|
133 if (count) { |
| 11074 | 134 for (i=0; i < count; i++) { |
| 11175 | 135 pal[i] = 0xFF000000 | AV_RB24( avctx->extradata + i*3 ); |
| 11074 | 136 } |
|
11725
e9537b2d70ce
Grayscale support. Patch by Sebastian Vater <cdgs basty googlemail com>.
rbultje
parents:
11720
diff
changeset
|
137 } else { // Create gray-scale color palette for bps < 8 |
|
e9537b2d70ce
Grayscale support. Patch by Sebastian Vater <cdgs basty googlemail com>.
rbultje
parents:
11720
diff
changeset
|
138 count = 1 << avctx->bits_per_coded_sample; |
|
e9537b2d70ce
Grayscale support. Patch by Sebastian Vater <cdgs basty googlemail com>.
rbultje
parents:
11720
diff
changeset
|
139 |
|
e9537b2d70ce
Grayscale support. Patch by Sebastian Vater <cdgs basty googlemail com>.
rbultje
parents:
11720
diff
changeset
|
140 for (i=0; i < count; i++) { |
|
e9537b2d70ce
Grayscale support. Patch by Sebastian Vater <cdgs basty googlemail com>.
rbultje
parents:
11720
diff
changeset
|
141 pal[i] = 0xFF000000 | gray2rgb((i * 255) >> avctx->bits_per_coded_sample); |
|
e9537b2d70ce
Grayscale support. Patch by Sebastian Vater <cdgs basty googlemail com>.
rbultje
parents:
11720
diff
changeset
|
142 } |
|
e9537b2d70ce
Grayscale support. Patch by Sebastian Vater <cdgs basty googlemail com>.
rbultje
parents:
11720
diff
changeset
|
143 } |
| 11074 | 144 return 0; |
| 145 } | |
| 146 | |
| 147 static av_cold int decode_init(AVCodecContext *avctx) | |
| 148 { | |
| 11175 | 149 IffContext *s = avctx->priv_data; |
|
11480
534872e7ab38
Make iff.c:decode_init return the value returned by
stefano
parents:
11395
diff
changeset
|
150 int err; |
| 11074 | 151 |
| 11175 | 152 if (avctx->bits_per_coded_sample <= 8) { |
|
11725
e9537b2d70ce
Grayscale support. Patch by Sebastian Vater <cdgs basty googlemail com>.
rbultje
parents:
11720
diff
changeset
|
153 avctx->pix_fmt = (avctx->bits_per_coded_sample < 8 || |
|
e9537b2d70ce
Grayscale support. Patch by Sebastian Vater <cdgs basty googlemail com>.
rbultje
parents:
11720
diff
changeset
|
154 avctx->extradata_size) ? PIX_FMT_PAL8 |
|
e9537b2d70ce
Grayscale support. Patch by Sebastian Vater <cdgs basty googlemail com>.
rbultje
parents:
11720
diff
changeset
|
155 : PIX_FMT_GRAY8; |
| 11175 | 156 } else if (avctx->bits_per_coded_sample <= 32) { |
| 157 avctx->pix_fmt = PIX_FMT_BGR32; | |
| 158 } else { | |
| 159 return AVERROR_INVALIDDATA; | |
| 160 } | |
| 11074 | 161 |
|
11699
83b49b0997e8
Ensure that width and height are > 0. avcodec_open() itself only checks that
rbultje
parents:
11693
diff
changeset
|
162 if ((err = avcodec_check_dimensions(avctx, avctx->width, avctx->height))) |
|
83b49b0997e8
Ensure that width and height are > 0. avcodec_open() itself only checks that
rbultje
parents:
11693
diff
changeset
|
163 return err; |
| 11679 | 164 s->planesize = FFALIGN(avctx->width, 16) >> 3; // Align plane size in bits to word-boundary |
| 11175 | 165 s->planebuf = av_malloc(s->planesize + FF_INPUT_BUFFER_PADDING_SIZE); |
| 166 if (!s->planebuf) | |
| 167 return AVERROR(ENOMEM); | |
| 168 | |
| 169 s->frame.reference = 1; | |
|
11480
534872e7ab38
Make iff.c:decode_init return the value returned by
stefano
parents:
11395
diff
changeset
|
170 if ((err = avctx->get_buffer(avctx, &s->frame) < 0)) { |
| 11074 | 171 av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n"); |
|
11480
534872e7ab38
Make iff.c:decode_init return the value returned by
stefano
parents:
11395
diff
changeset
|
172 return err; |
| 11074 | 173 } |
| 11175 | 174 |
|
11725
e9537b2d70ce
Grayscale support. Patch by Sebastian Vater <cdgs basty googlemail com>.
rbultje
parents:
11720
diff
changeset
|
175 return (avctx->bits_per_coded_sample <= 8 && |
|
e9537b2d70ce
Grayscale support. Patch by Sebastian Vater <cdgs basty googlemail com>.
rbultje
parents:
11720
diff
changeset
|
176 avctx->pix_fmt != PIX_FMT_GRAY8) ? |
| 11175 | 177 ff_cmap_read_palette(avctx, (uint32_t*)s->frame.data[1]) : 0; |
| 11074 | 178 } |
| 179 | |
| 180 /** | |
| 11660 | 181 * Decode interleaved plane buffer up to 8bpp |
| 182 * @param dst Destination buffer | |
| 183 * @param buf Source buffer | |
| 184 * @param buf_size | |
| 185 * @param plane plane number to decode as | |
| 186 */ | |
|
11693
3ec57be57312
Remove "bps" parameter to decodeplane8/32(), it's unused.
rbultje
parents:
11692
diff
changeset
|
187 static void decodeplane8(uint8_t *dst, const uint8_t *buf, int buf_size, int plane) |
| 11660 | 188 { |
|
11691
24827da9c8dc
Optimize decodeplane8(), patch by Sebastian Vater <cdgs basty googlemail com>.
rbultje
parents:
11679
diff
changeset
|
189 const uint64_t *lut = plane8_lut[plane]; |
|
11717
269ce565c70b
Move a while(..){..} -> do{..}while(..), slightly faster.
rbultje
parents:
11700
diff
changeset
|
190 do { |
|
11691
24827da9c8dc
Optimize decodeplane8(), patch by Sebastian Vater <cdgs basty googlemail com>.
rbultje
parents:
11679
diff
changeset
|
191 uint64_t v = AV_RN64A(dst) | lut[*buf++]; |
|
24827da9c8dc
Optimize decodeplane8(), patch by Sebastian Vater <cdgs basty googlemail com>.
rbultje
parents:
11679
diff
changeset
|
192 AV_WN64A(dst, v); |
| 11692 | 193 dst += 8; |
|
11717
269ce565c70b
Move a while(..){..} -> do{..}while(..), slightly faster.
rbultje
parents:
11700
diff
changeset
|
194 } while (--buf_size); |
| 11660 | 195 } |
| 196 | |
| 197 /** | |
| 198 * Decode interleaved plane buffer up to 24bpp | |
| 11175 | 199 * @param dst Destination buffer |
| 200 * @param buf Source buffer | |
| 201 * @param buf_size | |
| 202 * @param plane plane number to decode as | |
| 11074 | 203 */ |
| 11700 | 204 static void decodeplane32(uint32_t *dst, const uint8_t *buf, int buf_size, int plane) |
| 11660 | 205 { |
| 11700 | 206 const uint32_t *lut = plane32_lut[plane]; |
| 207 do { | |
| 208 unsigned mask = (*buf >> 2) & ~3; | |
| 209 dst[0] |= lut[mask++]; | |
| 210 dst[1] |= lut[mask++]; | |
| 211 dst[2] |= lut[mask++]; | |
| 212 dst[3] |= lut[mask]; | |
| 213 mask = (*buf++ << 2) & 0x3F; | |
| 214 dst[4] |= lut[mask++]; | |
| 215 dst[5] |= lut[mask++]; | |
| 216 dst[6] |= lut[mask++]; | |
| 217 dst[7] |= lut[mask]; | |
| 218 dst += 8; | |
| 219 } while (--buf_size); | |
| 11074 | 220 } |
| 221 | |
| 222 static int decode_frame_ilbm(AVCodecContext *avctx, | |
| 223 void *data, int *data_size, | |
| 224 AVPacket *avpkt) | |
| 225 { | |
| 11175 | 226 IffContext *s = avctx->priv_data; |
| 11074 | 227 const uint8_t *buf = avpkt->data; |
|
11678
e1dd1ff1ab27
Revert r22974 int->unsigned parts that don't have any meaningful effect.
rbultje
parents:
11663
diff
changeset
|
228 int buf_size = avpkt->size; |
| 11187 | 229 const uint8_t *buf_end = buf+buf_size; |
|
11678
e1dd1ff1ab27
Revert r22974 int->unsigned parts that don't have any meaningful effect.
rbultje
parents:
11663
diff
changeset
|
230 int y, plane; |
| 11074 | 231 |
| 11175 | 232 if (avctx->reget_buffer(avctx, &s->frame) < 0){ |
| 11074 | 233 av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n"); |
| 234 return -1; | |
| 235 } | |
| 236 | |
|
11719
30356abc8604
Move handling of paletted data to the IFF demuxer. This allows future
rbultje
parents:
11718
diff
changeset
|
237 if (avctx->codec_tag == MKTAG('I','L','B','M')) { // interleaved |
|
11725
e9537b2d70ce
Grayscale support. Patch by Sebastian Vater <cdgs basty googlemail com>.
rbultje
parents:
11720
diff
changeset
|
238 if (avctx->pix_fmt == PIX_FMT_PAL8 || avctx->pix_fmt == PIX_FMT_GRAY8) { |
| 11720 | 239 for(y = 0; y < avctx->height; y++ ) { |
| 240 uint8_t *row = &s->frame.data[0][ y*s->frame.linesize[0] ]; | |
| 241 memset(row, 0, avctx->width); | |
| 242 for (plane = 0; plane < avctx->bits_per_coded_sample && buf < buf_end; plane++) { | |
| 243 decodeplane8(row, buf, FFMIN(s->planesize, buf_end - buf), plane); | |
| 244 buf += s->planesize; | |
| 245 } | |
| 246 } | |
| 247 } else { // PIX_FMT_BGR32 | |
| 248 for(y = 0; y < avctx->height; y++ ) { | |
| 249 uint8_t *row = &s->frame.data[0][y*s->frame.linesize[0]]; | |
| 250 memset(row, 0, avctx->width << 2); | |
| 251 for (plane = 0; plane < avctx->bits_per_coded_sample && buf < buf_end; plane++) { | |
| 252 decodeplane32((uint32_t *) row, buf, FFMIN(s->planesize, buf_end - buf), plane); | |
| 253 buf += s->planesize; | |
| 254 } | |
|
11662
33e4b0d712c8
Move some branches outside looped code. Should improve the generated asm (and
rbultje
parents:
11661
diff
changeset
|
255 } |
|
33e4b0d712c8
Move some branches outside looped code. Should improve the generated asm (and
rbultje
parents:
11661
diff
changeset
|
256 } |
|
11725
e9537b2d70ce
Grayscale support. Patch by Sebastian Vater <cdgs basty googlemail com>.
rbultje
parents:
11720
diff
changeset
|
257 } else if (avctx->pix_fmt == PIX_FMT_PAL8 || avctx->pix_fmt == PIX_FMT_GRAY8) { // IFF-PBM |
|
11719
30356abc8604
Move handling of paletted data to the IFF demuxer. This allows future
rbultje
parents:
11718
diff
changeset
|
258 for(y = 0; y < avctx->height; y++ ) { |
|
30356abc8604
Move handling of paletted data to the IFF demuxer. This allows future
rbultje
parents:
11718
diff
changeset
|
259 uint8_t *row = &s->frame.data[0][y * s->frame.linesize[0]]; |
|
30356abc8604
Move handling of paletted data to the IFF demuxer. This allows future
rbultje
parents:
11718
diff
changeset
|
260 memcpy(row, buf, FFMIN(avctx->width, buf_end - buf)); |
|
30356abc8604
Move handling of paletted data to the IFF demuxer. This allows future
rbultje
parents:
11718
diff
changeset
|
261 buf += avctx->width; |
|
30356abc8604
Move handling of paletted data to the IFF demuxer. This allows future
rbultje
parents:
11718
diff
changeset
|
262 } |
|
30356abc8604
Move handling of paletted data to the IFF demuxer. This allows future
rbultje
parents:
11718
diff
changeset
|
263 } |
| 11074 | 264 |
| 265 *data_size = sizeof(AVFrame); | |
| 11175 | 266 *(AVFrame*)data = s->frame; |
| 11074 | 267 return buf_size; |
| 268 } | |
| 269 | |
| 270 static int decode_frame_byterun1(AVCodecContext *avctx, | |
| 271 void *data, int *data_size, | |
| 272 AVPacket *avpkt) | |
| 273 { | |
| 11175 | 274 IffContext *s = avctx->priv_data; |
| 11074 | 275 const uint8_t *buf = avpkt->data; |
|
11678
e1dd1ff1ab27
Revert r22974 int->unsigned parts that don't have any meaningful effect.
rbultje
parents:
11663
diff
changeset
|
276 int buf_size = avpkt->size; |
| 11074 | 277 const uint8_t *buf_end = buf+buf_size; |
|
11678
e1dd1ff1ab27
Revert r22974 int->unsigned parts that don't have any meaningful effect.
rbultje
parents:
11663
diff
changeset
|
278 int y, plane, x; |
| 11074 | 279 |
| 11175 | 280 if (avctx->reget_buffer(avctx, &s->frame) < 0){ |
| 11074 | 281 av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n"); |
| 282 return -1; | |
| 283 } | |
| 284 | |
|
11662
33e4b0d712c8
Move some branches outside looped code. Should improve the generated asm (and
rbultje
parents:
11661
diff
changeset
|
285 if (avctx->codec_tag == MKTAG('I','L','B','M')) { //interleaved |
|
11725
e9537b2d70ce
Grayscale support. Patch by Sebastian Vater <cdgs basty googlemail com>.
rbultje
parents:
11720
diff
changeset
|
286 if (avctx->pix_fmt == PIX_FMT_PAL8 || avctx->pix_fmt == PIX_FMT_GRAY8) { |
| 11663 | 287 for(y = 0; y < avctx->height ; y++ ) { |
| 288 uint8_t *row = &s->frame.data[0][ y*s->frame.linesize[0] ]; | |
| 289 memset(row, 0, avctx->width); | |
| 290 for (plane = 0; plane < avctx->bits_per_coded_sample; plane++) { | |
| 291 for(x = 0; x < s->planesize && buf < buf_end; ) { | |
| 292 int8_t value = *buf++; | |
| 293 unsigned length; | |
| 294 if (value >= 0) { | |
| 295 length = value + 1; | |
| 296 memcpy(s->planebuf + x, buf, FFMIN3(length, s->planesize - x, buf_end - buf)); | |
| 297 buf += length; | |
| 298 } else if (value > -128) { | |
| 299 length = -value + 1; | |
| 300 memset(s->planebuf + x, *buf++, FFMIN(length, s->planesize - x)); | |
| 301 } else { //noop | |
| 302 continue; | |
| 303 } | |
| 304 x += length; | |
| 11074 | 305 } |
|
11693
3ec57be57312
Remove "bps" parameter to decodeplane8/32(), it's unused.
rbultje
parents:
11692
diff
changeset
|
306 decodeplane8(row, s->planebuf, s->planesize, plane); |
|
11662
33e4b0d712c8
Move some branches outside looped code. Should improve the generated asm (and
rbultje
parents:
11661
diff
changeset
|
307 } |
|
33e4b0d712c8
Move some branches outside looped code. Should improve the generated asm (and
rbultje
parents:
11661
diff
changeset
|
308 } |
| 11663 | 309 } else { //PIX_FMT_BGR32 |
|
11662
33e4b0d712c8
Move some branches outside looped code. Should improve the generated asm (and
rbultje
parents:
11661
diff
changeset
|
310 for(y = 0; y < avctx->height ; y++ ) { |
|
33e4b0d712c8
Move some branches outside looped code. Should improve the generated asm (and
rbultje
parents:
11661
diff
changeset
|
311 uint8_t *row = &s->frame.data[0][y*s->frame.linesize[0]]; |
|
33e4b0d712c8
Move some branches outside looped code. Should improve the generated asm (and
rbultje
parents:
11661
diff
changeset
|
312 memset(row, 0, avctx->width << 2); |
|
33e4b0d712c8
Move some branches outside looped code. Should improve the generated asm (and
rbultje
parents:
11661
diff
changeset
|
313 for (plane = 0; plane < avctx->bits_per_coded_sample; plane++) { |
|
33e4b0d712c8
Move some branches outside looped code. Should improve the generated asm (and
rbultje
parents:
11661
diff
changeset
|
314 for(x = 0; x < s->planesize && buf < buf_end; ) { |
|
33e4b0d712c8
Move some branches outside looped code. Should improve the generated asm (and
rbultje
parents:
11661
diff
changeset
|
315 int8_t value = *buf++; |
|
33e4b0d712c8
Move some branches outside looped code. Should improve the generated asm (and
rbultje
parents:
11661
diff
changeset
|
316 unsigned length; |
|
33e4b0d712c8
Move some branches outside looped code. Should improve the generated asm (and
rbultje
parents:
11661
diff
changeset
|
317 if (value >= 0) { |
|
33e4b0d712c8
Move some branches outside looped code. Should improve the generated asm (and
rbultje
parents:
11661
diff
changeset
|
318 length = value + 1; |
|
33e4b0d712c8
Move some branches outside looped code. Should improve the generated asm (and
rbultje
parents:
11661
diff
changeset
|
319 memcpy(s->planebuf + x, buf, FFMIN3(length, s->planesize - x, buf_end - buf)); |
|
33e4b0d712c8
Move some branches outside looped code. Should improve the generated asm (and
rbultje
parents:
11661
diff
changeset
|
320 buf += length; |
|
33e4b0d712c8
Move some branches outside looped code. Should improve the generated asm (and
rbultje
parents:
11661
diff
changeset
|
321 } else if (value > -128) { |
|
33e4b0d712c8
Move some branches outside looped code. Should improve the generated asm (and
rbultje
parents:
11661
diff
changeset
|
322 length = -value + 1; |
|
33e4b0d712c8
Move some branches outside looped code. Should improve the generated asm (and
rbultje
parents:
11661
diff
changeset
|
323 memset(s->planebuf + x, *buf++, FFMIN(length, s->planesize - x)); |
|
33e4b0d712c8
Move some branches outside looped code. Should improve the generated asm (and
rbultje
parents:
11661
diff
changeset
|
324 } else { // noop |
|
33e4b0d712c8
Move some branches outside looped code. Should improve the generated asm (and
rbultje
parents:
11661
diff
changeset
|
325 continue; |
|
33e4b0d712c8
Move some branches outside looped code. Should improve the generated asm (and
rbultje
parents:
11661
diff
changeset
|
326 } |
|
33e4b0d712c8
Move some branches outside looped code. Should improve the generated asm (and
rbultje
parents:
11661
diff
changeset
|
327 x += length; |
|
33e4b0d712c8
Move some branches outside looped code. Should improve the generated asm (and
rbultje
parents:
11661
diff
changeset
|
328 } |
|
11693
3ec57be57312
Remove "bps" parameter to decodeplane8/32(), it's unused.
rbultje
parents:
11692
diff
changeset
|
329 decodeplane32((uint32_t *) row, s->planebuf, s->planesize, plane); |
| 11175 | 330 } |
| 11074 | 331 } |
|
11662
33e4b0d712c8
Move some branches outside looped code. Should improve the generated asm (and
rbultje
parents:
11661
diff
changeset
|
332 } |
| 11663 | 333 } else { |
| 334 for(y = 0; y < avctx->height ; y++ ) { | |
| 335 uint8_t *row = &s->frame.data[0][y*s->frame.linesize[0]]; | |
| 11074 | 336 for(x = 0; x < avctx->width && buf < buf_end; ) { |
|
11124
85a1b00a2413
Use int8_t instead of char, the signedness of char can differ between systems.
reimar
parents:
11074
diff
changeset
|
337 int8_t value = *buf++; |
|
11661
7a5f3c94b9ad
Switch some ints to unsigned (they can only have positive values, this allows
rbultje
parents:
11660
diff
changeset
|
338 unsigned length; |
| 11074 | 339 if (value >= 0) { |
| 340 length = value + 1; | |
| 341 memcpy(row + x, buf, FFMIN3(length, buf_end - buf, avctx->width - x)); | |
| 342 buf += length; | |
| 343 } else if (value > -128) { | |
| 344 length = -value + 1; | |
| 345 memset(row + x, *buf++, FFMIN(length, avctx->width - x)); | |
| 346 } else { //noop | |
| 347 continue; | |
| 348 } | |
| 349 x += length; | |
| 350 } | |
| 351 } | |
| 352 } | |
| 353 | |
| 354 *data_size = sizeof(AVFrame); | |
| 11175 | 355 *(AVFrame*)data = s->frame; |
| 11074 | 356 return buf_size; |
| 357 } | |
| 358 | |
| 359 static av_cold int decode_end(AVCodecContext *avctx) | |
| 360 { | |
| 11175 | 361 IffContext *s = avctx->priv_data; |
| 362 if (s->frame.data[0]) | |
| 363 avctx->release_buffer(avctx, &s->frame); | |
| 364 av_freep(&s->planebuf); | |
| 11074 | 365 return 0; |
| 366 } | |
| 367 | |
| 368 AVCodec iff_ilbm_decoder = { | |
| 369 "iff_ilbm", | |
|
11560
8a4984c5cacc
Define AVMediaType enum, and use it instead of enum CodecType, which
stefano
parents:
11480
diff
changeset
|
370 AVMEDIA_TYPE_VIDEO, |
| 11074 | 371 CODEC_ID_IFF_ILBM, |
| 11175 | 372 sizeof(IffContext), |
| 11074 | 373 decode_init, |
| 374 NULL, | |
| 375 decode_end, | |
| 376 decode_frame_ilbm, | |
| 377 CODEC_CAP_DR1, | |
| 378 .long_name = NULL_IF_CONFIG_SMALL("IFF ILBM"), | |
| 379 }; | |
| 380 | |
| 381 AVCodec iff_byterun1_decoder = { | |
| 382 "iff_byterun1", | |
|
11560
8a4984c5cacc
Define AVMediaType enum, and use it instead of enum CodecType, which
stefano
parents:
11480
diff
changeset
|
383 AVMEDIA_TYPE_VIDEO, |
| 11074 | 384 CODEC_ID_IFF_BYTERUN1, |
| 11175 | 385 sizeof(IffContext), |
| 11074 | 386 decode_init, |
| 387 NULL, | |
| 388 decode_end, | |
| 389 decode_frame_byterun1, | |
| 390 CODEC_CAP_DR1, | |
| 391 .long_name = NULL_IF_CONFIG_SMALL("IFF ByteRun1"), | |
| 392 }; |
