]> git.sesse.net Git - ffmpeg/blob - libavcodec/rawdec.c
support raw 4bpp avi
[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 rawdec.c
24  * Raw Video Decoder
25  */
26
27 #include "avcodec.h"
28 #include "raw.h"
29
30 typedef struct RawVideoContext {
31     unsigned char * buffer;  /* block of memory for holding one frame */
32     int             length;  /* number of bytes in buffer */
33     AVFrame pic;             ///< AVCodecContext.coded_frame
34 } RawVideoContext;
35
36 static const PixelFormatTag pixelFormatBpsAVI[] = {
37     { PIX_FMT_PAL8,    4 },
38     { PIX_FMT_PAL8,    8 },
39     { PIX_FMT_RGB555, 15 },
40     { PIX_FMT_RGB555, 16 },
41     { PIX_FMT_BGR24,  24 },
42     { PIX_FMT_RGB32,  32 },
43     { -1, 0 },
44 };
45
46 static const PixelFormatTag pixelFormatBpsMOV[] = {
47     /* FIXME fix swscaler to support those */
48     /* http://developer.apple.com/documentation/QuickTime/QTFF/QTFFChap3/chapter_4_section_2.html */
49     { PIX_FMT_PAL8,      8 },
50     { PIX_FMT_BGR555,   16 },
51     { PIX_FMT_RGB24,    24 },
52     { PIX_FMT_BGR32_1,  32 },
53     { -1, 0 },
54 };
55
56 static int findPixelFormat(const PixelFormatTag *tags, unsigned int fourcc)
57 {
58     while (tags->pix_fmt >= 0) {
59         if (tags->fourcc == fourcc)
60             return tags->pix_fmt;
61         tags++;
62     }
63     return PIX_FMT_YUV420P;
64 }
65
66 static int raw_init_decoder(AVCodecContext *avctx)
67 {
68     RawVideoContext *context = avctx->priv_data;
69
70     if (avctx->codec_tag == MKTAG('r','a','w',' '))
71         avctx->pix_fmt = findPixelFormat(pixelFormatBpsMOV, avctx->bits_per_sample);
72     else if (avctx->codec_tag)
73         avctx->pix_fmt = findPixelFormat(ff_raw_pixelFormatTags, avctx->codec_tag);
74     else if (avctx->bits_per_sample)
75         avctx->pix_fmt = findPixelFormat(pixelFormatBpsAVI, avctx->bits_per_sample);
76
77     context->length = avpicture_get_size(avctx->pix_fmt, avctx->width, avctx->height);
78     context->buffer = av_malloc(context->length);
79     context->pic.pict_type = FF_I_TYPE;
80     context->pic.key_frame = 1;
81
82     avctx->coded_frame= &context->pic;
83
84     if (!context->buffer)
85         return -1;
86
87     return 0;
88 }
89
90 static void flip(AVCodecContext *avctx, AVPicture * picture){
91     if(!avctx->codec_tag && avctx->bits_per_sample && picture->linesize[2]==0){
92         picture->data[0] += picture->linesize[0] * (avctx->height-1);
93         picture->linesize[0] *= -1;
94     }
95 }
96
97 static int raw_decode(AVCodecContext *avctx,
98                             void *data, int *data_size,
99                             uint8_t *buf, int buf_size)
100 {
101     RawVideoContext *context = avctx->priv_data;
102
103     AVFrame * frame = (AVFrame *) data;
104     AVPicture * picture = (AVPicture *) data;
105
106     frame->interlaced_frame = avctx->coded_frame->interlaced_frame;
107     frame->top_field_first = avctx->coded_frame->top_field_first;
108
109     //4bpp raw in avi (yes this is ugly ...)
110     if(avctx->bits_per_sample == 4 && avctx->pix_fmt==PIX_FMT_PAL8 && !avctx->codec_tag){
111         int i;
112         for(i=256*2; i+1 < context->length>>1; i++){
113             context->buffer[2*i+0]= buf[i-256*2]>>4;
114             context->buffer[2*i+1]= buf[i-256*2]&15;
115         }
116         buf= context->buffer + 256*4;
117         buf_size= context->length - 256*4;
118     }
119
120     if(buf_size < context->length - (avctx->pix_fmt==PIX_FMT_PAL8 ? 256*4 : 0))
121         return -1;
122
123     avpicture_fill(picture, buf, avctx->pix_fmt, avctx->width, avctx->height);
124     if(avctx->pix_fmt==PIX_FMT_PAL8 && buf_size < context->length){
125         frame->data[1]= context->buffer;
126     }
127     if (avctx->palctrl && avctx->palctrl->palette_changed) {
128         memcpy(frame->data[1], avctx->palctrl->palette, AVPALETTE_SIZE);
129         avctx->palctrl->palette_changed = 0;
130     }
131
132     flip(avctx, picture);
133
134     if (avctx->codec_tag == MKTAG('Y', 'V', '1', '2'))
135     {
136         // swap fields
137         unsigned char *tmp = picture->data[1];
138         picture->data[1] = picture->data[2];
139         picture->data[2] = tmp;
140     }
141
142     *data_size = sizeof(AVPicture);
143     return buf_size;
144 }
145
146 static int raw_close_decoder(AVCodecContext *avctx)
147 {
148     RawVideoContext *context = avctx->priv_data;
149
150     av_freep(&context->buffer);
151     return 0;
152 }
153
154 AVCodec rawvideo_decoder = {
155     "rawvideo",
156     CODEC_TYPE_VIDEO,
157     CODEC_ID_RAWVIDEO,
158     sizeof(RawVideoContext),
159     raw_init_decoder,
160     NULL,
161     raw_close_decoder,
162     raw_decode,
163 };