3 * Copyright (c) 2001 Fabrice Bellard.
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
27 typedef struct RawVideoContext
{
28 unsigned char * buffer
; /* block of memory for holding one frame */
29 unsigned char * p
; /* current position in buffer */
30 int length
; /* number of bytes in buffer */
31 AVFrame pic
; ///< AVCodecContext.coded_frame
34 typedef struct PixleFormatTag
{
39 const PixelFormatTag pixelFormatTags
[] = {
40 { PIX_FMT_YUV420P
, MKTAG('I', '4', '2', '0') }, /* Planar formats */
41 { PIX_FMT_YUV420P
, MKTAG('I', 'Y', 'U', 'V') },
42 { PIX_FMT_YUV410P
, MKTAG('Y', 'U', 'V', '9') },
43 { PIX_FMT_YUV411P
, MKTAG('Y', '4', '1', 'B') },
44 { PIX_FMT_YUV422P
, MKTAG('Y', '4', '2', 'B') },
45 { PIX_FMT_GRAY8
, MKTAG('Y', '8', '0', '0') },
46 { PIX_FMT_GRAY8
, MKTAG(' ', ' ', 'Y', '8') },
49 { PIX_FMT_YUV422
, MKTAG('Y', '4', '2', '2') }, /* Packed formats */
50 { PIX_FMT_UYVY422
, MKTAG('U', 'Y', 'V', 'Y') },
51 { PIX_FMT_GRAY8
, MKTAG('G', 'R', 'E', 'Y') },
56 static int findPixelFormat(unsigned int fourcc
)
58 const PixelFormatTag
* tags
= pixelFormatTags
;
59 while (tags
->pix_fmt
>= 0) {
60 if (tags
->fourcc
== fourcc
)
64 return PIX_FMT_YUV420P
;
67 unsigned int avcodec_pix_fmt_to_codec_tag(enum PixelFormat fmt
)
69 const PixelFormatTag
* tags
= pixelFormatTags
;
70 while (tags
->pix_fmt
>= 0) {
71 if (tags
->pix_fmt
== fmt
)
78 /* RAW Decoder Implementation */
80 static int raw_init_decoder(AVCodecContext
*avctx
)
82 RawVideoContext
*context
= avctx
->priv_data
;
85 avctx
->pix_fmt
= findPixelFormat(avctx
->codec_tag
);
86 else if (avctx
->bits_per_sample
){
87 switch(avctx
->bits_per_sample
){
88 case 15: avctx
->pix_fmt
= PIX_FMT_RGB555
; break;
89 case 16: avctx
->pix_fmt
= PIX_FMT_RGB565
; break;
90 case 24: avctx
->pix_fmt
= PIX_FMT_BGR24
; break;
91 case 32: avctx
->pix_fmt
= PIX_FMT_RGBA32
; break;
95 context
->length
= avpicture_get_size(avctx
->pix_fmt
, avctx
->width
, avctx
->height
);
96 context
->buffer
= av_malloc(context
->length
);
97 context
->p
= context
->buffer
;
98 context
->pic
.pict_type
= FF_I_TYPE
;
99 context
->pic
.key_frame
= 1;
101 avctx
->coded_frame
= &context
->pic
;
103 if (!context
->buffer
)
109 static void flip(AVCodecContext
*avctx
, AVPicture
* picture
){
110 if(!avctx
->codec_tag
&& avctx
->bits_per_sample
&& picture
->linesize
[1]==0){
111 picture
->data
[0] += picture
->linesize
[0] * (avctx
->height
-1);
112 picture
->linesize
[0] *= -1;
116 static int raw_decode(AVCodecContext
*avctx
,
117 void *data
, int *data_size
,
118 uint8_t *buf
, int buf_size
)
120 RawVideoContext
*context
= avctx
->priv_data
;
123 AVPicture
* picture
= (AVPicture
*) data
;
125 /* Early out without copy if packet size == frame size */
126 if (buf_size
== context
->length
&& context
->p
== context
->buffer
) {
127 avpicture_fill(picture
, buf
, avctx
->pix_fmt
, avctx
->width
, avctx
->height
);
128 flip(avctx
, picture
);
129 *data_size
= sizeof(AVPicture
);
133 bytesNeeded
= context
->length
- (context
->p
- context
->buffer
);
134 if (buf_size
< bytesNeeded
) {
135 memcpy(context
->p
, buf
, buf_size
);
136 context
->p
+= buf_size
;
140 memcpy(context
->p
, buf
, bytesNeeded
);
141 context
->p
= context
->buffer
;
142 avpicture_fill(picture
, context
->buffer
, avctx
->pix_fmt
, avctx
->width
, avctx
->height
);
143 flip(avctx
, picture
);
144 *data_size
= sizeof(AVPicture
);
148 static int raw_close_decoder(AVCodecContext
*avctx
)
150 RawVideoContext
*context
= avctx
->priv_data
;
152 av_freep(&context
->buffer
);
156 /* RAW Encoder Implementation */
158 static int raw_init_encoder(AVCodecContext
*avctx
)
160 avctx
->coded_frame
= (AVFrame
*)avctx
->priv_data
;
161 avctx
->coded_frame
->pict_type
= FF_I_TYPE
;
162 avctx
->coded_frame
->key_frame
= 1;
163 if(!avctx
->codec_tag
)
164 avctx
->codec_tag
= avcodec_pix_fmt_to_codec_tag(avctx
->pix_fmt
);
168 static int raw_encode(AVCodecContext
*avctx
,
169 unsigned char *frame
, int buf_size
, void *data
)
171 return avpicture_layout((AVPicture
*)data
, avctx
->pix_fmt
, avctx
->width
,
172 avctx
->height
, frame
, buf_size
);
175 #ifdef CONFIG_RAWVIDEO_ENCODER
176 AVCodec rawvideo_encoder
= {
184 #endif // CONFIG_RAWVIDEO_ENCODER
186 AVCodec rawvideo_decoder
= {
190 sizeof(RawVideoContext
),