]> rtime.felk.cvut.cz Git - frescor/ffmpeg.git/blob - libavcodec/raw.c
16bit in avi is RGB555
[frescor/ffmpeg.git] / libavcodec / raw.c
1 /*
2  * Raw Video Codec
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 raw.c
24  * Raw Video Codec
25  */
26
27 #include "avcodec.h"
28
29 typedef struct RawVideoContext {
30     unsigned char * buffer;  /* block of memory for holding one frame */
31     int             length;  /* number of bytes in buffer */
32     AVFrame pic;             ///< AVCodecContext.coded_frame
33 } RawVideoContext;
34
35 typedef struct PixelFormatTag {
36     int pix_fmt;
37     unsigned int fourcc;
38 } PixelFormatTag;
39
40 const PixelFormatTag pixelFormatTags[] = {
41     { PIX_FMT_YUV420P, MKTAG('I', '4', '2', '0') }, /* Planar formats */
42     { PIX_FMT_YUV420P, MKTAG('I', 'Y', 'U', 'V') },
43     { PIX_FMT_YUV420P, MKTAG('Y', 'V', '1', '2') },
44     { PIX_FMT_YUV410P, MKTAG('Y', 'U', 'V', '9') },
45     { PIX_FMT_YUV411P, MKTAG('Y', '4', '1', 'B') },
46     { PIX_FMT_YUV422P, MKTAG('Y', '4', '2', 'B') },
47     { PIX_FMT_GRAY8,   MKTAG('Y', '8', '0', '0') },
48     { PIX_FMT_GRAY8,   MKTAG(' ', ' ', 'Y', '8') },
49
50
51     { PIX_FMT_YUV422,  MKTAG('Y', 'U', 'Y', '2') }, /* Packed formats */
52     { PIX_FMT_YUV422,  MKTAG('Y', '4', '2', '2') },
53     { PIX_FMT_UYVY422, MKTAG('U', 'Y', 'V', 'Y') },
54     { PIX_FMT_GRAY8,   MKTAG('G', 'R', 'E', 'Y') },
55     { PIX_FMT_RGB555,  MKTAG('R', 'G', 'B', 15) },
56     { PIX_FMT_BGR555,  MKTAG('B', 'G', 'R', 15) },
57     { PIX_FMT_RGB565,  MKTAG('R', 'G', 'B', 16) },
58     { PIX_FMT_BGR565,  MKTAG('B', 'G', 'R', 16) },
59
60     /* quicktime */
61     { PIX_FMT_UYVY422, MKTAG('2', 'v', 'u', 'y') },
62
63     { -1, 0 },
64 };
65
66 static int findPixelFormat(unsigned int fourcc)
67 {
68     const PixelFormatTag * tags = pixelFormatTags;
69     while (tags->pix_fmt >= 0) {
70         if (tags->fourcc == fourcc)
71             return tags->pix_fmt;
72         tags++;
73     }
74     return PIX_FMT_YUV420P;
75 }
76
77 unsigned int avcodec_pix_fmt_to_codec_tag(enum PixelFormat fmt)
78 {
79     const PixelFormatTag * tags = pixelFormatTags;
80     while (tags->pix_fmt >= 0) {
81         if (tags->pix_fmt == fmt)
82             return tags->fourcc;
83         tags++;
84     }
85     return 0;
86 }
87
88 /* RAW Decoder Implementation */
89
90 static int raw_init_decoder(AVCodecContext *avctx)
91 {
92     RawVideoContext *context = avctx->priv_data;
93
94     if (avctx->codec_tag)
95         avctx->pix_fmt = findPixelFormat(avctx->codec_tag);
96     else if (avctx->bits_per_sample){
97         switch(avctx->bits_per_sample){
98         case  8: avctx->pix_fmt= PIX_FMT_PAL8  ; break;
99         case 15: avctx->pix_fmt= PIX_FMT_RGB555; break;
100         case 16: avctx->pix_fmt= PIX_FMT_RGB555; break;
101         case 24: avctx->pix_fmt= PIX_FMT_BGR24 ; break;
102         case 32: avctx->pix_fmt= PIX_FMT_RGBA32; break;
103         }
104     }
105
106     context->length = avpicture_get_size(avctx->pix_fmt, avctx->width, avctx->height);
107     context->buffer = av_malloc(context->length);
108     context->pic.pict_type = FF_I_TYPE;
109     context->pic.key_frame = 1;
110
111     avctx->coded_frame= &context->pic;
112
113     if (!context->buffer)
114         return -1;
115
116     return 0;
117 }
118
119 static void flip(AVCodecContext *avctx, AVPicture * picture){
120     if(!avctx->codec_tag && avctx->bits_per_sample && picture->linesize[2]==0){
121         picture->data[0] += picture->linesize[0] * (avctx->height-1);
122         picture->linesize[0] *= -1;
123     }
124 }
125
126 static int raw_decode(AVCodecContext *avctx,
127                             void *data, int *data_size,
128                             uint8_t *buf, int buf_size)
129 {
130     RawVideoContext *context = avctx->priv_data;
131
132     AVFrame * frame = (AVFrame *) data;
133     AVPicture * picture = (AVPicture *) data;
134
135     frame->interlaced_frame = avctx->coded_frame->interlaced_frame;
136     frame->top_field_first = avctx->coded_frame->top_field_first;
137
138     if(buf_size < context->length - (avctx->pix_fmt==PIX_FMT_PAL8 ? 256*4 : 0))
139         return -1;
140
141     avpicture_fill(picture, buf, avctx->pix_fmt, avctx->width, avctx->height);
142     if(avctx->pix_fmt==PIX_FMT_PAL8 && buf_size < context->length){
143         frame->data[1]= context->buffer;
144     }
145     if (avctx->palctrl && avctx->palctrl->palette_changed) {
146         memcpy(frame->data[1], avctx->palctrl->palette, AVPALETTE_SIZE);
147         avctx->palctrl->palette_changed = 0;
148     }
149
150     flip(avctx, picture);
151
152     if (avctx->codec_tag == MKTAG('Y', 'V', '1', '2'))
153     {
154         // swap fields
155         unsigned char *tmp = picture->data[1];
156         picture->data[1] = picture->data[2];
157         picture->data[2] = tmp;
158     }
159
160     *data_size = sizeof(AVPicture);
161     return buf_size;
162 }
163
164 static int raw_close_decoder(AVCodecContext *avctx)
165 {
166     RawVideoContext *context = avctx->priv_data;
167
168     av_freep(&context->buffer);
169     return 0;
170 }
171
172 /* RAW Encoder Implementation */
173 #ifdef CONFIG_RAWVIDEO_ENCODER
174 static int raw_init_encoder(AVCodecContext *avctx)
175 {
176     avctx->coded_frame = (AVFrame *)avctx->priv_data;
177     avctx->coded_frame->pict_type = FF_I_TYPE;
178     avctx->coded_frame->key_frame = 1;
179     if(!avctx->codec_tag)
180         avctx->codec_tag = avcodec_pix_fmt_to_codec_tag(avctx->pix_fmt);
181     return 0;
182 }
183
184 static int raw_encode(AVCodecContext *avctx,
185                             unsigned char *frame, int buf_size, void *data)
186 {
187     return avpicture_layout((AVPicture *)data, avctx->pix_fmt, avctx->width,
188                                                avctx->height, frame, buf_size);
189 }
190
191 AVCodec rawvideo_encoder = {
192     "rawvideo",
193     CODEC_TYPE_VIDEO,
194     CODEC_ID_RAWVIDEO,
195     sizeof(AVFrame),
196     raw_init_encoder,
197     raw_encode,
198 };
199 #endif // CONFIG_RAWVIDEO_ENCODER
200
201 AVCodec rawvideo_decoder = {
202     "rawvideo",
203     CODEC_TYPE_VIDEO,
204     CODEC_ID_RAWVIDEO,
205     sizeof(RawVideoContext),
206     raw_init_decoder,
207     NULL,
208     raw_close_decoder,
209     raw_decode,
210 };