]> git.sesse.net Git - ffmpeg/blob - libavcodec/indeo2.c
avformat/alp: fix handling of TUN files
[ffmpeg] / libavcodec / indeo2.c
1 /*
2  * Intel Indeo 2 codec
3  * Copyright (c) 2005 Konstantin Shishkov
4  *
5  * This file is part of FFmpeg.
6  *
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.
11  *
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.
16  *
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
20  */
21
22 /**
23  * @file
24  * Intel Indeo 2 decoder.
25  */
26
27 #include "libavutil/attributes.h"
28
29 #define BITSTREAM_READER_LE
30 #include "avcodec.h"
31 #include "get_bits.h"
32 #include "indeo2data.h"
33 #include "internal.h"
34 #include "mathops.h"
35
36 typedef struct Ir2Context{
37     AVCodecContext *avctx;
38     AVFrame *picture;
39     GetBitContext gb;
40     int decode_delta;
41 } Ir2Context;
42
43 #define CODE_VLC_BITS 14
44 static VLC ir2_vlc;
45
46 /* Indeo 2 codes are in range 0x01..0x7F and 0x81..0x90 */
47 static inline int ir2_get_code(GetBitContext *gb)
48 {
49     return get_vlc2(gb, ir2_vlc.table, CODE_VLC_BITS, 1) + 1;
50 }
51
52 static int ir2_decode_plane(Ir2Context *ctx, int width, int height, uint8_t *dst,
53                             int pitch, const uint8_t *table)
54 {
55     int i;
56     int j;
57     int out = 0;
58
59     if ((width & 1) || width * height / (2*(IR2_CODES - 0x7F)) > get_bits_left(&ctx->gb))
60         return AVERROR_INVALIDDATA;
61
62     /* first line contain absolute values, other lines contain deltas */
63     while (out < width) {
64         int c = ir2_get_code(&ctx->gb);
65         if (c >= 0x80) { /* we have a run */
66             c -= 0x7F;
67             if (out + c*2 > width)
68                 return AVERROR_INVALIDDATA;
69             for (i = 0; i < c * 2; i++)
70                 dst[out++] = 0x80;
71         } else { /* copy two values from table */
72             if (c <= 0)
73                 return AVERROR_INVALIDDATA;
74             dst[out++] = table[c * 2];
75             dst[out++] = table[(c * 2) + 1];
76         }
77     }
78     dst += pitch;
79
80     for (j = 1; j < height; j++) {
81         out = 0;
82         while (out < width) {
83             int c;
84             if (get_bits_left(&ctx->gb) <= 0)
85                 return AVERROR_INVALIDDATA;
86             c = ir2_get_code(&ctx->gb);
87             if (c >= 0x80) { /* we have a skip */
88                 c -= 0x7F;
89                 if (out + c*2 > width)
90                     return AVERROR_INVALIDDATA;
91                 for (i = 0; i < c * 2; i++) {
92                     dst[out] = dst[out - pitch];
93                     out++;
94                 }
95             } else { /* add two deltas from table */
96                 int t;
97                 if (c <= 0)
98                     return AVERROR_INVALIDDATA;
99                 t        = dst[out - pitch] + (table[c * 2] - 128);
100                 t        = av_clip_uint8(t);
101                 dst[out] = t;
102                 out++;
103                 t        = dst[out - pitch] + (table[(c * 2) + 1] - 128);
104                 t        = av_clip_uint8(t);
105                 dst[out] = t;
106                 out++;
107             }
108         }
109         dst += pitch;
110     }
111     return 0;
112 }
113
114 static int ir2_decode_plane_inter(Ir2Context *ctx, int width, int height, uint8_t *dst,
115                                   int pitch, const uint8_t *table)
116 {
117     int j;
118     int out = 0;
119     int c;
120     int t;
121
122     if (width & 1)
123         return AVERROR_INVALIDDATA;
124
125     for (j = 0; j < height; j++) {
126         out = 0;
127         while (out < width) {
128             if (get_bits_left(&ctx->gb) <= 0)
129                 return AVERROR_INVALIDDATA;
130             c = ir2_get_code(&ctx->gb);
131             if (c >= 0x80) { /* we have a skip */
132                 c   -= 0x7F;
133                 out += c * 2;
134             } else { /* add two deltas from table */
135                 if (c <= 0)
136                     return AVERROR_INVALIDDATA;
137                 t        = dst[out] + (((table[c * 2] - 128)*3) >> 2);
138                 t        = av_clip_uint8(t);
139                 dst[out] = t;
140                 out++;
141                 t        = dst[out] + (((table[(c * 2) + 1] - 128)*3) >> 2);
142                 t        = av_clip_uint8(t);
143                 dst[out] = t;
144                 out++;
145             }
146         }
147         dst += pitch;
148     }
149     return 0;
150 }
151
152 static int ir2_decode_frame(AVCodecContext *avctx,
153                         void *data, int *got_frame,
154                         AVPacket *avpkt)
155 {
156     Ir2Context * const s = avctx->priv_data;
157     const uint8_t *buf   = avpkt->data;
158     int buf_size         = avpkt->size;
159     AVFrame *picture     = data;
160     AVFrame * const p    = s->picture;
161     int start, ret;
162     int ltab, ctab;
163
164     if ((ret = ff_reget_buffer(avctx, p, 0)) < 0)
165         return ret;
166
167     start = 48; /* hardcoded for now */
168
169     if (start >= buf_size) {
170         av_log(s->avctx, AV_LOG_ERROR, "input buffer size too small (%d)\n", buf_size);
171         return AVERROR_INVALIDDATA;
172     }
173
174     s->decode_delta = buf[18];
175
176     /* decide whether frame uses deltas or not */
177
178     if ((ret = init_get_bits8(&s->gb, buf + start, buf_size - start)) < 0)
179         return ret;
180
181     ltab = buf[0x22] & 3;
182     ctab = buf[0x22] >> 2;
183
184     if (ctab > 3) {
185         av_log(avctx, AV_LOG_ERROR, "ctab %d is invalid\n", ctab);
186         return AVERROR_INVALIDDATA;
187     }
188
189     if (s->decode_delta) { /* intraframe */
190         if ((ret = ir2_decode_plane(s, avctx->width, avctx->height,
191                                     p->data[0], p->linesize[0],
192                                     ir2_delta_table[ltab])) < 0)
193             return ret;
194
195         /* swapped U and V */
196         if ((ret = ir2_decode_plane(s, avctx->width >> 2, avctx->height >> 2,
197                                     p->data[2], p->linesize[2],
198                                     ir2_delta_table[ctab])) < 0)
199             return ret;
200         if ((ret = ir2_decode_plane(s, avctx->width >> 2, avctx->height >> 2,
201                                     p->data[1], p->linesize[1],
202                                     ir2_delta_table[ctab])) < 0)
203             return ret;
204     } else { /* interframe */
205         if ((ret = ir2_decode_plane_inter(s, avctx->width, avctx->height,
206                                           p->data[0], p->linesize[0],
207                                           ir2_delta_table[ltab])) < 0)
208             return ret;
209         /* swapped U and V */
210         if ((ret = ir2_decode_plane_inter(s, avctx->width >> 2, avctx->height >> 2,
211                                           p->data[2], p->linesize[2],
212                                           ir2_delta_table[ctab])) < 0)
213             return ret;
214         if ((ret = ir2_decode_plane_inter(s, avctx->width >> 2, avctx->height >> 2,
215                                           p->data[1], p->linesize[1],
216                                           ir2_delta_table[ctab])) < 0)
217             return ret;
218     }
219
220     if ((ret = av_frame_ref(picture, p)) < 0)
221         return ret;
222
223     *got_frame = 1;
224
225     return buf_size;
226 }
227
228 static av_cold int ir2_decode_init(AVCodecContext *avctx)
229 {
230     Ir2Context * const ic = avctx->priv_data;
231
232     ic->avctx = avctx;
233
234     avctx->pix_fmt= AV_PIX_FMT_YUV410P;
235
236     ic->picture = av_frame_alloc();
237     if (!ic->picture)
238         return AVERROR(ENOMEM);
239
240     INIT_LE_VLC_STATIC(&ir2_vlc, CODE_VLC_BITS, IR2_CODES,
241                        &ir2_codes[0][1], 4, 2,
242                        &ir2_codes[0][0], 4, 2, 1 << CODE_VLC_BITS);
243
244     return 0;
245 }
246
247 static av_cold int ir2_decode_end(AVCodecContext *avctx)
248 {
249     Ir2Context * const ic = avctx->priv_data;
250
251     av_frame_free(&ic->picture);
252
253     return 0;
254 }
255
256 AVCodec ff_indeo2_decoder = {
257     .name           = "indeo2",
258     .long_name      = NULL_IF_CONFIG_SMALL("Intel Indeo 2"),
259     .type           = AVMEDIA_TYPE_VIDEO,
260     .id             = AV_CODEC_ID_INDEO2,
261     .priv_data_size = sizeof(Ir2Context),
262     .init           = ir2_decode_init,
263     .close          = ir2_decode_end,
264     .decode         = ir2_decode_frame,
265     .capabilities   = AV_CODEC_CAP_DR1,
266 };