3 * Copyright (c) 2005 Roine Gustafsson
4 * Copyright (c) 2006 Konstantin Shishkov
6 * This file is part of FFmpeg.
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.
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.
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
24 * @file libavcodec/fraps.c
25 * Lossless Fraps 'FPS1' decoder
26 * @author Roine Gustafsson <roine at users sf net>
27 * @author Konstantin Shishkov
29 * Codec algorithm for version 0 is taken from Transcode <www.transcoding.org>
31 * Version 2 files support by Konstantin Shishkov
37 #include "bytestream.h"
40 #define FPS_TAG MKTAG('F', 'P', 'S', 'x')
43 * local variable storage
45 typedef struct FrapsContext
{
46 AVCodecContext
*avctx
;
55 * @param avctx codec context
56 * @return 0 on success or negative if fails
58 static av_cold
int decode_init(AVCodecContext
*avctx
)
60 FrapsContext
* const s
= avctx
->priv_data
;
62 avctx
->coded_frame
= (AVFrame
*)&s
->frame
;
63 avctx
->pix_fmt
= PIX_FMT_NONE
; /* set in decode_frame */
68 dsputil_init(&s
->dsp
, avctx
);
74 * Comparator - our nodes should ascend by count
75 * but with preserved symbol order
77 static int huff_cmp(const void *va
, const void *vb
){
78 const Node
*a
= va
, *b
= vb
;
79 return (a
->count
- b
->count
)*256 + a
->sym
- b
->sym
;
83 * decode Fraps v2 packed plane
85 static int fraps2_decode_plane(FrapsContext
*s
, uint8_t *dst
, int stride
, int w
,
86 int h
, const uint8_t *src
, int size
, int Uoff
,
94 for(i
= 0; i
< 256; i
++)
95 nodes
[i
].count
= bytestream_get_le32(&src
);
97 if (ff_huff_build_tree(s
->avctx
, &vlc
, 256, nodes
, huff_cmp
,
98 FF_HUFFMAN_FLAG_ZERO_COUNT
) < 0)
100 /* we have built Huffman table and are ready to decode plane */
102 /* convert bits so they may be used by standard bitreader */
103 s
->dsp
.bswap_buf((uint32_t *)s
->tmpbuf
, (const uint32_t *)src
, size
>> 2);
105 init_get_bits(&gb
, s
->tmpbuf
, size
* 8);
106 for(j
= 0; j
< h
; j
++){
107 for(i
= 0; i
< w
*step
; i
+= step
){
108 dst
[i
] = get_vlc2(&gb
, vlc
.table
, 9, 3);
109 /* lines are stored as deltas between previous lines
110 * and we need to add 0x80 to the first lines of chroma planes
112 if(j
) dst
[i
] += dst
[i
- stride
];
113 else if(Uoff
) dst
[i
] += 0x80;
123 * @param avctx codec context
124 * @param data output AVFrame
125 * @param data_size size of output data or 0 if no picture is returned
126 * @param buf input data frame
127 * @param buf_size size of input data frame
128 * @return number of consumed bytes on success or negative if decode fails
130 static int decode_frame(AVCodecContext
*avctx
,
131 void *data
, int *data_size
,
134 const uint8_t *buf
= avpkt
->data
;
135 int buf_size
= avpkt
->size
;
136 FrapsContext
* const s
= avctx
->priv_data
;
137 AVFrame
*frame
= data
;
138 AVFrame
* const f
= (AVFrame
*)&s
->frame
;
140 unsigned int version
,header_size
;
142 const uint32_t *buf32
;
143 uint32_t *luma1
,*luma2
,*cb
,*cr
;
145 int i
, j
, is_chroma
, planes
;
148 header
= AV_RL32(buf
);
149 version
= header
& 0xff;
150 header_size
= (header
& (1<<30))? 8 : 4; /* bit 30 means pad to 8 bytes */
153 av_log(avctx
, AV_LOG_ERROR
,
154 "This file is encoded with Fraps version %d. " \
155 "This codec can only decode versions <= 5.\n", version
);
160 if (header_size
== 8)
166 /* Fraps v0 is a reordered YUV420 */
167 avctx
->pix_fmt
= PIX_FMT_YUV420P
;
169 if ( (buf_size
!= avctx
->width
*avctx
->height
*3/2+header_size
) &&
170 (buf_size
!= header_size
) ) {
171 av_log(avctx
, AV_LOG_ERROR
,
172 "Invalid frame length %d (should be %d)\n",
173 buf_size
, avctx
->width
*avctx
->height
*3/2+header_size
);
177 if (( (avctx
->width
% 8) != 0) || ( (avctx
->height
% 2) != 0 )) {
178 av_log(avctx
, AV_LOG_ERROR
, "Invalid frame size %dx%d\n",
179 avctx
->width
, avctx
->height
);
184 f
->buffer_hints
= FF_BUFFER_HINTS_VALID
|
185 FF_BUFFER_HINTS_PRESERVE
|
186 FF_BUFFER_HINTS_REUSABLE
;
187 if (avctx
->reget_buffer(avctx
, f
)) {
188 av_log(avctx
, AV_LOG_ERROR
, "reget_buffer() failed\n");
191 /* bit 31 means same as previous pic */
192 f
->pict_type
= (header
& (1<<31))? FF_P_TYPE
: FF_I_TYPE
;
193 f
->key_frame
= f
->pict_type
== FF_I_TYPE
;
195 if (f
->pict_type
== FF_I_TYPE
) {
196 buf32
=(const uint32_t*)buf
;
197 for(y
=0; y
<avctx
->height
/2; y
++){
198 luma1
=(uint32_t*)&f
->data
[0][ y
*2*f
->linesize
[0] ];
199 luma2
=(uint32_t*)&f
->data
[0][ (y
*2+1)*f
->linesize
[0] ];
200 cr
=(uint32_t*)&f
->data
[1][ y
*f
->linesize
[1] ];
201 cb
=(uint32_t*)&f
->data
[2][ y
*f
->linesize
[2] ];
202 for(x
=0; x
<avctx
->width
; x
+=8){
203 *(luma1
++) = *(buf32
++);
204 *(luma1
++) = *(buf32
++);
205 *(luma2
++) = *(buf32
++);
206 *(luma2
++) = *(buf32
++);
207 *(cr
++) = *(buf32
++);
208 *(cb
++) = *(buf32
++);
215 /* Fraps v1 is an upside-down BGR24 */
216 avctx
->pix_fmt
= PIX_FMT_BGR24
;
218 if ( (buf_size
!= avctx
->width
*avctx
->height
*3+header_size
) &&
219 (buf_size
!= header_size
) ) {
220 av_log(avctx
, AV_LOG_ERROR
,
221 "Invalid frame length %d (should be %d)\n",
222 buf_size
, avctx
->width
*avctx
->height
*3+header_size
);
227 f
->buffer_hints
= FF_BUFFER_HINTS_VALID
|
228 FF_BUFFER_HINTS_PRESERVE
|
229 FF_BUFFER_HINTS_REUSABLE
;
230 if (avctx
->reget_buffer(avctx
, f
)) {
231 av_log(avctx
, AV_LOG_ERROR
, "reget_buffer() failed\n");
234 /* bit 31 means same as previous pic */
235 f
->pict_type
= (header
& (1<<31))? FF_P_TYPE
: FF_I_TYPE
;
236 f
->key_frame
= f
->pict_type
== FF_I_TYPE
;
238 if (f
->pict_type
== FF_I_TYPE
) {
239 for(y
=0; y
<avctx
->height
; y
++)
240 memcpy(&f
->data
[0][ (avctx
->height
-y
)*f
->linesize
[0] ],
241 &buf
[y
*avctx
->width
*3],
249 * Fraps v2 is Huffman-coded YUV420 planes
250 * Fraps v4 is virtually the same
252 avctx
->pix_fmt
= PIX_FMT_YUV420P
;
255 f
->buffer_hints
= FF_BUFFER_HINTS_VALID
|
256 FF_BUFFER_HINTS_PRESERVE
|
257 FF_BUFFER_HINTS_REUSABLE
;
258 if (avctx
->reget_buffer(avctx
, f
)) {
259 av_log(avctx
, AV_LOG_ERROR
, "reget_buffer() failed\n");
264 f
->pict_type
= FF_P_TYPE
;
268 f
->pict_type
= FF_I_TYPE
;
270 if ((AV_RL32(buf
) != FPS_TAG
)||(buf_size
< (planes
*1024 + 24))) {
271 av_log(avctx
, AV_LOG_ERROR
, "Fraps: error in data stream\n");
274 for(i
= 0; i
< planes
; i
++) {
275 offs
[i
] = AV_RL32(buf
+ 4 + i
* 4);
276 if(offs
[i
] >= buf_size
|| (i
&& offs
[i
] <= offs
[i
- 1] + 1024)) {
277 av_log(avctx
, AV_LOG_ERROR
, "Fraps: plane %i offset is out of bounds\n", i
);
281 offs
[planes
] = buf_size
;
282 for(i
= 0; i
< planes
; i
++){
284 s
->tmpbuf
= av_realloc(s
->tmpbuf
, offs
[i
+ 1] - offs
[i
] - 1024 + FF_INPUT_BUFFER_PADDING_SIZE
);
285 if(fraps2_decode_plane(s
, f
->data
[i
], f
->linesize
[i
], avctx
->width
>> is_chroma
,
286 avctx
->height
>> is_chroma
, buf
+ offs
[i
], offs
[i
+ 1] - offs
[i
], is_chroma
, 1) < 0) {
287 av_log(avctx
, AV_LOG_ERROR
, "Error decoding plane %i\n", i
);
294 /* Virtually the same as version 4, but is for RGB24 */
295 avctx
->pix_fmt
= PIX_FMT_BGR24
;
298 f
->buffer_hints
= FF_BUFFER_HINTS_VALID
|
299 FF_BUFFER_HINTS_PRESERVE
|
300 FF_BUFFER_HINTS_REUSABLE
;
301 if (avctx
->reget_buffer(avctx
, f
)) {
302 av_log(avctx
, AV_LOG_ERROR
, "reget_buffer() failed\n");
307 f
->pict_type
= FF_P_TYPE
;
311 f
->pict_type
= FF_I_TYPE
;
313 if ((AV_RL32(buf
) != FPS_TAG
)||(buf_size
< (planes
*1024 + 24))) {
314 av_log(avctx
, AV_LOG_ERROR
, "Fraps: error in data stream\n");
317 for(i
= 0; i
< planes
; i
++) {
318 offs
[i
] = AV_RL32(buf
+ 4 + i
* 4);
319 if(offs
[i
] >= buf_size
|| (i
&& offs
[i
] <= offs
[i
- 1] + 1024)) {
320 av_log(avctx
, AV_LOG_ERROR
, "Fraps: plane %i offset is out of bounds\n", i
);
324 offs
[planes
] = buf_size
;
325 for(i
= 0; i
< planes
; i
++){
326 s
->tmpbuf
= av_realloc(s
->tmpbuf
, offs
[i
+ 1] - offs
[i
] - 1024 + FF_INPUT_BUFFER_PADDING_SIZE
);
327 if(fraps2_decode_plane(s
, f
->data
[0] + i
+ (f
->linesize
[0] * (avctx
->height
- 1)), -f
->linesize
[0],
328 avctx
->width
, avctx
->height
, buf
+ offs
[i
], offs
[i
+ 1] - offs
[i
], 0, 3) < 0) {
329 av_log(avctx
, AV_LOG_ERROR
, "Error decoding plane %i\n", i
);
333 // convert pseudo-YUV into real RGB
334 for(j
= 0; j
< avctx
->height
; j
++){
335 for(i
= 0; i
< avctx
->width
; i
++){
336 f
->data
[0][0 + i
*3 + j
*f
->linesize
[0]] += f
->data
[0][1 + i
*3 + j
*f
->linesize
[0]];
337 f
->data
[0][2 + i
*3 + j
*f
->linesize
[0]] += f
->data
[0][1 + i
*3 + j
*f
->linesize
[0]];
344 *data_size
= sizeof(AVFrame
);
352 * @param avctx codec context
353 * @return 0 on success or negative if fails
355 static av_cold
int decode_end(AVCodecContext
*avctx
)
357 FrapsContext
*s
= (FrapsContext
*)avctx
->priv_data
;
359 if (s
->frame
.data
[0])
360 avctx
->release_buffer(avctx
, &s
->frame
);
362 av_freep(&s
->tmpbuf
);
367 AVCodec fraps_decoder
= {
371 sizeof(FrapsContext
),
377 .long_name
= NULL_IF_CONFIG_SMALL("Fraps"),