]> git.sesse.net Git - ffmpeg/blob - libavcodec/rawdec.c
Merge commit 'ede2b451ccb1b2317858c7a32784a9b739ba45f4'
[ffmpeg] / libavcodec / rawdec.c
1 /*
2  * Raw Video Decoder
3  * Copyright (c) 2001 Fabrice Bellard
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  * Raw Video Decoder
25  */
26
27 #include "avcodec.h"
28 #include "dsputil.h"
29 #include "get_bits.h"
30 #include "internal.h"
31 #include "raw.h"
32 #include "libavutil/avassert.h"
33 #include "libavutil/buffer.h"
34 #include "libavutil/common.h"
35 #include "libavutil/intreadwrite.h"
36 #include "libavutil/imgutils.h"
37 #include "libavutil/opt.h"
38
39 typedef struct RawVideoContext {
40     AVClass *av_class;
41     AVBufferRef *palette;
42     int frame_size;  /* size of the frame in bytes */
43     int flip;
44     int is_2_4_bpp; // 2 or 4 bpp raw in avi/mov
45     int is_yuv2;
46     int is_lt_16bpp; // 16bpp pixfmt and bits_per_coded_sample < 16
47     int tff;
48
49     DSPContext dsp;
50     void *bitstream_buf;
51     unsigned int bitstream_buf_size;
52 } RawVideoContext;
53
54 static const AVOption options[]={
55 {"top", "top field first", offsetof(RawVideoContext, tff), AV_OPT_TYPE_INT, {.i64 = -1}, -1, 1, AV_OPT_FLAG_DECODING_PARAM|AV_OPT_FLAG_VIDEO_PARAM},
56 {NULL}
57 };
58
59 static const AVClass rawdec_class = {
60     .class_name = "rawdec",
61     .option     = options,
62     .version    = LIBAVUTIL_VERSION_INT,
63 };
64
65 static const PixelFormatTag pix_fmt_bps_avi[] = {
66     { AV_PIX_FMT_MONOWHITE, 1 },
67     { AV_PIX_FMT_PAL8,    2 },
68     { AV_PIX_FMT_PAL8,    4 },
69     { AV_PIX_FMT_PAL8,    8 },
70     { AV_PIX_FMT_RGB444LE, 12 },
71     { AV_PIX_FMT_RGB555LE, 15 },
72     { AV_PIX_FMT_RGB555LE, 16 },
73     { AV_PIX_FMT_BGR24,  24 },
74     { AV_PIX_FMT_BGRA,   32 },
75     { AV_PIX_FMT_NONE,    0 },
76 };
77
78 static const PixelFormatTag pix_fmt_bps_mov[] = {
79     { AV_PIX_FMT_MONOWHITE, 1 },
80     { AV_PIX_FMT_PAL8,      2 },
81     { AV_PIX_FMT_PAL8,      4 },
82     { AV_PIX_FMT_PAL8,      8 },
83     // FIXME swscale does not support 16 bit in .mov, sample 16bit.mov
84     // http://developer.apple.com/documentation/QuickTime/QTFF/QTFFChap3/qtff3.html
85     { AV_PIX_FMT_RGB555BE, 16 },
86     { AV_PIX_FMT_RGB24,    24 },
87     { AV_PIX_FMT_ARGB,     32 },
88     { AV_PIX_FMT_MONOWHITE,33 },
89     { AV_PIX_FMT_NONE,      0 },
90 };
91
92 #if LIBAVCODEC_VERSION_MAJOR < 55
93 enum AVPixelFormat ff_find_pix_fmt(const PixelFormatTag *tags, unsigned int fourcc)
94 {
95     return avpriv_find_pix_fmt(tags, fourcc);
96 }
97 #endif
98
99 static av_cold int raw_init_decoder(AVCodecContext *avctx)
100 {
101     RawVideoContext *context = avctx->priv_data;
102     const AVPixFmtDescriptor *desc;
103
104     ff_dsputil_init(&context->dsp, avctx);
105
106     if (   avctx->codec_tag == MKTAG('r','a','w',' ')
107         || avctx->codec_tag == MKTAG('N','O','1','6'))
108         avctx->pix_fmt = avpriv_find_pix_fmt(pix_fmt_bps_mov,
109                                       avctx->bits_per_coded_sample);
110     else if (avctx->codec_tag == MKTAG('W', 'R', 'A', 'W'))
111         avctx->pix_fmt = avpriv_find_pix_fmt(pix_fmt_bps_avi,
112                                       avctx->bits_per_coded_sample);
113     else if (avctx->codec_tag && (avctx->codec_tag & 0xFFFFFF) != MKTAG('B','I','T', 0))
114         avctx->pix_fmt = avpriv_find_pix_fmt(ff_raw_pix_fmt_tags, avctx->codec_tag);
115     else if (avctx->pix_fmt == AV_PIX_FMT_NONE && avctx->bits_per_coded_sample)
116         avctx->pix_fmt = avpriv_find_pix_fmt(pix_fmt_bps_avi,
117                                       avctx->bits_per_coded_sample);
118
119     desc = av_pix_fmt_desc_get(avctx->pix_fmt);
120     if (!desc) {
121         av_log(avctx, AV_LOG_ERROR, "Invalid pixel format.\n");
122         return AVERROR(EINVAL);
123     }
124
125     if (desc->flags & (AV_PIX_FMT_FLAG_PAL | AV_PIX_FMT_FLAG_PSEUDOPAL)) {
126         context->palette = av_buffer_alloc(AVPALETTE_SIZE);
127         if (!context->palette)
128             return AVERROR(ENOMEM);
129         if (desc->flags & AV_PIX_FMT_FLAG_PSEUDOPAL)
130             avpriv_set_systematic_pal2((uint32_t*)context->palette->data, avctx->pix_fmt);
131         else
132             memset(context->palette->data, 0, AVPALETTE_SIZE);
133     }
134
135     if ((avctx->bits_per_coded_sample == 4 || avctx->bits_per_coded_sample == 2) &&
136         avctx->pix_fmt == AV_PIX_FMT_PAL8 &&
137        (!avctx->codec_tag || avctx->codec_tag == MKTAG('r','a','w',' '))) {
138         context->is_2_4_bpp = 1;
139         context->frame_size = avpicture_get_size(avctx->pix_fmt,
140                                                  FFALIGN(avctx->width, 16),
141                                                  avctx->height);
142     } else {
143         context->is_lt_16bpp = av_get_bits_per_pixel(desc) == 16 && avctx->bits_per_coded_sample && avctx->bits_per_coded_sample < 16;
144         context->frame_size = avpicture_get_size(avctx->pix_fmt, avctx->width,
145                                                  avctx->height);
146     }
147
148     if ((avctx->extradata_size >= 9 &&
149          !memcmp(avctx->extradata + avctx->extradata_size - 9, "BottomUp", 9)) ||
150         avctx->codec_tag == MKTAG('c','y','u','v') ||
151         avctx->codec_tag == MKTAG(3, 0, 0, 0) ||
152         avctx->codec_tag == MKTAG('W','R','A','W'))
153         context->flip = 1;
154
155     if (avctx->codec_tag == AV_RL32("yuv2") &&
156         avctx->pix_fmt   == AV_PIX_FMT_YUYV422)
157         context->is_yuv2 = 1;
158
159     return 0;
160 }
161
162 static void flip(AVCodecContext *avctx, AVPicture *picture)
163 {
164     picture->data[0]     += picture->linesize[0] * (avctx->height - 1);
165     picture->linesize[0] *= -1;
166 }
167
168 /*
169  * Scale sample to 16-bit resolution
170  */
171 #define SCALE16(x, bits) (((x) << (16 - (bits))) | ((x) >> (2 * (bits) - 16)))
172
173 /**
174  * Scale buffer to 16 bits per coded sample resolution
175  */
176 #define MKSCALE16(name, r16, w16) \
177 static void name(AVCodecContext *avctx, uint8_t * dst, const uint8_t *buf, int buf_size, int packed) \
178 { \
179     int i; \
180     if (!packed) { \
181         for (i = 0; i + 1 < buf_size; i += 2) \
182             w16(dst + i, SCALE16(r16(buf + i), avctx->bits_per_coded_sample)); \
183     } else { \
184         GetBitContext gb; \
185         init_get_bits(&gb, buf, buf_size * 8); \
186         for (i = 0; i < avctx->width * avctx->height; i++) { \
187             int sample = get_bits(&gb, avctx->bits_per_coded_sample); \
188             w16(dst + i*2, SCALE16(sample, avctx->bits_per_coded_sample)); \
189         } \
190    } \
191 }
192
193 MKSCALE16(scale16be, AV_RB16, AV_WB16)
194 MKSCALE16(scale16le, AV_RL16, AV_WL16)
195
196 static int raw_decode(AVCodecContext *avctx, void *data, int *got_frame,
197                       AVPacket *avpkt)
198 {
199     const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(avctx->pix_fmt);
200     RawVideoContext *context       = avctx->priv_data;
201     const uint8_t *buf             = avpkt->data;
202     int buf_size                   = avpkt->size;
203     int linesize_align             = 4;
204     int res, len;
205     int need_copy                  = !avpkt->buf || context->is_2_4_bpp || context->is_yuv2 || context->is_lt_16bpp;
206
207     AVFrame   *frame   = data;
208     AVPicture *picture = data;
209
210     frame->pict_type        = AV_PICTURE_TYPE_I;
211     frame->key_frame        = 1;
212     frame->reordered_opaque = avctx->reordered_opaque;
213     frame->pkt_pts          = avctx->internal->pkt->pts;
214     av_frame_set_pkt_pos     (frame, avctx->internal->pkt->pos);
215     av_frame_set_pkt_duration(frame, avctx->internal->pkt->duration);
216
217     if (context->tff >= 0) {
218         frame->interlaced_frame = 1;
219         frame->top_field_first  = context->tff;
220     }
221
222     if ((res = av_image_check_size(avctx->width, avctx->height, 0, avctx)) < 0)
223         return res;
224
225     if (need_copy)
226         frame->buf[0] = av_buffer_alloc(FFMAX(context->frame_size, buf_size));
227     else
228         frame->buf[0] = av_buffer_ref(avpkt->buf);
229     if (!frame->buf[0])
230         return AVERROR(ENOMEM);
231
232     //2bpp and 4bpp raw in avi and mov (yes this is ugly ...)
233     if (context->is_2_4_bpp) {
234         int i;
235         uint8_t *dst = frame->buf[0]->data;
236         buf_size = context->frame_size - AVPALETTE_SIZE;
237         if (avctx->bits_per_coded_sample == 4) {
238             for (i = 0; 2 * i + 1 < buf_size && i<avpkt->size; i++) {
239                 dst[2 * i + 0] = buf[i] >> 4;
240                 dst[2 * i + 1] = buf[i] & 15;
241             }
242             linesize_align = 8;
243         } else {
244             av_assert0(avctx->bits_per_coded_sample == 2);
245             for (i = 0; 4 * i + 3 < buf_size && i<avpkt->size; i++) {
246                 dst[4 * i + 0] = buf[i] >> 6;
247                 dst[4 * i + 1] = buf[i] >> 4 & 3;
248                 dst[4 * i + 2] = buf[i] >> 2 & 3;
249                 dst[4 * i + 3] = buf[i]      & 3;
250             }
251             linesize_align = 16;
252         }
253         buf = dst;
254     } else if (context->is_lt_16bpp) {
255         uint8_t *dst = frame->buf[0]->data;
256         int packed = (avctx->codec_tag & 0xFFFFFF) == MKTAG('B','I','T', 0);
257         int swap   =  avctx->codec_tag >> 24;
258
259         if (packed && swap) {
260             av_fast_padded_malloc(&context->bitstream_buf, &context->bitstream_buf_size, buf_size);
261             if (!context->bitstream_buf)
262                 return AVERROR(ENOMEM);
263             if (swap == 16)
264                 context->dsp.bswap16_buf(context->bitstream_buf, (const uint16_t*)buf, buf_size / 2);
265             else if (swap == 32)
266                 context->dsp.bswap_buf(context->bitstream_buf, (const uint32_t*)buf, buf_size / 4);
267             else
268                 return AVERROR_INVALIDDATA;
269             buf = context->bitstream_buf;
270         }
271
272         if (desc->flags & AV_PIX_FMT_FLAG_BE)
273             scale16be(avctx, dst, buf, buf_size, packed);
274         else
275             scale16le(avctx, dst, buf, buf_size, packed);
276
277         buf = dst;
278     } else if (need_copy) {
279         memcpy(frame->buf[0]->data, buf, buf_size);
280         buf = frame->buf[0]->data;
281     }
282
283     if (avctx->codec_tag == MKTAG('A', 'V', '1', 'x') ||
284         avctx->codec_tag == MKTAG('A', 'V', 'u', 'p'))
285         buf += buf_size - context->frame_size;
286
287     len = context->frame_size - (avctx->pix_fmt==AV_PIX_FMT_PAL8 ? AVPALETTE_SIZE : 0);
288     if (buf_size < len && (avctx->codec_tag & 0xFFFFFF) != MKTAG('B','I','T', 0)) {
289         av_log(avctx, AV_LOG_ERROR, "Invalid buffer size, packet size %d < expected frame_size %d\n", buf_size, len);
290         av_buffer_unref(&frame->buf[0]);
291         return AVERROR(EINVAL);
292     }
293
294     if ((res = avpicture_fill(picture, buf, avctx->pix_fmt,
295                               avctx->width, avctx->height)) < 0) {
296         av_buffer_unref(&frame->buf[0]);
297         return res;
298     }
299
300     if (avctx->pix_fmt == AV_PIX_FMT_PAL8) {
301         const uint8_t *pal = av_packet_get_side_data(avpkt, AV_PKT_DATA_PALETTE,
302                                                      NULL);
303
304         if (pal) {
305             av_buffer_unref(&context->palette);
306             context->palette = av_buffer_alloc(AVPALETTE_SIZE);
307             if (!context->palette) {
308                 av_buffer_unref(&frame->buf[0]);
309                 return AVERROR(ENOMEM);
310             }
311             memcpy(context->palette->data, pal, AVPALETTE_SIZE);
312             frame->palette_has_changed = 1;
313         }
314     }
315
316     if ((avctx->pix_fmt==AV_PIX_FMT_BGR24    ||
317         avctx->pix_fmt==AV_PIX_FMT_GRAY8    ||
318         avctx->pix_fmt==AV_PIX_FMT_RGB555LE ||
319         avctx->pix_fmt==AV_PIX_FMT_RGB555BE ||
320         avctx->pix_fmt==AV_PIX_FMT_RGB565LE ||
321         avctx->pix_fmt==AV_PIX_FMT_MONOWHITE ||
322         avctx->pix_fmt==AV_PIX_FMT_PAL8) &&
323         FFALIGN(frame->linesize[0], linesize_align) * avctx->height <= buf_size)
324         frame->linesize[0] = FFALIGN(frame->linesize[0], linesize_align);
325
326     if (avctx->pix_fmt == AV_PIX_FMT_NV12 && avctx->codec_tag == MKTAG('N', 'V', '1', '2') &&
327         FFALIGN(frame->linesize[0], linesize_align) * avctx->height +
328         FFALIGN(frame->linesize[1], linesize_align) * ((avctx->height + 1) / 2) <= buf_size) {
329         int la0 = FFALIGN(frame->linesize[0], linesize_align);
330         frame->data[1] += (la0 - frame->linesize[0]) * avctx->height;
331         frame->linesize[0] = la0;
332         frame->linesize[1] = FFALIGN(frame->linesize[1], linesize_align);
333     }
334
335     if ((avctx->pix_fmt == AV_PIX_FMT_PAL8 && buf_size < context->frame_size) ||
336         (desc->flags & AV_PIX_FMT_FLAG_PSEUDOPAL)) {
337         frame->buf[1]  = av_buffer_ref(context->palette);
338         if (!frame->buf[1]) {
339             av_buffer_unref(&frame->buf[0]);
340             return AVERROR(ENOMEM);
341         }
342         frame->data[1] = frame->buf[1]->data;
343     }
344
345     if (avctx->pix_fmt == AV_PIX_FMT_BGR24 &&
346         ((frame->linesize[0] + 3) & ~3) * avctx->height <= buf_size)
347         frame->linesize[0] = (frame->linesize[0] + 3) & ~3;
348
349     if (context->flip)
350         flip(avctx, picture);
351
352     if (avctx->codec_tag == MKTAG('Y', 'V', '1', '2') ||
353         avctx->codec_tag == MKTAG('Y', 'V', '1', '6') ||
354         avctx->codec_tag == MKTAG('Y', 'V', '2', '4') ||
355         avctx->codec_tag == MKTAG('Y', 'V', 'U', '9'))
356         FFSWAP(uint8_t *, picture->data[1], picture->data[2]);
357
358     if (avctx->codec_tag == AV_RL32("I420") && (avctx->width+1)*(avctx->height+1) * 3/2 == buf_size) {
359         picture->data[1] = picture->data[1] +  (avctx->width+1)*(avctx->height+1) -avctx->width*avctx->height;
360         picture->data[2] = picture->data[2] + ((avctx->width+1)*(avctx->height+1) -avctx->width*avctx->height)*5/4;
361     }
362
363     if (avctx->codec_tag == AV_RL32("yuv2") &&
364         avctx->pix_fmt   == AV_PIX_FMT_YUYV422) {
365         int x, y;
366         uint8_t *line = picture->data[0];
367         for (y = 0; y < avctx->height; y++) {
368             for (x = 0; x < avctx->width; x++)
369                 line[2 * x + 1] ^= 0x80;
370             line += picture->linesize[0];
371         }
372     }
373     if (avctx->codec_tag == AV_RL32("YVYU") &&
374         avctx->pix_fmt   == AV_PIX_FMT_YUYV422) {
375         int x, y;
376         uint8_t *line = picture->data[0];
377         for(y = 0; y < avctx->height; y++) {
378             for(x = 0; x < avctx->width - 1; x += 2)
379                 FFSWAP(uint8_t, line[2*x + 1], line[2*x + 3]);
380             line += picture->linesize[0];
381         }
382     }
383
384     if (avctx->field_order > AV_FIELD_PROGRESSIVE) { /* we have interlaced material flagged in container */
385         frame->interlaced_frame = 1;
386         if (avctx->field_order == AV_FIELD_TT || avctx->field_order == AV_FIELD_TB)
387             frame->top_field_first = 1;
388     }
389
390     *got_frame = 1;
391     return buf_size;
392 }
393
394 static av_cold int raw_close_decoder(AVCodecContext *avctx)
395 {
396     RawVideoContext *context = avctx->priv_data;
397
398     av_buffer_unref(&context->palette);
399     return 0;
400 }
401
402 AVCodec ff_rawvideo_decoder = {
403     .name           = "rawvideo",
404     .long_name      = NULL_IF_CONFIG_SMALL("raw video"),
405     .type           = AVMEDIA_TYPE_VIDEO,
406     .id             = AV_CODEC_ID_RAWVIDEO,
407     .priv_data_size = sizeof(RawVideoContext),
408     .init           = raw_init_decoder,
409     .close          = raw_close_decoder,
410     .decode         = raw_decode,
411     .priv_class     = &rawdec_class,
412 };