]> git.sesse.net Git - ffmpeg/blob - libavcodec/fraps.c
Merge remote-tracking branch 'qatar/master'
[ffmpeg] / libavcodec / fraps.c
1 /*
2  * Fraps FPS1 decoder
3  * Copyright (c) 2005 Roine Gustafsson
4  * Copyright (c) 2006 Konstantin Shishkov
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 /**
24  * @file
25  * Lossless Fraps 'FPS1' decoder
26  * @author Roine Gustafsson (roine at users sf net)
27  * @author Konstantin Shishkov
28  *
29  * Codec algorithm for version 0 is taken from Transcode <www.transcoding.org>
30  *
31  * Version 2 files support by Konstantin Shishkov
32  */
33
34 #include "avcodec.h"
35 #include "get_bits.h"
36 #include "huffman.h"
37 #include "bytestream.h"
38 #include "dsputil.h"
39 #include "thread.h"
40
41 #define FPS_TAG MKTAG('F', 'P', 'S', 'x')
42
43 /**
44  * local variable storage
45  */
46 typedef struct FrapsContext{
47     AVCodecContext *avctx;
48     AVFrame frame;
49     uint8_t *tmpbuf;
50     int tmpbuf_size;
51     DSPContext dsp;
52 } FrapsContext;
53
54
55 /**
56  * initializes decoder
57  * @param avctx codec context
58  * @return 0 on success or negative if fails
59  */
60 static av_cold int decode_init(AVCodecContext *avctx)
61 {
62     FrapsContext * const s = avctx->priv_data;
63
64     avcodec_get_frame_defaults(&s->frame);
65     avctx->coded_frame = (AVFrame*)&s->frame;
66
67     s->avctx = avctx;
68     s->tmpbuf = NULL;
69
70     dsputil_init(&s->dsp, avctx);
71
72     return 0;
73 }
74
75 /**
76  * Comparator - our nodes should ascend by count
77  * but with preserved symbol order
78  */
79 static int huff_cmp(const void *va, const void *vb){
80     const Node *a = va, *b = vb;
81     return (a->count - b->count)*256 + a->sym - b->sym;
82 }
83
84 /**
85  * decode Fraps v2 packed plane
86  */
87 static int fraps2_decode_plane(FrapsContext *s, uint8_t *dst, int stride, int w,
88                                int h, const uint8_t *src, int size, int Uoff,
89                                const int step)
90 {
91     int i, j;
92     GetBitContext gb;
93     VLC vlc;
94     Node nodes[512];
95
96     for(i = 0; i < 256; i++)
97         nodes[i].count = bytestream_get_le32(&src);
98     size -= 1024;
99     if (ff_huff_build_tree(s->avctx, &vlc, 256, nodes, huff_cmp,
100                            FF_HUFFMAN_FLAG_ZERO_COUNT) < 0)
101         return -1;
102     /* we have built Huffman table and are ready to decode plane */
103
104     /* convert bits so they may be used by standard bitreader */
105     s->dsp.bswap_buf((uint32_t *)s->tmpbuf, (const uint32_t *)src, size >> 2);
106
107     init_get_bits(&gb, s->tmpbuf, size * 8);
108     for(j = 0; j < h; j++){
109         for(i = 0; i < w*step; i += step){
110             dst[i] = get_vlc2(&gb, vlc.table, 9, 3);
111             /* lines are stored as deltas between previous lines
112              * and we need to add 0x80 to the first lines of chroma planes
113              */
114             if(j) dst[i] += dst[i - stride];
115             else if(Uoff) dst[i] += 0x80;
116             if (get_bits_left(&gb) < 0) {
117                 free_vlc(&vlc);
118                 return AVERROR_INVALIDDATA;
119             }
120         }
121         dst += stride;
122     }
123     free_vlc(&vlc);
124     return 0;
125 }
126
127 static int decode_frame(AVCodecContext *avctx,
128                         void *data, int *data_size,
129                         AVPacket *avpkt)
130 {
131     const uint8_t *buf = avpkt->data;
132     int buf_size = avpkt->size;
133     FrapsContext * const s = avctx->priv_data;
134     AVFrame *frame = data;
135     AVFrame * const f = (AVFrame*)&s->frame;
136     uint32_t header;
137     unsigned int version,header_size;
138     unsigned int x, y;
139     const uint32_t *buf32;
140     uint32_t *luma1,*luma2,*cb,*cr;
141     uint32_t offs[4];
142     int i, j, is_chroma;
143     const int planes = 3;
144     uint8_t *out;
145
146
147     header = AV_RL32(buf);
148     version = header & 0xff;
149     header_size = (header & (1<<30))? 8 : 4; /* bit 30 means pad to 8 bytes */
150
151     if (version > 5) {
152         av_log(avctx, AV_LOG_ERROR,
153                "This file is encoded with Fraps version %d. " \
154                "This codec can only decode versions <= 5.\n", version);
155         return -1;
156     }
157
158     buf += header_size;
159
160     avctx->pix_fmt = version & 1 ? PIX_FMT_BGR24 : PIX_FMT_YUVJ420P;
161
162     if (version < 2) {
163         unsigned needed_size = avctx->width*avctx->height*3;
164         if (version == 0) needed_size /= 2;
165         needed_size += header_size;
166         if (buf_size != needed_size && buf_size != header_size) {
167             av_log(avctx, AV_LOG_ERROR,
168                    "Invalid frame length %d (should be %d)\n",
169                    buf_size, needed_size);
170             return -1;
171         }
172         /* bit 31 means same as previous pic */
173         if (header & (1U<<31)) {
174             *data_size = 0;
175             return buf_size;
176         }
177     } else {
178         /* skip frame */
179         if (buf_size == 8) {
180             *data_size = 0;
181             return buf_size;
182         }
183         if (AV_RL32(buf) != FPS_TAG || buf_size < planes*1024 + 24) {
184             av_log(avctx, AV_LOG_ERROR, "Fraps: error in data stream\n");
185             return -1;
186         }
187         for(i = 0; i < planes; i++) {
188             offs[i] = AV_RL32(buf + 4 + i * 4);
189             if(offs[i] >= buf_size - header_size || (i && offs[i] <= offs[i - 1] + 1024)) {
190                 av_log(avctx, AV_LOG_ERROR, "Fraps: plane %i offset is out of bounds\n", i);
191                 return -1;
192             }
193         }
194         offs[planes] = buf_size - header_size;
195         for(i = 0; i < planes; i++) {
196             av_fast_padded_malloc(&s->tmpbuf, &s->tmpbuf_size, offs[i + 1] - offs[i] - 1024);
197             if (!s->tmpbuf)
198                 return AVERROR(ENOMEM);
199         }
200     }
201
202     if (f->data[0])
203         ff_thread_release_buffer(avctx, f);
204     f->pict_type = AV_PICTURE_TYPE_I;
205     f->key_frame = 1;
206     f->reference = 0;
207     f->buffer_hints = FF_BUFFER_HINTS_VALID;
208     if (ff_thread_get_buffer(avctx, f)) {
209         av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
210         return -1;
211     }
212
213     switch(version) {
214     case 0:
215     default:
216         /* Fraps v0 is a reordered YUV420 */
217         if ( (avctx->width % 8) != 0 || (avctx->height % 2) != 0 ) {
218             av_log(avctx, AV_LOG_ERROR, "Invalid frame size %dx%d\n",
219                    avctx->width, avctx->height);
220             return -1;
221         }
222
223         buf32=(const uint32_t*)buf;
224         for(y=0; y<avctx->height/2; y++){
225             luma1=(uint32_t*)&f->data[0][ y*2*f->linesize[0] ];
226             luma2=(uint32_t*)&f->data[0][ (y*2+1)*f->linesize[0] ];
227             cr=(uint32_t*)&f->data[1][ y*f->linesize[1] ];
228             cb=(uint32_t*)&f->data[2][ y*f->linesize[2] ];
229             for(x=0; x<avctx->width; x+=8){
230                 *luma1++ = *buf32++;
231                 *luma1++ = *buf32++;
232                 *luma2++ = *buf32++;
233                 *luma2++ = *buf32++;
234                 *cr++    = *buf32++;
235                 *cb++    = *buf32++;
236             }
237         }
238         break;
239
240     case 1:
241         /* Fraps v1 is an upside-down BGR24 */
242         for(y=0; y<avctx->height; y++)
243             memcpy(&f->data[0][ (avctx->height-y)*f->linesize[0] ],
244                    &buf[y*avctx->width*3],
245                    3*avctx->width);
246         break;
247
248     case 2:
249     case 4:
250         /**
251          * Fraps v2 is Huffman-coded YUV420 planes
252          * Fraps v4 is virtually the same
253          */
254         for(i = 0; i < planes; i++){
255             is_chroma = !!i;
256             if(fraps2_decode_plane(s, f->data[i], f->linesize[i], avctx->width >> is_chroma,
257                     avctx->height >> is_chroma, buf + offs[i], offs[i + 1] - offs[i], is_chroma, 1) < 0) {
258                 av_log(avctx, AV_LOG_ERROR, "Error decoding plane %i\n", i);
259                 return -1;
260             }
261         }
262         break;
263     case 3:
264     case 5:
265         /* Virtually the same as version 4, but is for RGB24 */
266         for(i = 0; i < planes; i++){
267             if(fraps2_decode_plane(s, f->data[0] + i + (f->linesize[0] * (avctx->height - 1)), -f->linesize[0],
268                     avctx->width, avctx->height, buf + offs[i], offs[i + 1] - offs[i], 0, 3) < 0) {
269                 av_log(avctx, AV_LOG_ERROR, "Error decoding plane %i\n", i);
270                 return -1;
271             }
272         }
273         out = f->data[0];
274         // convert pseudo-YUV into real RGB
275         for(j = 0; j < avctx->height; j++){
276             uint8_t *line_end = out + 3*avctx->width;
277             while (out < line_end) {
278                 out[0]  += out[1];
279                 out[2]  += out[1];
280                 out += 3;
281             }
282             out += f->linesize[0] - 3*avctx->width;
283         }
284         break;
285     }
286
287     *frame = *f;
288     *data_size = sizeof(AVFrame);
289
290     return buf_size;
291 }
292
293
294 /**
295  * closes decoder
296  * @param avctx codec context
297  * @return 0 on success or negative if fails
298  */
299 static av_cold int decode_end(AVCodecContext *avctx)
300 {
301     FrapsContext *s = (FrapsContext*)avctx->priv_data;
302
303     if (s->frame.data[0])
304         avctx->release_buffer(avctx, &s->frame);
305
306     av_freep(&s->tmpbuf);
307     return 0;
308 }
309
310
311 AVCodec ff_fraps_decoder = {
312     .name           = "fraps",
313     .type           = AVMEDIA_TYPE_VIDEO,
314     .id             = CODEC_ID_FRAPS,
315     .priv_data_size = sizeof(FrapsContext),
316     .init           = decode_init,
317     .close          = decode_end,
318     .decode         = decode_frame,
319     .capabilities   = CODEC_CAP_DR1 | CODEC_CAP_FRAME_THREADS,
320     .long_name = NULL_IF_CONFIG_SMALL("Fraps"),
321 };