3 * Copyright (c) 2005 Konstantin Shishkov
5 * This file is part of FFmpeg.
7 * FFmpeg is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * FFmpeg is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with FFmpeg; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
24 * Intel Indeo 2 decoder.
27 #include "libavutil/attributes.h"
29 #define BITSTREAM_READER_LE
32 #include "indeo2data.h"
36 typedef struct Ir2Context{
37 AVCodecContext *avctx;
43 #define CODE_VLC_BITS 14
46 /* Indeo 2 codes are in range 0x01..0x7F and 0x81..0x90 */
47 static inline int ir2_get_code(GetBitContext *gb)
49 return get_vlc2(gb, ir2_vlc.table, CODE_VLC_BITS, 1) + 1;
52 static int ir2_decode_plane(Ir2Context *ctx, int width, int height, uint8_t *dst,
53 int pitch, const uint8_t *table)
60 return AVERROR_INVALIDDATA;
62 /* first line contain absolute values, other lines contain deltas */
64 int c = ir2_get_code(&ctx->gb);
65 if (c >= 0x80) { /* we have a run */
67 if (out + c*2 > width)
68 return AVERROR_INVALIDDATA;
69 for (i = 0; i < c * 2; i++)
71 } else { /* copy two values from table */
73 return AVERROR_INVALIDDATA;
74 dst[out++] = table[c * 2];
75 dst[out++] = table[(c * 2) + 1];
80 for (j = 1; j < height; j++) {
82 if (get_bits_left(&ctx->gb) <= 0)
83 return AVERROR_INVALIDDATA;
85 int c = ir2_get_code(&ctx->gb);
86 if (c >= 0x80) { /* we have a skip */
88 if (out + c*2 > width)
89 return AVERROR_INVALIDDATA;
90 for (i = 0; i < c * 2; i++) {
91 dst[out] = dst[out - pitch];
94 } else { /* add two deltas from table */
97 return AVERROR_INVALIDDATA;
98 t = dst[out - pitch] + (table[c * 2] - 128);
102 t = dst[out - pitch] + (table[(c * 2) + 1] - 128);
103 t = av_clip_uint8(t);
113 static int ir2_decode_plane_inter(Ir2Context *ctx, int width, int height, uint8_t *dst,
114 int pitch, const uint8_t *table)
122 return AVERROR_INVALIDDATA;
124 for (j = 0; j < height; j++) {
126 if (get_bits_left(&ctx->gb) <= 0)
127 return AVERROR_INVALIDDATA;
128 while (out < width) {
129 c = ir2_get_code(&ctx->gb);
130 if (c >= 0x80) { /* we have a skip */
133 } else { /* add two deltas from table */
135 return AVERROR_INVALIDDATA;
136 t = dst[out] + (((table[c * 2] - 128)*3) >> 2);
137 t = av_clip_uint8(t);
140 t = dst[out] + (((table[(c * 2) + 1] - 128)*3) >> 2);
141 t = av_clip_uint8(t);
151 static int ir2_decode_frame(AVCodecContext *avctx,
152 void *data, int *got_frame,
155 Ir2Context * const s = avctx->priv_data;
156 const uint8_t *buf = avpkt->data;
157 int buf_size = avpkt->size;
158 AVFrame *picture = data;
159 AVFrame * const p = s->picture;
163 if ((ret = ff_reget_buffer(avctx, p)) < 0)
166 start = 48; /* hardcoded for now */
168 if (start >= buf_size) {
169 av_log(s->avctx, AV_LOG_ERROR, "input buffer size too small (%d)\n", buf_size);
170 return AVERROR_INVALIDDATA;
173 s->decode_delta = buf[18];
175 /* decide whether frame uses deltas or not */
176 #ifndef BITSTREAM_READER_LE
177 for (i = 0; i < buf_size; i++)
178 buf[i] = ff_reverse[buf[i]];
181 if ((ret = init_get_bits8(&s->gb, buf + start, buf_size - start)) < 0)
184 ltab = buf[0x22] & 3;
185 ctab = buf[0x22] >> 2;
188 av_log(avctx, AV_LOG_ERROR, "ctab %d is invalid\n", ctab);
189 return AVERROR_INVALIDDATA;
192 if (s->decode_delta) { /* intraframe */
193 if ((ret = ir2_decode_plane(s, avctx->width, avctx->height,
194 p->data[0], p->linesize[0],
195 ir2_delta_table[ltab])) < 0)
198 /* swapped U and V */
199 if ((ret = ir2_decode_plane(s, avctx->width >> 2, avctx->height >> 2,
200 p->data[2], p->linesize[2],
201 ir2_delta_table[ctab])) < 0)
203 if ((ret = ir2_decode_plane(s, avctx->width >> 2, avctx->height >> 2,
204 p->data[1], p->linesize[1],
205 ir2_delta_table[ctab])) < 0)
207 } else { /* interframe */
208 if ((ret = ir2_decode_plane_inter(s, avctx->width, avctx->height,
209 p->data[0], p->linesize[0],
210 ir2_delta_table[ltab])) < 0)
212 /* swapped U and V */
213 if ((ret = ir2_decode_plane_inter(s, avctx->width >> 2, avctx->height >> 2,
214 p->data[2], p->linesize[2],
215 ir2_delta_table[ctab])) < 0)
217 if ((ret = ir2_decode_plane_inter(s, avctx->width >> 2, avctx->height >> 2,
218 p->data[1], p->linesize[1],
219 ir2_delta_table[ctab])) < 0)
223 if ((ret = av_frame_ref(picture, p)) < 0)
231 static av_cold int ir2_decode_init(AVCodecContext *avctx)
233 Ir2Context * const ic = avctx->priv_data;
234 static VLC_TYPE vlc_tables[1 << CODE_VLC_BITS][2];
238 avctx->pix_fmt= AV_PIX_FMT_YUV410P;
240 ic->picture = av_frame_alloc();
242 return AVERROR(ENOMEM);
244 ir2_vlc.table = vlc_tables;
245 ir2_vlc.table_allocated = 1 << CODE_VLC_BITS;
246 #ifdef BITSTREAM_READER_LE
247 init_vlc(&ir2_vlc, CODE_VLC_BITS, IR2_CODES,
248 &ir2_codes[0][1], 4, 2,
249 &ir2_codes[0][0], 4, 2, INIT_VLC_USE_NEW_STATIC | INIT_VLC_LE);
251 init_vlc(&ir2_vlc, CODE_VLC_BITS, IR2_CODES,
252 &ir2_codes[0][1], 4, 2,
253 &ir2_codes[0][0], 4, 2, INIT_VLC_USE_NEW_STATIC);
259 static av_cold int ir2_decode_end(AVCodecContext *avctx)
261 Ir2Context * const ic = avctx->priv_data;
263 av_frame_free(&ic->picture);
268 AVCodec ff_indeo2_decoder = {
270 .long_name = NULL_IF_CONFIG_SMALL("Intel Indeo 2"),
271 .type = AVMEDIA_TYPE_VIDEO,
272 .id = AV_CODEC_ID_INDEO2,
273 .priv_data_size = sizeof(Ir2Context),
274 .init = ir2_decode_init,
275 .close = ir2_decode_end,
276 .decode = ir2_decode_frame,
277 .capabilities = AV_CODEC_CAP_DR1,