]> git.sesse.net Git - ffmpeg/blob - libavcodec/rawdec.c
Fix compilation without HAVE_AVX, HAVE_YASM etc.
[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 "imgconvert.h"
29 #include "raw.h"
30 #include "libavutil/intreadwrite.h"
31 #include "libavutil/imgutils.h"
32 #include "libavutil/opt.h"
33
34 typedef struct RawVideoContext {
35     AVClass *av_class;
36     uint32_t palette[AVPALETTE_COUNT];
37     unsigned char * buffer;  /* block of memory for holding one frame */
38     int             length;  /* number of bytes in buffer */
39     int flip;
40     AVFrame pic;             ///< AVCodecContext.coded_frame
41     int tff;
42 } RawVideoContext;
43
44 static const AVOption options[]={
45 {"top", "top field first", offsetof(RawVideoContext, tff), AV_OPT_TYPE_INT, {.dbl = -1}, -1, 1, AV_OPT_FLAG_DECODING_PARAM|AV_OPT_FLAG_VIDEO_PARAM},
46 {NULL}
47 };
48 static const AVClass class = { "rawdec", NULL, options, LIBAVUTIL_VERSION_INT };
49
50 static const PixelFormatTag pix_fmt_bps_avi[] = {
51     { PIX_FMT_MONOWHITE, 1 },
52     { PIX_FMT_PAL8,    2 },
53     { PIX_FMT_PAL8,    4 },
54     { PIX_FMT_PAL8,    8 },
55     { PIX_FMT_RGB444, 12 },
56     { PIX_FMT_RGB555, 15 },
57     { PIX_FMT_RGB555, 16 },
58     { PIX_FMT_BGR24,  24 },
59     { PIX_FMT_BGRA,   32 },
60     { PIX_FMT_NONE, 0 },
61 };
62
63 static const PixelFormatTag pix_fmt_bps_mov[] = {
64     { PIX_FMT_MONOWHITE, 1 },
65     { PIX_FMT_PAL8,      2 },
66     { PIX_FMT_PAL8,      4 },
67     { PIX_FMT_PAL8,      8 },
68     // FIXME swscale does not support 16 bit in .mov, sample 16bit.mov
69     // http://developer.apple.com/documentation/QuickTime/QTFF/QTFFChap3/qtff3.html
70     { PIX_FMT_RGB555BE, 16 },
71     { PIX_FMT_RGB24,    24 },
72     { PIX_FMT_ARGB,     32 },
73     { PIX_FMT_MONOWHITE,33 },
74     { PIX_FMT_NONE, 0 },
75 };
76
77 enum PixelFormat ff_find_pix_fmt(const PixelFormatTag *tags, unsigned int fourcc)
78 {
79     while (tags->pix_fmt >= 0) {
80         if (tags->fourcc == fourcc)
81             return tags->pix_fmt;
82         tags++;
83     }
84     return PIX_FMT_YUV420P;
85 }
86
87 static av_cold int raw_init_decoder(AVCodecContext *avctx)
88 {
89     RawVideoContext *context = avctx->priv_data;
90
91     if (avctx->codec_tag == MKTAG('r','a','w',' '))
92         avctx->pix_fmt = ff_find_pix_fmt(pix_fmt_bps_mov, avctx->bits_per_coded_sample);
93     else if (avctx->codec_tag == MKTAG('W','R','A','W'))
94         avctx->pix_fmt = ff_find_pix_fmt(pix_fmt_bps_avi, avctx->bits_per_coded_sample);
95     else if (avctx->codec_tag)
96         avctx->pix_fmt = ff_find_pix_fmt(ff_raw_pix_fmt_tags, avctx->codec_tag);
97     else if (avctx->pix_fmt == PIX_FMT_NONE && avctx->bits_per_coded_sample)
98         avctx->pix_fmt = ff_find_pix_fmt(pix_fmt_bps_avi, avctx->bits_per_coded_sample);
99
100     if (avctx->pix_fmt == PIX_FMT_NONE) {
101         av_log(avctx, AV_LOG_ERROR, "Pixel format was not specified and cannot be detected\n");
102         return AVERROR(EINVAL);
103     }
104
105     ff_set_systematic_pal2(context->palette, avctx->pix_fmt);
106     if((avctx->bits_per_coded_sample == 4 || avctx->bits_per_coded_sample == 2) &&
107        avctx->pix_fmt==PIX_FMT_PAL8 &&
108        (!avctx->codec_tag || avctx->codec_tag == MKTAG('r','a','w',' '))){
109         context->length = avpicture_get_size(avctx->pix_fmt, FFALIGN(avctx->width, 16), avctx->height);
110         context->buffer = av_malloc(context->length);
111         if (!context->buffer)
112             return -1;
113     } else {
114         context->length = avpicture_get_size(avctx->pix_fmt, avctx->width, avctx->height);
115     }
116     context->pic.pict_type = AV_PICTURE_TYPE_I;
117     context->pic.key_frame = 1;
118
119     avctx->coded_frame= &context->pic;
120
121     if((avctx->extradata_size >= 9 && !memcmp(avctx->extradata + avctx->extradata_size - 9, "BottomUp", 9)) ||
122         avctx->codec_tag == MKTAG('c','y','u','v') ||
123         avctx->codec_tag == MKTAG(3, 0, 0, 0) || avctx->codec_tag == MKTAG('W','R','A','W'))
124         context->flip=1;
125
126     return 0;
127 }
128
129 static void flip(AVCodecContext *avctx, AVPicture * picture){
130     picture->data[0] += picture->linesize[0] * (avctx->height-1);
131     picture->linesize[0] *= -1;
132 }
133
134 static int raw_decode(AVCodecContext *avctx,
135                             void *data, int *data_size,
136                             AVPacket *avpkt)
137 {
138     const uint8_t *buf = avpkt->data;
139     int buf_size = avpkt->size;
140     int linesize_align = 4;
141     RawVideoContext *context = avctx->priv_data;
142
143     AVFrame * frame = (AVFrame *) data;
144     AVPicture * picture = (AVPicture *) data;
145
146     frame->pict_type        = avctx->coded_frame->pict_type;
147     frame->interlaced_frame = avctx->coded_frame->interlaced_frame;
148     frame->top_field_first = avctx->coded_frame->top_field_first;
149     frame->reordered_opaque = avctx->reordered_opaque;
150     frame->pkt_pts          = avctx->pkt->pts;
151     frame->pkt_pos          = avctx->pkt->pos;
152
153     if(context->tff>=0){
154         frame->interlaced_frame = 1;
155         frame->top_field_first  = context->tff;
156     }
157
158     //2bpp and 4bpp raw in avi and mov (yes this is ugly ...)
159     if (context->buffer) {
160         int i;
161         uint8_t *dst = context->buffer;
162         buf_size = context->length - 256*4;
163         if (avctx->bits_per_coded_sample == 4){
164             for(i=0; 2*i+1 < buf_size; i++){
165                 dst[2*i+0]= buf[i]>>4;
166                 dst[2*i+1]= buf[i]&15;
167             }
168             linesize_align = 8;
169         } else {
170             for(i=0; 4*i+3 < buf_size; i++){
171                 dst[4*i+0]= buf[i]>>6;
172                 dst[4*i+1]= buf[i]>>4&3;
173                 dst[4*i+2]= buf[i]>>2&3;
174                 dst[4*i+3]= buf[i]   &3;
175             }
176             linesize_align = 16;
177         }
178         buf= dst;
179     }
180
181     if(avctx->codec_tag == MKTAG('A', 'V', '1', 'x') ||
182        avctx->codec_tag == MKTAG('A', 'V', 'u', 'p'))
183         buf += buf_size - context->length;
184
185     if(buf_size < context->length - (avctx->pix_fmt==PIX_FMT_PAL8 ? 256*4 : 0))
186         return -1;
187
188     avpicture_fill(picture, buf, avctx->pix_fmt, avctx->width, avctx->height);
189     if((avctx->pix_fmt==PIX_FMT_PAL8 && buf_size < context->length) ||
190        (avctx->pix_fmt!=PIX_FMT_PAL8 &&
191         (av_pix_fmt_descriptors[avctx->pix_fmt].flags & PIX_FMT_PAL))){
192         frame->data[1]= context->palette;
193     }
194     if (avctx->pix_fmt == PIX_FMT_PAL8) {
195         const uint8_t *pal = av_packet_get_side_data(avpkt, AV_PKT_DATA_PALETTE, NULL);
196
197         if (pal) {
198             memcpy(frame->data[1], pal, AVPALETTE_SIZE);
199             frame->palette_has_changed = 1;
200         }
201     }
202     if((avctx->pix_fmt==PIX_FMT_BGR24    ||
203         avctx->pix_fmt==PIX_FMT_GRAY8    ||
204         avctx->pix_fmt==PIX_FMT_RGB555LE ||
205         avctx->pix_fmt==PIX_FMT_RGB555BE ||
206         avctx->pix_fmt==PIX_FMT_RGB565LE ||
207         avctx->pix_fmt==PIX_FMT_MONOWHITE ||
208         avctx->pix_fmt==PIX_FMT_PAL8) &&
209         FFALIGN(frame->linesize[0], linesize_align)*avctx->height <= buf_size)
210         frame->linesize[0] = FFALIGN(frame->linesize[0], linesize_align);
211
212     if(context->flip)
213         flip(avctx, picture);
214
215     if (   avctx->codec_tag == MKTAG('Y', 'V', '1', '2')
216         || avctx->codec_tag == MKTAG('Y', 'V', '1', '6')
217         || avctx->codec_tag == MKTAG('Y', 'V', '2', '4')
218         || avctx->codec_tag == MKTAG('Y', 'V', 'U', '9'))
219         FFSWAP(uint8_t *, picture->data[1], picture->data[2]);
220
221     if(avctx->codec_tag == AV_RL32("yuv2") &&
222        avctx->pix_fmt   == PIX_FMT_YUYV422) {
223         int x, y;
224         uint8_t *line = picture->data[0];
225         for(y = 0; y < avctx->height; y++) {
226             for(x = 0; x < avctx->width; x++)
227                 line[2*x + 1] ^= 0x80;
228             line += picture->linesize[0];
229         }
230     }
231
232     *data_size = sizeof(AVPicture);
233     return buf_size;
234 }
235
236 static av_cold int raw_close_decoder(AVCodecContext *avctx)
237 {
238     RawVideoContext *context = avctx->priv_data;
239
240     av_freep(&context->buffer);
241     return 0;
242 }
243
244 AVCodec ff_rawvideo_decoder = {
245     .name           = "rawvideo",
246     .type           = AVMEDIA_TYPE_VIDEO,
247     .id             = CODEC_ID_RAWVIDEO,
248     .priv_data_size = sizeof(RawVideoContext),
249     .init           = raw_init_decoder,
250     .close          = raw_close_decoder,
251     .decode         = raw_decode,
252     .long_name = NULL_IF_CONFIG_SMALL("raw video"),
253     .priv_class= &class,
254 };