]> git.sesse.net Git - ffmpeg/blob - libavcodec/raw.c
tta decoder, tested with 44khz mono and stereo (for the latter use ffplay or change...
[ffmpeg] / libavcodec / raw.c
1 /*
2  * Raw Video Codec
3  * Copyright (c) 2001 Fabrice Bellard.
4  *
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.
9  *
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.
14  *
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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
18  */
19
20 /**
21  * @file raw.c
22  * Raw Video Codec
23  */
24
25 #include "avcodec.h"
26
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
32 } RawVideoContext;
33
34 typedef struct PixelFormatTag {
35     int pix_fmt;
36     unsigned int fourcc;
37 } PixelFormatTag;
38
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') },
47
48
49     { PIX_FMT_YUV422,  MKTAG('Y', 'U', 'Y', '2') }, /* Packed formats */
50     { PIX_FMT_YUV422,  MKTAG('Y', '4', '2', '2') },
51     { PIX_FMT_UYVY422, MKTAG('U', 'Y', 'V', 'Y') },
52     { PIX_FMT_GRAY8,   MKTAG('G', 'R', 'E', 'Y') },
53
54     { -1, 0 },
55 };
56
57 static int findPixelFormat(unsigned int fourcc)
58 {
59     const PixelFormatTag * tags = pixelFormatTags;
60     while (tags->pix_fmt >= 0) {
61         if (tags->fourcc == fourcc)
62             return tags->pix_fmt;
63         tags++;
64     }
65     return PIX_FMT_YUV420P;
66 }
67
68 unsigned int avcodec_pix_fmt_to_codec_tag(enum PixelFormat fmt)
69 {
70     const PixelFormatTag * tags = pixelFormatTags;
71     while (tags->pix_fmt >= 0) {
72         if (tags->pix_fmt == fmt)
73             return tags->fourcc;
74         tags++;
75     }
76     return 0;
77 }
78
79 /* RAW Decoder Implementation */
80
81 static int raw_init_decoder(AVCodecContext *avctx)
82 {
83     RawVideoContext *context = avctx->priv_data;
84
85     if (avctx->codec_tag)
86         avctx->pix_fmt = findPixelFormat(avctx->codec_tag);
87     else if (avctx->bits_per_sample){
88         switch(avctx->bits_per_sample){
89         case 15: avctx->pix_fmt= PIX_FMT_RGB555; break;
90         case 16: avctx->pix_fmt= PIX_FMT_RGB565; break;
91         case 24: avctx->pix_fmt= PIX_FMT_BGR24 ; break;
92         case 32: avctx->pix_fmt= PIX_FMT_RGBA32; break;
93         }
94     }
95
96     context->length = avpicture_get_size(avctx->pix_fmt, avctx->width, avctx->height);
97     context->buffer = av_malloc(context->length);
98     context->p      = context->buffer;
99     context->pic.pict_type = FF_I_TYPE;
100     context->pic.key_frame = 1;
101
102     avctx->coded_frame= &context->pic;
103
104     if (!context->buffer)
105         return -1;
106
107     return 0;
108 }
109
110 static void flip(AVCodecContext *avctx, AVPicture * picture){
111     if(!avctx->codec_tag && avctx->bits_per_sample && picture->linesize[1]==0){
112         picture->data[0] += picture->linesize[0] * (avctx->height-1);
113         picture->linesize[0] *= -1;
114     }
115 }
116
117 static int raw_decode(AVCodecContext *avctx,
118                             void *data, int *data_size,
119                             uint8_t *buf, int buf_size)
120 {
121     RawVideoContext *context = avctx->priv_data;
122     int bytesNeeded;
123
124     AVFrame * frame = (AVFrame *) data;
125     AVPicture * picture = (AVPicture *) data;
126
127     frame->interlaced_frame = avctx->coded_frame->interlaced_frame;
128     frame->top_field_first = avctx->coded_frame->top_field_first;
129
130     /* Early out without copy if packet size == frame size */
131     if (buf_size == context->length  &&  context->p == context->buffer) {
132         avpicture_fill(picture, buf, avctx->pix_fmt, avctx->width, avctx->height);
133         flip(avctx, picture);
134         *data_size = sizeof(AVPicture);
135         return buf_size;
136     }
137
138     bytesNeeded = context->length - (context->p - context->buffer);
139     if (buf_size < bytesNeeded) {
140         memcpy(context->p, buf, buf_size);
141         context->p += buf_size;
142         return buf_size;
143     }
144
145     memcpy(context->p, buf, bytesNeeded);
146     context->p = context->buffer;
147     avpicture_fill(picture, context->buffer, avctx->pix_fmt, avctx->width, avctx->height);
148     flip(avctx, picture);
149     *data_size = sizeof(AVPicture);
150     return bytesNeeded;
151 }
152
153 static int raw_close_decoder(AVCodecContext *avctx)
154 {
155     RawVideoContext *context = avctx->priv_data;
156
157     av_freep(&context->buffer);
158     return 0;
159 }
160
161 /* RAW Encoder Implementation */
162
163 static int raw_init_encoder(AVCodecContext *avctx)
164 {
165     avctx->coded_frame = (AVFrame *)avctx->priv_data;
166     avctx->coded_frame->pict_type = FF_I_TYPE;
167     avctx->coded_frame->key_frame = 1;
168     if(!avctx->codec_tag)
169         avctx->codec_tag = avcodec_pix_fmt_to_codec_tag(avctx->pix_fmt);
170     return 0;
171 }
172
173 static int raw_encode(AVCodecContext *avctx,
174                             unsigned char *frame, int buf_size, void *data)
175 {
176     return avpicture_layout((AVPicture *)data, avctx->pix_fmt, avctx->width,
177                                                avctx->height, frame, buf_size);
178 }
179
180 #ifdef CONFIG_RAWVIDEO_ENCODER
181 AVCodec rawvideo_encoder = {
182     "rawvideo",
183     CODEC_TYPE_VIDEO,
184     CODEC_ID_RAWVIDEO,
185     sizeof(AVFrame),
186     raw_init_encoder,
187     raw_encode,
188 };
189 #endif // CONFIG_RAWVIDEO_ENCODER
190
191 AVCodec rawvideo_decoder = {
192     "rawvideo",
193     CODEC_TYPE_VIDEO,
194     CODEC_ID_RAWVIDEO,
195     sizeof(RawVideoContext),
196     raw_init_decoder,
197     NULL,
198     raw_close_decoder,
199     raw_decode,
200 };