]> git.sesse.net Git - ffmpeg/blob - libavcodec/nuv.c
d157383672b6808f0e4f8916cd9fd2bddaba478e
[ffmpeg] / libavcodec / nuv.c
1 /*
2  * NuppelVideo decoder
3  * Copyright (c) 2006 Reimar Doeffinger
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 #include <stdio.h>
22 #include <stdlib.h>
23
24 #include "avcodec.h"
25
26 #include "bswap.h"
27 #include "dsputil.h"
28 #include "lzo.h"
29 #include "rtjpeg.h"
30
31 typedef struct {
32     AVFrame pic;
33     int codec_frameheader;
34     int quality;
35     int width, height;
36     unsigned int decomp_size;
37     unsigned char* decomp_buf;
38     uint32_t lq[64], cq[64];
39     RTJpegContext rtj;
40     DSPContext dsp;
41 } NuvContext;
42
43 static const uint8_t fallback_lquant[] = {
44     16,  11,  10,  16,  24,  40,  51,  61,
45     12,  12,  14,  19,  26,  58,  60,  55,
46     14,  13,  16,  24,  40,  57,  69,  56,
47     14,  17,  22,  29,  51,  87,  80,  62,
48     18,  22,  37,  56,  68, 109, 103,  77,
49     24,  35,  55,  64,  81, 104, 113,  92,
50     49,  64,  78,  87, 103, 121, 120, 101,
51     72,  92,  95,  98, 112, 100, 103,  99
52 };
53
54 static const uint8_t fallback_cquant[] = {
55     17, 18, 24, 47, 99, 99, 99, 99,
56     18, 21, 26, 66, 99, 99, 99, 99,
57     24, 26, 56, 99, 99, 99, 99, 99,
58     47, 66, 99, 99, 99, 99, 99, 99,
59     99, 99, 99, 99, 99, 99, 99, 99,
60     99, 99, 99, 99, 99, 99, 99, 99,
61     99, 99, 99, 99, 99, 99, 99, 99,
62     99, 99, 99, 99, 99, 99, 99, 99
63 };
64
65 /**
66  * \brief copy frame data from buffer to AVFrame, handling stride.
67  * \param f destination AVFrame
68  * \param src source buffer, does not use any line-stride
69  * \param width width of the video frame
70  * \param height height of the video frame
71  */
72 static void copy_frame(AVFrame *f, uint8_t *src,
73                        int width, int height) {
74     AVPicture pic;
75     avpicture_fill(&pic, src, PIX_FMT_YUV420P, width, height);
76     av_picture_copy((AVPicture *)f, &pic, PIX_FMT_YUV420P, width, height);
77 }
78
79 /**
80  * \brief extract quantization tables from codec data into our context
81  */
82 static int get_quant(AVCodecContext *avctx, NuvContext *c,
83                      uint8_t *buf, int size) {
84     int i;
85     if (size < 2 * 64 * 4) {
86         av_log(avctx, AV_LOG_ERROR, "insufficient rtjpeg quant data\n");
87         return -1;
88     }
89     for (i = 0; i < 64; i++, buf += 4)
90         c->lq[i] = AV_RL32(buf);
91     for (i = 0; i < 64; i++, buf += 4)
92         c->cq[i] = AV_RL32(buf);
93     return 0;
94 }
95
96 /**
97  * \brief set quantization tables from a quality value
98  */
99 static void get_quant_quality(NuvContext *c, int quality) {
100     int i;
101     quality = FFMAX(quality, 1);
102     for (i = 0; i < 64; i++) {
103         c->lq[i] = (fallback_lquant[i] << 7) / quality;
104         c->cq[i] = (fallback_cquant[i] << 7) / quality;
105     }
106 }
107
108 static int codec_reinit(AVCodecContext *avctx, int width, int height, int quality) {
109     NuvContext *c = avctx->priv_data;
110     width = (width + 1) & ~1;
111     height = (height + 1) & ~1;
112     if (quality >= 0)
113         get_quant_quality(c, quality);
114     if (width != c->width || height != c->height) {
115         if (avcodec_check_dimensions(avctx, height, width) < 0)
116             return 0;
117         avctx->width = c->width = width;
118         avctx->height = c->height = height;
119         c->decomp_size = c->height * c->width * 3 / 2;
120         c->decomp_buf = av_realloc(c->decomp_buf, c->decomp_size + LZO_OUTPUT_PADDING);
121         if (!c->decomp_buf) {
122             av_log(avctx, AV_LOG_ERROR, "Can't allocate decompression buffer.\n");
123             return 0;
124         }
125         rtjpeg_decode_init(&c->rtj, &c->dsp, c->width, c->height, c->lq, c->cq);
126     } else if (quality != c->quality)
127         rtjpeg_decode_init(&c->rtj, &c->dsp, c->width, c->height, c->lq, c->cq);
128     return 1;
129 }
130
131 static int decode_frame(AVCodecContext *avctx, void *data, int *data_size,
132                         uint8_t *buf, int buf_size) {
133     NuvContext *c = avctx->priv_data;
134     AVFrame *picture = data;
135     int orig_size = buf_size;
136     enum {NUV_UNCOMPRESSED = '0', NUV_RTJPEG = '1',
137           NUV_RTJPEG_IN_LZO = '2', NUV_LZO = '3',
138           NUV_BLACK = 'N', NUV_COPY_LAST = 'L'} comptype;
139
140     if (buf_size < 12) {
141         av_log(avctx, AV_LOG_ERROR, "coded frame too small\n");
142         return -1;
143     }
144
145     // codec data (rtjpeg quant tables)
146     if (buf[0] == 'D' && buf[1] == 'R') {
147         int ret;
148         // skip rest of the frameheader.
149         buf = &buf[12];
150         buf_size -= 12;
151         ret = get_quant(avctx, c, buf, buf_size);
152         if (ret < 0)
153             return ret;
154         rtjpeg_decode_init(&c->rtj, &c->dsp, c->width, c->height, c->lq, c->cq);
155         return orig_size;
156     }
157
158     if (buf[0] != 'V' || buf_size < 12) {
159         av_log(avctx, AV_LOG_ERROR, "not a nuv video frame\n");
160         return -1;
161     }
162     comptype = buf[1];
163     // skip rest of the frameheader.
164     buf = &buf[12];
165     buf_size -= 12;
166     if (comptype == NUV_RTJPEG_IN_LZO || comptype == NUV_LZO) {
167         int outlen = c->decomp_size, inlen = buf_size;
168         if (lzo1x_decode(c->decomp_buf, &outlen, buf, &inlen))
169             av_log(avctx, AV_LOG_ERROR, "error during lzo decompression\n");
170         buf = c->decomp_buf;
171         buf_size = c->decomp_size;
172     }
173     if (c->codec_frameheader) {
174         int w, h, q;
175         if (buf_size < 12) {
176             av_log(avctx, AV_LOG_ERROR, "invalid nuv video frame\n");
177             return -1;
178         }
179         w = AV_RL16(&buf[6]);
180         h = AV_RL16(&buf[8]);
181         q = buf[10];
182         if (!codec_reinit(avctx, w, h, q))
183             return -1;
184         buf = &buf[12];
185         buf_size -= 12;
186     }
187
188     if (c->pic.data[0])
189         avctx->release_buffer(avctx, &c->pic);
190     c->pic.reference = 1;
191     c->pic.buffer_hints = FF_BUFFER_HINTS_VALID | FF_BUFFER_HINTS_READABLE |
192                           FF_BUFFER_HINTS_PRESERVE | FF_BUFFER_HINTS_REUSABLE;
193     if (avctx->get_buffer(avctx, &c->pic) < 0) {
194         av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
195         return -1;
196     }
197
198     c->pic.pict_type = FF_I_TYPE;
199     c->pic.key_frame = 1;
200     // decompress/copy/whatever data
201     switch (comptype) {
202         case NUV_LZO:
203         case NUV_UNCOMPRESSED: {
204             int height = c->height;
205             if (buf_size < c->width * height * 3 / 2) {
206                 av_log(avctx, AV_LOG_ERROR, "uncompressed frame too short\n");
207                 height = buf_size / c->width / 3 * 2;
208             }
209             copy_frame(&c->pic, buf, c->width, height);
210             break;
211         }
212         case NUV_RTJPEG_IN_LZO:
213         case NUV_RTJPEG: {
214             rtjpeg_decode_frame_yuv420(&c->rtj, &c->pic, buf, buf_size);
215             break;
216         }
217         case NUV_BLACK: {
218             memset(c->pic.data[0], 0, c->width * c->height);
219             memset(c->pic.data[1], 128, c->width * c->height / 4);
220             memset(c->pic.data[2], 128, c->width * c->height / 4);
221             break;
222         }
223         case NUV_COPY_LAST: {
224             c->pic.pict_type = FF_P_TYPE;
225             c->pic.key_frame = 0;
226             /* nothing more to do here */
227             break;
228         }
229         default:
230             av_log(avctx, AV_LOG_ERROR, "unknown compression\n");
231             return -1;
232     }
233
234     *picture = c->pic;
235     *data_size = sizeof(AVFrame);
236     return orig_size;
237 }
238
239 static int decode_init(AVCodecContext *avctx) {
240     NuvContext *c = avctx->priv_data;
241     avctx->pix_fmt = PIX_FMT_YUV420P;
242     c->pic.data[0] = NULL;
243     c->decomp_buf = NULL;
244     c->quality = -1;
245     c->width = 0;
246     c->height = 0;
247     c->codec_frameheader = avctx->codec_tag == MKTAG('R', 'J', 'P', 'G');
248     if (avctx->extradata_size)
249         get_quant(avctx, c, avctx->extradata, avctx->extradata_size);
250     dsputil_init(&c->dsp, avctx);
251     if (!codec_reinit(avctx, avctx->width, avctx->height, -1))
252         return 1;
253     return 0;
254 }
255
256 static int decode_end(AVCodecContext *avctx) {
257     NuvContext *c = avctx->priv_data;
258     av_freep(&c->decomp_buf);
259     if (c->pic.data[0])
260         avctx->release_buffer(avctx, &c->pic);
261     return 0;
262 }
263
264 AVCodec nuv_decoder = {
265     "nuv",
266     CODEC_TYPE_VIDEO,
267     CODEC_ID_NUV,
268     sizeof(NuvContext),
269     decode_init,
270     NULL,
271     decode_end,
272     decode_frame,
273     CODEC_CAP_DR1,
274 };
275