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 #define BITSTREAM_READER_LE
28 #include "libavutil/attributes.h"
31 #include "indeo2data.h"
35 typedef struct Ir2Context{
36 AVCodecContext *avctx;
42 #define CODE_VLC_BITS 14
45 /* Indeo 2 codes are in range 0x01..0x7F and 0x81..0x90 */
46 static inline int ir2_get_code(GetBitContext *gb)
48 return get_vlc2(gb, ir2_vlc.table, CODE_VLC_BITS, 1) + 1;
51 static int ir2_decode_plane(Ir2Context *ctx, int width, int height, uint8_t *dst,
52 int stride, const uint8_t *table)
61 return AVERROR_INVALIDDATA;
63 /* first line contain absolute values, other lines contain deltas */
65 c = ir2_get_code(&ctx->gb);
66 if (c >= 0x80) { /* we have a run */
68 if (out + c*2 > width)
69 return AVERROR_INVALIDDATA;
70 for (i = 0; i < c * 2; i++)
72 } else { /* copy two values from table */
73 dst[out++] = table[c * 2];
74 dst[out++] = table[(c * 2) + 1];
79 for (j = 1; j < height; j++) {
82 c = ir2_get_code(&ctx->gb);
83 if (c >= 0x80) { /* we have a skip */
85 if (out + c*2 > width)
86 return AVERROR_INVALIDDATA;
87 for (i = 0; i < c * 2; i++) {
88 dst[out] = dst[out - stride];
91 } else { /* add two deltas from table */
92 t = dst[out - stride] + (table[c * 2] - 128);
96 t = dst[out - stride] + (table[(c * 2) + 1] - 128);
107 static int ir2_decode_plane_inter(Ir2Context *ctx, int width, int height, uint8_t *dst,
108 int stride, const uint8_t *table)
116 return AVERROR_INVALIDDATA;
118 for (j = 0; j < height; j++) {
120 while (out < width) {
121 c = ir2_get_code(&ctx->gb);
122 if (c >= 0x80) { /* we have a skip */
125 } else { /* add two deltas from table */
126 t = dst[out] + (((table[c * 2] - 128)*3) >> 2);
127 t = av_clip_uint8(t);
130 t = dst[out] + (((table[(c * 2) + 1] - 128)*3) >> 2);
131 t = av_clip_uint8(t);
141 static int ir2_decode_frame(AVCodecContext *avctx,
142 void *data, int *got_frame,
145 Ir2Context * const s = avctx->priv_data;
146 const uint8_t *buf = avpkt->data;
147 int buf_size = avpkt->size;
148 AVFrame *picture = data;
149 AVFrame * const p = &s->picture;
152 if ((ret = ff_reget_buffer(avctx, p)) < 0)
155 start = 48; /* hardcoded for now */
157 if (start >= buf_size) {
158 av_log(s->avctx, AV_LOG_ERROR, "input buffer size too small (%d)\n", buf_size);
159 return AVERROR_INVALIDDATA;
162 s->decode_delta = buf[18];
164 /* decide whether frame uses deltas or not */
165 #ifndef BITSTREAM_READER_LE
166 for (i = 0; i < buf_size; i++)
167 buf[i] = ff_reverse[buf[i]];
170 init_get_bits(&s->gb, buf + start, (buf_size - start) * 8);
172 if (s->decode_delta) { /* intraframe */
173 if ((ret = ir2_decode_plane(s, avctx->width, avctx->height,
174 s->picture.data[0], s->picture.linesize[0],
175 ir2_luma_table)) < 0)
178 /* swapped U and V */
179 if ((ret = ir2_decode_plane(s, avctx->width >> 2, avctx->height >> 2,
180 s->picture.data[2], s->picture.linesize[2],
181 ir2_luma_table)) < 0)
183 if ((ret = ir2_decode_plane(s, avctx->width >> 2, avctx->height >> 2,
184 s->picture.data[1], s->picture.linesize[1],
185 ir2_luma_table)) < 0)
187 } else { /* interframe */
188 if ((ret = ir2_decode_plane_inter(s, avctx->width, avctx->height,
189 s->picture.data[0], s->picture.linesize[0],
190 ir2_luma_table)) < 0)
192 /* swapped U and V */
193 if ((ret = ir2_decode_plane_inter(s, avctx->width >> 2, avctx->height >> 2,
194 s->picture.data[2], s->picture.linesize[2],
195 ir2_luma_table)) < 0)
197 if ((ret = ir2_decode_plane_inter(s, avctx->width >> 2, avctx->height >> 2,
198 s->picture.data[1], s->picture.linesize[1],
199 ir2_luma_table)) < 0)
203 if ((ret = av_frame_ref(picture, &s->picture)) < 0)
211 static av_cold int ir2_decode_init(AVCodecContext *avctx)
213 Ir2Context * const ic = avctx->priv_data;
214 static VLC_TYPE vlc_tables[1 << CODE_VLC_BITS][2];
216 avcodec_get_frame_defaults(&ic->picture);
219 avctx->pix_fmt= AV_PIX_FMT_YUV410P;
221 avcodec_get_frame_defaults(&ic->picture);
223 ir2_vlc.table = vlc_tables;
224 ir2_vlc.table_allocated = 1 << CODE_VLC_BITS;
225 #ifdef BITSTREAM_READER_LE
226 init_vlc(&ir2_vlc, CODE_VLC_BITS, IR2_CODES,
227 &ir2_codes[0][1], 4, 2,
228 &ir2_codes[0][0], 4, 2, INIT_VLC_USE_NEW_STATIC | INIT_VLC_LE);
230 init_vlc(&ir2_vlc, CODE_VLC_BITS, IR2_CODES,
231 &ir2_codes[0][1], 4, 2,
232 &ir2_codes[0][0], 4, 2, INIT_VLC_USE_NEW_STATIC);
238 static av_cold int ir2_decode_end(AVCodecContext *avctx)
240 Ir2Context * const ic = avctx->priv_data;
241 AVFrame *pic = &ic->picture;
248 AVCodec ff_indeo2_decoder = {
250 .type = AVMEDIA_TYPE_VIDEO,
251 .id = AV_CODEC_ID_INDEO2,
252 .priv_data_size = sizeof(Ir2Context),
253 .init = ir2_decode_init,
254 .close = ir2_decode_end,
255 .decode = ir2_decode_frame,
256 .capabilities = CODEC_CAP_DR1,
257 .long_name = NULL_IF_CONFIG_SMALL("Intel Indeo 2"),